{"id":31738207,"url":"https://github.com/kilo-org/kilo-vibe-demos","last_synced_at":"2025-10-09T09:56:29.874Z","repository":{"id":315131880,"uuid":"1058238487","full_name":"Kilo-Org/kilo-vibe-demos","owner":"Kilo-Org","description":"A collection of vibe-coded projects made with Kilo Code","archived":false,"fork":false,"pushed_at":"2025-09-16T20:27:14.000Z","size":1408,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-16T23:08:12.499Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":false,"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/Kilo-Org.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-16T20:15:48.000Z","updated_at":"2025-09-16T20:27:17.000Z","dependencies_parsed_at":"2025-09-16T23:19:02.114Z","dependency_job_id":null,"html_url":"https://github.com/Kilo-Org/kilo-vibe-demos","commit_stats":null,"previous_names":["kilo-org/kilo-vibe-demos"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Kilo-Org/kilo-vibe-demos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kilo-Org%2Fkilo-vibe-demos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kilo-Org%2Fkilo-vibe-demos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kilo-Org%2Fkilo-vibe-demos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kilo-Org%2Fkilo-vibe-demos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kilo-Org","download_url":"https://codeload.github.com/Kilo-Org/kilo-vibe-demos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kilo-Org%2Fkilo-vibe-demos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001065,"owners_count":26083022,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-10-09T09:56:28.674Z","updated_at":"2025-10-09T09:56:29.869Z","avatar_url":"https://github.com/Kilo-Org.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vibe Demos\n\nA collection of demo applications built with [Kilo Code](https://kilocode.com) to showcase different web development techniques and frameworks.\n\n## Projects\n\nThis monorepo contains the following demo applications:\n\n### 🎬 KiloFlix\n\n_Location: `./kiloflix`_\n\nA Netflix-style streaming platform clone built with vanilla HTML, CSS, and JavaScript. Features a responsive design with a modern streaming interface.\n\n**Tech Stack:**\n\n- HTML5\n- CSS3 (with CSS Grid and Flexbox)\n- Vanilla JavaScript\n\n### 🐍 Snake Game\n\n_Location: `./snake-1`_\n\nA classic Snake game implementation built with TypeScript and Vite, featuring modern development tooling and build processes.\n\n**Tech Stack:**\n\n- TypeScript\n- Vite\n- HTML5 Canvas\n\n**[🎮 Play Live Demo](https://main.kilo-demo-snake-1.pages.dev)**\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- pnpm 8+\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone \u003crepository-url\u003e\ncd vibe-demos\n```\n\n2. Install dependencies:\n\n```bash\npnpm install\n```\n\n### Development\n\nRun all projects in development mode:\n\n```bash\npnpm dev\n```\n\nOr run individual projects:\n\n**KiloFlix:**\n\n```bash\ncd kiloflix\npnpm dev\n# Opens on http://localhost:8000\n```\n\n**Snake Game:**\n\n```bash\ncd snake-1\npnpm dev\n# Opens on http://localhost:5173\n```\n\n### Building\n\nBuild all projects:\n\n```bash\npnpm build\n```\n\n### Deployment\n\n**Snake Game to Cloudflare Pages:**\n\n```bash\ncd snake-1\npnpm build\npnpm deploy\n```\n\n## Project Structure\n\n```\nvibe-demos/\n├── kiloflix/           # Netflix-style streaming platform\n│   ├── index.html\n│   ├── styles.css\n│   ├── script.js\n│   └── package.json\n├── snake-1/            # TypeScript Snake game\n│   ├── src/\n│   ├── index.html\n│   ├── vite.config.ts\n│   ├── tsconfig.json\n│   └── package.json\n├── package.json        # Root package.json with workspace config\n├── pnpm-workspace.yaml # pnpm workspace configuration\n├── turbo.json          # Turborepo pipeline configuration\n└── README.md\n```\n\n## Built with Kilo Code\n\nThese demos were created using [Kilo Code](https://kilocode.com), an AI-powered coding assistant that helps developers build applications quickly and efficiently.\n\n## License\n\nThis project is open source and available under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkilo-org%2Fkilo-vibe-demos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkilo-org%2Fkilo-vibe-demos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkilo-org%2Fkilo-vibe-demos/lists"}