{"id":50610760,"url":"https://github.com/fusic/todo-ai-dlc","last_synced_at":"2026-06-06T03:30:59.170Z","repository":{"id":349664615,"uuid":"1179292439","full_name":"fusic/todo-ai-dlc","owner":"fusic","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-16T02:06:25.000Z","size":255,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-23T00:35:26.258Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/fusic.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":null,"dco":null,"cla":null}},"created_at":"2026-03-11T22:12:47.000Z","updated_at":"2026-04-01T01:52:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fusic/todo-ai-dlc","commit_stats":null,"previous_names":["fusic/todo-ai-dlc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fusic/todo-ai-dlc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fusic%2Ftodo-ai-dlc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fusic%2Ftodo-ai-dlc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fusic%2Ftodo-ai-dlc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fusic%2Ftodo-ai-dlc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fusic","download_url":"https://codeload.github.com/fusic/todo-ai-dlc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fusic%2Ftodo-ai-dlc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33968711,"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-06-06T02:00:07.033Z","response_time":107,"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":"2026-06-06T03:30:58.606Z","updated_at":"2026-06-06T03:30:59.165Z","avatar_url":"https://github.com/fusic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# todo-ai-dlc\n\nTODO 管理アプリケーション（React + Hono + DynamoDB）\n\n## 前提条件\n\n| ツール | 必須 | 備考 |\n|--------|------|------|\n| [Rancher Desktop](https://rancherdesktop.io/) | **必須** | Container Engine は **dockerd (moby)** を選択してください。Docker Desktop でも代替可能ですが、本プロジェクトでは Rancher Desktop を標準としています |\n| [Node.js](https://nodejs.org/) 20+ | ホスト直接開発時 | Docker のみで開発する場合は不要 |\n| [pnpm](https://pnpm.io/) 9.15+ | ホスト直接開発時 | `corepack enable` で有効化 |\n| Git | **必須** | |\n\n## ローカル開発環境（Rancher Desktop / Docker）\n\n### セットアップ\n\n```bash\ngit clone \u003crepository-url\u003e\ncd todo-ai-dlc\ncp .env.example .env  # 必要に応じて編集\ndocker compose up --build\n```\n\n### アクセス URL\n\n| サービス | URL |\n|----------|-----|\n| Frontend | http://localhost:3000 |\n| Backend API | http://localhost:3001 |\n| DynamoDB Local | http://localhost:8000 |\n\n### 停止\n\n```bash\ndocker compose down          # コンテナ停止\ndocker compose down -v       # コンテナ停止 + データリセット（volumes 削除）\n```\n\n### Windows（WSL2）での開発\n\nWSL2 上で利用する場合、以下の点に注意してください：\n\n1. **プロジェクトは WSL2 ネイティブ FS に clone する**（`/home/user/...` 配下）。`/mnt/c/...` に置くと bind mount のパフォーマンスが大幅に低下します\n2. **hot-reload が動かない場合**は、polling モードを有効にしてください：\n   ```bash\n   VITE_USE_POLLING=true docker compose up --build\n   ```\n\n### ホスト直接での開発\n\nDocker を使わずにホストで直接開発する場合：\n\n```bash\npnpm install\npnpm run dev          # Frontend 起動\n# 別ターミナルで\npnpm --filter @todo-ai-dlc/backend dev   # Backend 起動\n```\n\nBackend から DynamoDB Local に接続する場合は、別途 DynamoDB Local を起動し `DYNAMODB_ENDPOINT=http://localhost:8000` を設定してください。\n\n## テスト\n\n```bash\npnpm -r test\n```\n\n## プロジェクト構成\n\n```\npackages/\n  ├── backend/        # Hono API サーバー (DynamoDB)\n  ├── frontend/       # React + Vite + Tailwind CSS\n  └── infrastructure/ # AWS CDK\n```\n\n## AIDLC ワークフロー（必須）\n\n本プロジェクトでは [AI-DLC（AI Development Lifecycle）](https://github.com/awslabs/aidlc-workflows) ワークフローを採用しています。要件定義・設計・実装のすべてのフェーズで AIDLC を使用するため、開発開始前に必ずセットアップしてください。\n\n### セットアップ\n\n```bash\ngit clone https://github.com/awslabs/aidlc-workflows.git .aidlc-workflows\n```\n\n### 利用方法\n\n**Claude Code** では以下のコマンドが利用可能になります：\n\n- `/aws-aidlc-inception` — 要件定義・設計フェーズ（Inception）\n- `/aws-aidlc-construction` — 実装・テストフェーズ（Construction）\n\n**Codex** で同等の Skill を使う場合は、repo 内の定義を `~/.codex/skills` に連携します：\n\n```bash\nbash scripts/install-codex-skills.sh\n```\n\n必要に応じて `CODEX_SKILLS_HOME=/path/to/skills` で導入先を切り替えられます。導入後は Codex を再起動すると `aws-aidlc-inception` と `aws-aidlc-construction` が利用可能になります。\n\n### AIDLC 成果物\n\nAIDLC ワークフローの成果物は `aidlc-docs/` に格納されます：\n\n```\naidlc-docs/\n  ├── inception/         # 要件定義・アプリケーション設計\n  │   ├── requirements/  # 要件定義\n  │   ├── application-design/  # コンポーネント設計・サービス定義\n  │   └── plans/         # 実行計画\n  └── construction/      # 実装成果物\n      ├── plans/         # コード生成計画\n      ├── backend/       # Backend 実装サマリー\n      ├── frontend/      # Frontend 実装サマリー\n      ├── infrastructure/ # インフラ設計・実装サマリー\n      └── build-and-test/ # ビルド・テスト手順\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffusic%2Ftodo-ai-dlc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffusic%2Ftodo-ai-dlc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffusic%2Ftodo-ai-dlc/lists"}