UNPKG

sanskar

Version:
19 lines (15 loc) 661 B
#!/usr/bin/env node console.clear(); console.log('\n\x1b[36m', 'Hi I am Sanskar 👋', '\x1b[0m\n'); const green = (text) => `\x1b[32m${text}\x1b[0m`; const info = { status: 'Full Stack AI Engineer', github: 'https://github.com/sanskaraggarwal2025', skills: { backend: ['Go', 'gRPC', 'SQLite', 'MongoDB', 'Docker', 'Kubernetes'], ai: ['RAG', 'Agents', 'MCP Server', 'OpenAI Assistants API', 'Embeddings'], frontend: ['React', 'TypeScript', 'Tailwind', 'Wails'], }, currently: 'Building AI-native applications with full RAG and agent workflows using Go and React.' }; console.log(green(JSON.stringify(info, null, 2)));