{"id":14962546,"url":"https://github.com/aditya-xq/autoproject","last_synced_at":"2025-10-24T22:32:30.741Z","repository":{"id":238740039,"uuid":"797410203","full_name":"aditya-xq/AutoProject","owner":"aditya-xq","description":"A simple tool to automate your project management using AI","archived":false,"fork":false,"pushed_at":"2025-01-05T13:59:13.000Z","size":217,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-31T04:31:49.878Z","etag":null,"topics":["ai","ai-sdk","automation","bun","project-management","svelte5","sveltejs","sveltekit","sveltekit2","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aditya-xq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-05-07T19:20:23.000Z","updated_at":"2025-01-06T12:57:09.000Z","dependencies_parsed_at":"2024-05-16T06:28:04.809Z","dependency_job_id":"3038ae26-4064-452c-8485-9c9058c2adfa","html_url":"https://github.com/aditya-xq/AutoProject","commit_stats":{"total_commits":16,"total_committers":2,"mean_commits":8.0,"dds":0.125,"last_synced_commit":"e4402b367c28f130f15dfdb15c16ff1082db81a3"},"previous_names":["aditya-xq/autoproject"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya-xq%2FAutoProject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya-xq%2FAutoProject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya-xq%2FAutoProject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aditya-xq%2FAutoProject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aditya-xq","download_url":"https://codeload.github.com/aditya-xq/AutoProject/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238043943,"owners_count":19407117,"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","ai-sdk","automation","bun","project-management","svelte5","sveltejs","sveltekit","sveltekit2","tailwindcss"],"created_at":"2024-09-24T13:29:59.916Z","updated_at":"2025-10-24T22:32:30.728Z","avatar_url":"https://github.com/aditya-xq.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 AutoProject\n\nAutoProject is your ultimate **Bring Your Own Keys (BYOK)** tool to automate product and project management with AI-powered workflows.  \nRun locally, in production, or securely in Docker — your choice.\n\n---\n\n## 🌟 Key Features\n\n- **Generative PRD Creation**: Feed your requirements and receive tailor-made PRDs.\n- **AI-Powered User Story Generation**: Convert PRDs into smart, structured user stories.\n- **Tool Integration**: Instantly push stories into Linear, Asana, Jira, or Plane.\n\n---\n\n## 🛠️ Tech Stack\n\n| Part | Technology |\n|:-----|:-----------|\n| Backend | SvelteKit (API routes) |\n| Frontend | Svelte 5 + TailwindCSS v4 |\n| AI Engines | Gemini, Groq, LM Studio (local inference) |\n| Project Management API | Linear SDK |\n\nBuilt with ⚡ **Bun** for fast runtime performance.\n\n---\n\n## 🚀 Getting Started (Development Mode)\n\n### Prerequisites\n\n- [Bun](https://bun.sh/) (latest version)\n- [Docker Desktop](https://www.docker.com/products/docker-desktop) (for Docker option)\n- API Keys:\n  - **Linear API Key** — [Create here](https://linear.app/settings/api)\n  - **Gemini API Key** — [Create here](https://ai.google.dev/)\n  - **Groq API Key** — [Create here](https://console.groq.com/keys)\n\n---\n\n### 1. Local Development Setup\n\nClone and install dependencies:\n\n```bash\ngit clone https://github.com/aditya-xq/AutoProject.git\ncd AutoProject/autoproject\nbun install\n```\n\nCreate your `.env` file:\n\n```bash\ncp .env.example .env\n# Edit .env and add your real API keys\n```\n\nRun the app in development mode:\n\n```bash\nbun run dev\n```\n\nAccess the app at [http://localhost:5173](http://localhost:5173).\n\n---\n\n## 🔥 Running in Production Mode\n\nBuild the app:\n\n```bash\nbun run build\n```\n\nPreview the production build:\n\n```bash\nbun run preview\n```\n\nDefault preview port: **4173**.  \nAccess it at [http://localhost:4173](http://localhost:4173).\n\n---\n\n## 🐳 Running with Docker\n\n### 1. Using Docker Compose (Recommended)\n\nPrepare your `.env` file:\n\n```bash\ncp .env.example .env\n# Fill in your API keys\n```\n\nUse the provided `docker-compose.yml` or create one like this:\n\n```yaml\nservices:\n  autoproject:\n    image: xqbuilds/autoproject:latest\n    ports:\n      - \"3000:3000\"\n    env_file:\n      - .env\n    environment:\n      NODE_ENV: production\n    restart: unless-stopped\n```\n\nRun:\n\n```bash\ndocker-compose up -d\n```\n\nAccess the app at [http://localhost:3000](http://localhost:3000).\n\n---\n\n### 2. Running Manually Without Compose\n\n```bash\ndocker run --env-file .env -p 3000:3000 xqbuilds/autoproject:latest\n```\n\n---\n\n## 📜 Environment Variables\n\n| Variable | Required | Description |\n|:---------|:--------:|:------------|\n| `SECRET_GEMINI_API_KEY` | ✅ | Gemini API access key |\n| `SECRET_LINEAR_API_KEY` | ✅ | Linear API access key |\n| `SECRET_GROQ_API_KEY` | ✅ | Groq API access key |\n| `PORT` | ❌ | (Optional) Web server port, defaults to 3000 |\n| `HOST` | ❌ | (Optional) Web server host, defaults to 0.0.0.0 |\n\n**Important:**  \n\u003e 🚨 No secrets are included inside the public Docker image. All sensitive information must be provided by the user at runtime.\n\n---\n\n## 🙌 Contributing\n\nContributions are welcome! Feel free to fork, clone, and submit PRs.\n\n---\n\n## 💬 Feedback\n\nConnect on Twitter [@xq_is_here](https://x.com/xq_is_here) and share your feedback!\n\n---\n\n## 📄 License\n\nLicensed under the [MIT License](LICENSE).\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya-xq%2Fautoproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faditya-xq%2Fautoproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faditya-xq%2Fautoproject/lists"}