├── .claude ├── agents-en │ ├── acceptance-test-generator.md │ ├── code-reviewer.md │ ├── design-sync.md │ ├── document-reviewer.md │ ├── integration-test-reviewer.md │ ├── prd-creator.md │ ├── quality-fixer-frontend.md │ ├── quality-fixer.md │ ├── requirement-analyzer.md │ ├── rule-advisor.md │ ├── task-decomposer.md │ ├── task-executor-frontend.md │ ├── task-executor.md │ ├── technical-designer-frontend.md │ ├── technical-designer.md │ └── work-planner.md ├── agents-ja │ ├── acceptance-test-generator.md │ ├── code-reviewer.md │ ├── design-sync.md │ ├── document-reviewer.md │ ├── integration-test-reviewer.md │ ├── prd-creator.md │ ├── quality-fixer-frontend.md │ ├── quality-fixer.md │ ├── requirement-analyzer.md │ ├── rule-advisor.md │ ├── task-decomposer.md │ ├── task-executor-frontend.md │ ├── task-executor.md │ ├── technical-designer-frontend.md │ ├── technical-designer.md │ └── work-planner.md ├── commands-en │ ├── build.md │ ├── design.md │ ├── front-build.md │ ├── front-design.md │ ├── front-plan.md │ ├── implement.md │ ├── plan.md │ ├── project-inject.md │ ├── refine-rule.md │ ├── review.md │ ├── sync-rules.md │ └── task.md └── commands-ja │ ├── build.md │ ├── design.md │ ├── front-build.md │ ├── front-design.md │ ├── front-plan.md │ ├── implement.md │ ├── plan.md │ ├── project-inject.md │ ├── refine-rule.md │ ├── review.md │ ├── sync-rules.md │ └── task.md ├── .github ├── assets │ └── demo.gif └── workflows │ └── ci.yml ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .madgerc ├── .tsprunerc ├── CLAUDE.en.md ├── CLAUDE.ja.md ├── LICENSE ├── README.ja.md ├── README.md ├── bin └── create-project.js ├── biome.json ├── docs ├── adr │ ├── template-en.md │ └── template-ja.md ├── design │ ├── template-en.md │ └── template-ja.md ├── guides │ ├── en │ │ ├── quickstart.md │ │ ├── rule-editing-guide.md │ │ ├── sub-agents.md │ │ └── use-cases.md │ └── ja │ │ ├── quickstart.md │ │ ├── rule-editing-guide.md │ │ ├── sub-agents.md │ │ └── use-cases.md ├── plans │ ├── template-en.md │ └── template-ja.md ├── prd │ ├── template-en.md │ └── template-ja.md ├── rules-en │ ├── architecture │ │ └── implementation-approach.md │ ├── coding-standards.md │ ├── documentation-criteria.md │ ├── frontend │ │ ├── technical-spec.md │ │ ├── typescript-testing.md │ │ └── typescript.md │ ├── integration-e2e-testing.md │ ├── project-context.md │ ├── rules-index.yaml │ ├── technical-spec.md │ ├── typescript-testing.md │ └── typescript.md └── rules-ja │ ├── architecture │ └── implementation-approach.md │ ├── coding-standards.md │ ├── documentation-criteria.md │ ├── frontend │ ├── technical-spec.md │ ├── typescript-testing.md │ └── typescript.md │ ├── integration-e2e-testing.md │ ├── project-context.md │ ├── rules-index.yaml │ ├── technical-spec.md │ ├── typescript-testing.md │ └── typescript.md ├── package.json ├── scripts ├── check-unused-exports.js ├── cleanup-test-processes.sh ├── post-setup.js ├── set-language.js ├── setup-project.js └── show-coverage.js ├── src └── index.ts ├── templates └── .gitignore.template ├── tsconfig.json └── vitest.config.mjs /.claude/agents-en/acceptance-test-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/acceptance-test-generator.md -------------------------------------------------------------------------------- /.claude/agents-en/code-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/code-reviewer.md -------------------------------------------------------------------------------- /.claude/agents-en/design-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/design-sync.md -------------------------------------------------------------------------------- /.claude/agents-en/document-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/document-reviewer.md -------------------------------------------------------------------------------- /.claude/agents-en/integration-test-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/integration-test-reviewer.md -------------------------------------------------------------------------------- /.claude/agents-en/prd-creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/prd-creator.md -------------------------------------------------------------------------------- /.claude/agents-en/quality-fixer-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/quality-fixer-frontend.md -------------------------------------------------------------------------------- /.claude/agents-en/quality-fixer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/quality-fixer.md -------------------------------------------------------------------------------- /.claude/agents-en/requirement-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/requirement-analyzer.md -------------------------------------------------------------------------------- /.claude/agents-en/rule-advisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/rule-advisor.md -------------------------------------------------------------------------------- /.claude/agents-en/task-decomposer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/task-decomposer.md -------------------------------------------------------------------------------- /.claude/agents-en/task-executor-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/task-executor-frontend.md -------------------------------------------------------------------------------- /.claude/agents-en/task-executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/task-executor.md -------------------------------------------------------------------------------- /.claude/agents-en/technical-designer-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/technical-designer-frontend.md -------------------------------------------------------------------------------- /.claude/agents-en/technical-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/technical-designer.md -------------------------------------------------------------------------------- /.claude/agents-en/work-planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-en/work-planner.md -------------------------------------------------------------------------------- /.claude/agents-ja/acceptance-test-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/acceptance-test-generator.md -------------------------------------------------------------------------------- /.claude/agents-ja/code-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/code-reviewer.md -------------------------------------------------------------------------------- /.claude/agents-ja/design-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/design-sync.md -------------------------------------------------------------------------------- /.claude/agents-ja/document-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/document-reviewer.md -------------------------------------------------------------------------------- /.claude/agents-ja/integration-test-reviewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/integration-test-reviewer.md -------------------------------------------------------------------------------- /.claude/agents-ja/prd-creator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/prd-creator.md -------------------------------------------------------------------------------- /.claude/agents-ja/quality-fixer-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/quality-fixer-frontend.md -------------------------------------------------------------------------------- /.claude/agents-ja/quality-fixer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/quality-fixer.md -------------------------------------------------------------------------------- /.claude/agents-ja/requirement-analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/requirement-analyzer.md -------------------------------------------------------------------------------- /.claude/agents-ja/rule-advisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/rule-advisor.md -------------------------------------------------------------------------------- /.claude/agents-ja/task-decomposer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/task-decomposer.md -------------------------------------------------------------------------------- /.claude/agents-ja/task-executor-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/task-executor-frontend.md -------------------------------------------------------------------------------- /.claude/agents-ja/task-executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/task-executor.md -------------------------------------------------------------------------------- /.claude/agents-ja/technical-designer-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/technical-designer-frontend.md -------------------------------------------------------------------------------- /.claude/agents-ja/technical-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/technical-designer.md -------------------------------------------------------------------------------- /.claude/agents-ja/work-planner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/agents-ja/work-planner.md -------------------------------------------------------------------------------- /.claude/commands-en/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/build.md -------------------------------------------------------------------------------- /.claude/commands-en/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/design.md -------------------------------------------------------------------------------- /.claude/commands-en/front-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/front-build.md -------------------------------------------------------------------------------- /.claude/commands-en/front-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/front-design.md -------------------------------------------------------------------------------- /.claude/commands-en/front-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/front-plan.md -------------------------------------------------------------------------------- /.claude/commands-en/implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/implement.md -------------------------------------------------------------------------------- /.claude/commands-en/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/plan.md -------------------------------------------------------------------------------- /.claude/commands-en/project-inject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/project-inject.md -------------------------------------------------------------------------------- /.claude/commands-en/refine-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/refine-rule.md -------------------------------------------------------------------------------- /.claude/commands-en/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/review.md -------------------------------------------------------------------------------- /.claude/commands-en/sync-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/sync-rules.md -------------------------------------------------------------------------------- /.claude/commands-en/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-en/task.md -------------------------------------------------------------------------------- /.claude/commands-ja/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/build.md -------------------------------------------------------------------------------- /.claude/commands-ja/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/design.md -------------------------------------------------------------------------------- /.claude/commands-ja/front-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/front-build.md -------------------------------------------------------------------------------- /.claude/commands-ja/front-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/front-design.md -------------------------------------------------------------------------------- /.claude/commands-ja/front-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/front-plan.md -------------------------------------------------------------------------------- /.claude/commands-ja/implement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/implement.md -------------------------------------------------------------------------------- /.claude/commands-ja/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/plan.md -------------------------------------------------------------------------------- /.claude/commands-ja/project-inject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/project-inject.md -------------------------------------------------------------------------------- /.claude/commands-ja/refine-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/refine-rule.md -------------------------------------------------------------------------------- /.claude/commands-ja/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/review.md -------------------------------------------------------------------------------- /.claude/commands-ja/sync-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/sync-rules.md -------------------------------------------------------------------------------- /.claude/commands-ja/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.claude/commands-ja/task.md -------------------------------------------------------------------------------- /.github/assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.github/assets/demo.gif -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.madgerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.madgerc -------------------------------------------------------------------------------- /.tsprunerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/.tsprunerc -------------------------------------------------------------------------------- /CLAUDE.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/CLAUDE.en.md -------------------------------------------------------------------------------- /CLAUDE.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/CLAUDE.ja.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bin/create-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/bin/create-project.js -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/biome.json -------------------------------------------------------------------------------- /docs/adr/template-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/adr/template-en.md -------------------------------------------------------------------------------- /docs/adr/template-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/adr/template-ja.md -------------------------------------------------------------------------------- /docs/design/template-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/design/template-en.md -------------------------------------------------------------------------------- /docs/design/template-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/design/template-ja.md -------------------------------------------------------------------------------- /docs/guides/en/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/en/quickstart.md -------------------------------------------------------------------------------- /docs/guides/en/rule-editing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/en/rule-editing-guide.md -------------------------------------------------------------------------------- /docs/guides/en/sub-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/en/sub-agents.md -------------------------------------------------------------------------------- /docs/guides/en/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/en/use-cases.md -------------------------------------------------------------------------------- /docs/guides/ja/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/ja/quickstart.md -------------------------------------------------------------------------------- /docs/guides/ja/rule-editing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/ja/rule-editing-guide.md -------------------------------------------------------------------------------- /docs/guides/ja/sub-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/ja/sub-agents.md -------------------------------------------------------------------------------- /docs/guides/ja/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/guides/ja/use-cases.md -------------------------------------------------------------------------------- /docs/plans/template-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/plans/template-en.md -------------------------------------------------------------------------------- /docs/plans/template-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/plans/template-ja.md -------------------------------------------------------------------------------- /docs/prd/template-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/prd/template-en.md -------------------------------------------------------------------------------- /docs/prd/template-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/prd/template-ja.md -------------------------------------------------------------------------------- /docs/rules-en/architecture/implementation-approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/architecture/implementation-approach.md -------------------------------------------------------------------------------- /docs/rules-en/coding-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/coding-standards.md -------------------------------------------------------------------------------- /docs/rules-en/documentation-criteria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/documentation-criteria.md -------------------------------------------------------------------------------- /docs/rules-en/frontend/technical-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/frontend/technical-spec.md -------------------------------------------------------------------------------- /docs/rules-en/frontend/typescript-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/frontend/typescript-testing.md -------------------------------------------------------------------------------- /docs/rules-en/frontend/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/frontend/typescript.md -------------------------------------------------------------------------------- /docs/rules-en/integration-e2e-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/integration-e2e-testing.md -------------------------------------------------------------------------------- /docs/rules-en/project-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/project-context.md -------------------------------------------------------------------------------- /docs/rules-en/rules-index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/rules-index.yaml -------------------------------------------------------------------------------- /docs/rules-en/technical-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/technical-spec.md -------------------------------------------------------------------------------- /docs/rules-en/typescript-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/typescript-testing.md -------------------------------------------------------------------------------- /docs/rules-en/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-en/typescript.md -------------------------------------------------------------------------------- /docs/rules-ja/architecture/implementation-approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/architecture/implementation-approach.md -------------------------------------------------------------------------------- /docs/rules-ja/coding-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/coding-standards.md -------------------------------------------------------------------------------- /docs/rules-ja/documentation-criteria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/documentation-criteria.md -------------------------------------------------------------------------------- /docs/rules-ja/frontend/technical-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/frontend/technical-spec.md -------------------------------------------------------------------------------- /docs/rules-ja/frontend/typescript-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/frontend/typescript-testing.md -------------------------------------------------------------------------------- /docs/rules-ja/frontend/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/frontend/typescript.md -------------------------------------------------------------------------------- /docs/rules-ja/integration-e2e-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/integration-e2e-testing.md -------------------------------------------------------------------------------- /docs/rules-ja/project-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/project-context.md -------------------------------------------------------------------------------- /docs/rules-ja/rules-index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/rules-index.yaml -------------------------------------------------------------------------------- /docs/rules-ja/technical-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/technical-spec.md -------------------------------------------------------------------------------- /docs/rules-ja/typescript-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/typescript-testing.md -------------------------------------------------------------------------------- /docs/rules-ja/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/docs/rules-ja/typescript.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /scripts/check-unused-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/scripts/check-unused-exports.js -------------------------------------------------------------------------------- /scripts/cleanup-test-processes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/scripts/cleanup-test-processes.sh -------------------------------------------------------------------------------- /scripts/post-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/scripts/post-setup.js -------------------------------------------------------------------------------- /scripts/set-language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/scripts/set-language.js -------------------------------------------------------------------------------- /scripts/setup-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/scripts/setup-project.js -------------------------------------------------------------------------------- /scripts/show-coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/scripts/show-coverage.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/src/index.ts -------------------------------------------------------------------------------- /templates/.gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/templates/.gitignore.template -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinpr/ai-coding-project-boilerplate/HEAD/vitest.config.mjs --------------------------------------------------------------------------------