プロジェクトドキュメント
Bundle OKF 0.2 · 6 conceitos · k2works/claude-code-booster
Open source Repository Open in the app JSON README (API)
About
# プロジェクトドキュメント
プロジェクトで管理しているドキュメントの入口です。
## まずこれを読もうリスト
- [戦略](./strategy/index.md) - ビジネス構造やプロジェクトの方向性を整理します。
- [要件](./requirements/index.md) - RDRA 2.0 ベースで要件を定義します。
- [設計](./design/index.md) - アーキテクチャ、モデル、品質方針を整理します。
- [開発](./development/index.md) - リリース計画とイテレーション管理の入口です。
- [運用](./operation/index.md) - 環境構築、デプロイ、運用関連の入口です。
- [記事](./article/index.md) - 学習用の記事シリーズの入口です。
## ドキュメント構成
| カテゴリ | 概要 | 状況 |
| :--- |:------------------------------------| :--- |
| [戦略](./strategy/index.md) | 企業分析、経営戦略、ビジネスアーキテクチャ、インセプションデッキの整理 | `index.md` を整備済み |
| [要件](./requirements/index.md) | RDRA 2.0 とユースケース整理の入口 | `index.md` を整備済み |
| [設計](./design/index.md) | アーキテクチャ、モデル、テスト、非機能の整理 | `index.md` を整備済み |
| [開発](./development/index.md) | リリース計画、イテレーション計画、進捗管理 | `index.md` を整備済み |
| [運用](./operation/index.md) | 環境構築、デプロイ、運用手順の整理 | `index.md` を整備済み |
| [レビュー](./review/index.md) | 分析・開発レビュー結果の記録 | `index.md` を整備済み |
| [ADR](./adr/index.md) | Architecture Decision Records の管理 | `index.md` を整備済み |
| [記事](
Details
- Kind
- OKF bundles
- Topic
- No topic detected
- Publisher
- k2works
- Origin
- okf_github
- Category
- dados
- Version
- 0.2
- Last push
- 2026-08-26T06:14:37Z
- Repository state
- ativo
- Language
- JavaScript
- License
- MIT
- Added
- 2026-09-09 05:11:22
- Updated
- 2026-09-09 05:11:22
- Origin id
k2works/claude-code-booster:lib/assets/docs/index.md
README
# claude-code-booster ## What's this AI Agent Development Support Tool ## Install ``` npm install @k2works/claude-code-booster ``` ## Usage - Initialize/copy all assets to your project root: ```sh npx boost ``` - Update only .claude and docs directories in an existing project: ```sh npx boost --update ``` ### What gets updated with --update - .claude: prompts, commands, and config shipped with this package - docs: documentation templates ### Notes - Existing files under .claude and docs will be overwritten. - Other files are left untouched. ### Keeping project-specific notes (PROJECT.md) The skills shipped here are intentionally generic — they do not assume a language, framework, or directory layout. Concrete paths and commands differ per project, so **do not edit `SKILL.md` to record them**: it is overwritten on the next `--update`. Put them in a `PROJECT.md` next to the skill instead: ``` .claude/skills/creating-manual/ ├── SKILL.md # shipped by this package — overwritten on update └── PROJECT.md # yours — never touched, because it does not exist upstream ``` Files that exist only in your project are left alone (the copy step never deletes extraneous files), so `PROJECT.md` survives every update. The generated `CLAUDE.md` already instructs the agent to read `PROJECT.md` alongside `SKILL.md` and to treat `PROJECT.md` as authoritative when the two disagree — no wiring is needed on your side. ## Development ``` npm install npm start ``` ## License MIT. Copyright (c) [k2works](http://feross.org).