{"id":51319486,"url":"https://github.com/shamscorner/claudeilearn","last_synced_at":"2026-07-01T11:31:06.065Z","repository":{"id":354919889,"uuid":"1225927750","full_name":"shamscorner/claudeilearn","owner":"shamscorner","description":"A Claude code simulation game to learn all Claude code commands.","archived":false,"fork":false,"pushed_at":"2026-04-30T22:06:17.000Z","size":602,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-01T00:10:50.074Z","etag":null,"topics":["claude","claude-ai","claude-code","claude-commands","game","simulation","terminal-game"],"latest_commit_sha":null,"homepage":"http://claudeilearn.shamscorner.com/","language":"TypeScript","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/shamscorner.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-30T19:44:25.000Z","updated_at":"2026-04-30T22:06:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/shamscorner/claudeilearn","commit_stats":null,"previous_names":["shamscorner/claudeilearn"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/shamscorner/claudeilearn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamscorner%2Fclaudeilearn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamscorner%2Fclaudeilearn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamscorner%2Fclaudeilearn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamscorner%2Fclaudeilearn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shamscorner","download_url":"https://codeload.github.com/shamscorner/claudeilearn/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shamscorner%2Fclaudeilearn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35005409,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"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":["claude","claude-ai","claude-code","claude-commands","game","simulation","terminal-game"],"created_at":"2026-07-01T11:31:05.318Z","updated_at":"2026-07-01T11:31:06.052Z","avatar_url":"https://github.com/shamscorner.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claudify Learn\n\nA Claude Code simulation game to learn all Claude Code commands through interactive, story-driven terminal scenarios.\n\n## Prerequisites\n\n- [Bun](https://bun.sh/) (required for package management and running scripts)\n- Node.js 18+ (for local development if not using Bun)\n\n## Quick Start\n\n```bash\n# Install dependencies\nbun install\n\n# Start development server\nbun --bun run dev\n```\n\nThe app will be available at `http://localhost:3000`.\n\n## Available Scripts\n\n| Command | Description |\n|---------|-------------|\n| `bun --bun run dev` | Start development server |\n| `bun --bun run build` | Build for production |\n| `bun --bun run preview` | Preview production build |\n| `bun --bun run format` | Format code with Biome |\n| `bun --bun run lint` | Lint code with Biome |\n| `bun --bun run check` | Run lint + format checks |\n\n## Tech Stack\n\n- **Framework:** TanStack Start + TanStack Router\n- **Styling:** Tailwind CSS v4\n- **Testing:** Vitest\n- **Linting/Formatting:** Biome\n\n## Project Structure\n\n```\nsrc/\n├── routes/           # File-based routing (TanStack Router)\n│   ├── __root.tsx    # Root layout\n│   └── *.tsx         # Route files\n├── components/       # Reusable React components\n├── lib/              # Utility functions and helpers\n├── styles.css        # Global styles (Tailwind)\n└── app.tsx           # App entry point\n```\n\n## Contributing\n\n### Getting Started\n\n1. Fork the repository\n2. Clone your fork: `git clone \u003cyour-fork-url\u003e`\n3. Create a new branch: `git checkout -b feature/your-feature-name`\n4. Install dependencies: `bun install`\n5. Start the dev server: `bun --bun run dev`\n\n### Code Style\n\nThis project uses [Biome](https://biomejs.dev/) for linting and formatting.\n\n- Run `bun --bun run check` before committing to catch style/type issues\n- The project follows Biome's default rules\n\n### Adding Routes\n\nRoutes are file-based. Add a new file in `src/routes/`:\n\n```tsx\n// src/routes/my-route.tsx\nimport { createFileRoute } from '@tanstack/react-router'\n\nexport const Route = createFileRoute('/my-route')({\n  component: MyRouteComponent,\n})\n\nfunction MyRouteComponent() {\n  return \u003cdiv\u003eHello from my route!\u003c/div\u003e\n}\n```\n\n### Adding Components\n\nPlace reusable components in `src/components/`. Use the existing components as reference for naming conventions and patterns.\n\n### Testing\n\nRun tests with:\n\n```bash\nbun --bun run test\n```\n\n## Learn More\n\n- [TanStack Start](https://tanstack.com/start)\n- [TanStack Router](https://tanstack.com/router)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [Biome](https://biomejs.dev/)\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshamscorner%2Fclaudeilearn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshamscorner%2Fclaudeilearn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshamscorner%2Fclaudeilearn/lists"}