{"id":29031619,"url":"https://github.com/sans-byte/cursor","last_synced_at":"2026-05-08T14:46:15.382Z","repository":{"id":301215887,"uuid":"1008545331","full_name":"sans-byte/cursor","owner":"sans-byte","description":"AI powered app for vibe code simple applications","archived":false,"fork":false,"pushed_at":"2025-06-25T18:07:49.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-25T18:45:21.264Z","etag":null,"topics":["ai","bun","bunjs","javascript","openai","vibe-coding"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sans-byte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-25T17:56:29.000Z","updated_at":"2025-06-25T18:07:52.000Z","dependencies_parsed_at":"2025-06-25T18:55:31.788Z","dependency_job_id":null,"html_url":"https://github.com/sans-byte/cursor","commit_stats":null,"previous_names":["sans-byte/cursor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sans-byte/cursor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sans-byte%2Fcursor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sans-byte%2Fcursor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sans-byte%2Fcursor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sans-byte%2Fcursor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sans-byte","download_url":"https://codeload.github.com/sans-byte/cursor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sans-byte%2Fcursor/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262044446,"owners_count":23249749,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","bun","bunjs","javascript","openai","vibe-coding"],"created_at":"2025-06-26T10:04:47.445Z","updated_at":"2026-05-08T14:46:10.338Z","avatar_url":"https://github.com/sans-byte.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧠 Cursor - AI Shell Assistant\n\nCursor is a Bun-powered CLI assistant that uses [Together](https://api.together.xyz) to connect with advanced LLMs (like DeepSeek) for intelligent reasoning and command execution right from your terminal.\n\n\u003e 🔧 Built with [Bun](https://bun.sh) • 🧠 Powered by [DeepSeek](https://huggingface.co/deepseek-ai/DeepSeek-V3) via Together\n\n---\n\n## ✨ Features\n\n- Structured AI reasoning via `START → THINK → ACTION → OBSERVE → OUTPUT`\n- Executes shell commands using natural language\n- Super-fast development with [Bun](https://bun.sh) and [TypeScript](https://www.typescriptlang.org/)\n- Uses Together to access models like DeepSeek\n\n---\n\n## 🛠️ Installation \u0026 Usage\n\n### 1. Install Bun  \nIf you don’t have Bun installed, run:\n\n```bash\ncurl -fsSL https://bun.sh/install | bash\n```\n\nThen restart your terminal to apply the changes.\n\n---\n\n### 2. Clone the Repository\n\n```bash\ngit clone https://github.com/your-username/cursor.git\ncd cursor\n```\n\n---\n\n### 3. Install Dependencies\n\n```bash\nbun install\n```\n\n---\n\n### 4. Set Up Environment Variables\n\nCopy the example file:\n\n```bash\ncp .env.example .env\n```\n\nThen edit the `.env` file and add your [Together](https://api.together.xyz) API key:\n\n```env\nTOGETHER_API_KEY=your_together_api_key_here\n```\n\nYou can get your key for free at: https://api.together.xyz\n\n---\n\n### 5. Run the Assistant\n\nTo run the assistant:\n\n```bash\nbun run index.ts\n```\n\nOr with file watching:\n\n```bash\nbun run dev\n```\n\n---\n\n## 💬 Usage Example\n\nWhen prompted:\n\n```bash\nWhat do you expect me to do? :\n```\n\nTry commands like:\n\n```\nWhat is the weather in Delhi?\n\nList all files in the current directory.\n\nCreate a fully functional TODO list web app with the help of HTML, CSS, JS inside todo folder\n\n```\n\nYou’ll see the assistant respond step-by-step in this format:\n\n```json\n{ \"step\": \"think\", \"content\": \"User is asking for...\" }\n{ \"step\": \"action\", \"tool\": \"executeCommand\", \"input\": \"ls\" }\n{ \"step\": \"observe\", \"content\": \"index.ts\\nREADME.md\" }\n{ \"step\": \"output\", \"content\": \"Here are the files...\" }\n```\n\n---\n\n## 🔧 Tools Available\n\nThe assistant has access to:\n- `getWeaterInfo(city: string)` - get weater info of any city \n- `executeCommand(command: string)` – runs shell commands using Node.js\n\n---\n\n## 📄 License\n\nMIT © [Sanskar Jain](https://github.com/sans-byte)\n\n---\n\n## 🤝 Contributing\n\nPull requests, feature ideas, and improvements are welcome!\n\n---\n\n## 📎 Suggestions\n\nLet me know if you'd like:\n\n- ✅ A matching `.env.example` file  \n- ✅ A `.gitignore` file  \n- ✅ Badges for the top (Bun version, License, etc.)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsans-byte%2Fcursor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsans-byte%2Fcursor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsans-byte%2Fcursor/lists"}