@k2works/claude-code-booster 2.7.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,8 +35,8 @@ async function setupProject() {
35
35
  overwrite: true,
36
36
  errorOnExist: false,
37
37
  filter: (from, to) => {
38
- // docs 直下の index.md をすべて除外する(他は全てコピー)
39
- if (path.basename(from) === 'index.md' && path.dirname(from) === src) {
38
+ // docs 配下の index.md をすべて除外する(他は全てコピー)
39
+ if (path.basename(from) === 'index.md') {
40
40
  return false;
41
41
  }
42
42
  return true;
@@ -85,6 +85,17 @@ nvm use "'$NODE_VER'"' > /tmp/nvm_install.sh \
85
85
  && su - $USERNAME -c /tmp/nvm_install.sh \
86
86
  && rm /tmp/nvm_install.sh
87
87
 
88
+ # GitHub CLIのインストール
89
+ RUN (type -p wget >/dev/null || (apt-get update && apt-get install -y wget)) \
90
+ && mkdir -p -m 755 /etc/apt/keyrings \
91
+ && out=$(mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg \
92
+ && cat $out | tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \
93
+ && chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg \
94
+ && echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
95
+ && apt-get update \
96
+ && apt-get install -y gh \
97
+ && rm -rf /var/lib/apt/lists/*
98
+
88
99
  # Gemini CLIのインストール
89
100
  RUN npm install -g @google/gemini-cli
90
101
 
@@ -4,19 +4,19 @@
4
4
 
5
5
  ## まずこれを読もうリスト
6
6
 
7
- - [ビジネスアーキテクチャ](./analysis/business_architecture.md) - ビジネス構造を定義。設計の基盤。
8
- - [インセプションデッキ](./analysis/inception_deck.md) - プロジェクトの全体像と方向性を共有。
7
+ - [ビジネスアーキテクチャ](./strategy/business_architecture.md) - ビジネス構造を定義。設計の基盤。
8
+ - [インセプションデッキ](./strategy/inception_deck.md) - プロジェクトの全体像と方向性を共有。
9
9
 
10
10
  ## ドキュメント構成
11
11
 
12
- ### 分析 (`analysis/`)
12
+ ### 戦略 (`strategy/`)
13
13
 
14
14
  | ドキュメント | 状態 |
15
15
  | :--- | :--- |
16
- | [ビジネスアーキテクチャ](./analysis/business_architecture.md) | 未着手 |
17
- | [インセプションデッキ](./analysis/inception_deck.md) | 未着手 |
16
+ | [ビジネスアーキテクチャ](./strategy/business_architecture.md) | 未着手 |
17
+ | [インセプションデッキ](./strategy/inception_deck.md) | 未着手 |
18
18
 
19
- ### 要件定義 (`requirements/`)
19
+ ### 要件 (`requirements/`)
20
20
 
21
21
  | ドキュメント | 状態 |
22
22
  | :--- | :--- |
@@ -48,9 +48,12 @@
48
48
 
49
49
  ### 運用 (`operation/`)
50
50
 
51
- | ドキュメント | 状態 |
52
- | :--- | :--- |
53
- | [アプリケーション開発環境セットアップ手順書](./operation/dev_app_instruction.md) | 未着手 |
51
+ | ドキュメント | 状態 |
52
+ |:-------------------------------------------------------------| :--- |
53
+ | [アプリケーション開発環境セットアップ手順書](./operation/dev_app_instruction.md) | 未着手 |
54
+ | [開発環境セットアップ手順書](./operation/dev_infra_instruction.md) | 未着手 |
55
+ | [ステージング開発環境セットアップ手順書](./operation/stg_infra_instruction.md) | 未着手 |
56
+ | [プロダクション開発環境セットアップ手順書](./operation/prd_infra_instruction.md) | 未着手 |
54
57
 
55
58
  ### ADR (`adr/`)
56
59
 
@@ -0,0 +1,5 @@
1
+ # レビュー
2
+
3
+ 分析フェーズの成果物に対するマルチパースペクティブレビューの結果を管理します。
4
+
5
+ ## レビュー一覧
@@ -1,6 +1,6 @@
1
- # 分析
2
-
3
- ビジネス分析・要件分析に関するドキュメントです。
1
+ # 戦略
2
+
3
+ ビジネス戦略・要件分析に関するドキュメントです。
4
4
 
5
5
  ## ドキュメント一覧
6
6
 
@@ -63,8 +63,8 @@ exclude_docs: |
63
63
 
64
64
  nav:
65
65
  - Home: index.md
66
- - 分析:
67
- - 概要: analysis/index.md
66
+ - 戦略:
67
+ - 概要: strategy/index.md
68
68
  - 要件:
69
69
  - 概要: requirements/index.md
70
70
  - 設計:
@@ -73,6 +73,10 @@ nav:
73
73
  - 概要: development/index.md
74
74
  - 運用:
75
75
  - 概要: operation/index.md
76
+ - レビュー:
77
+ - 概要: review/index.md
78
+ - ADR:
79
+ - 概要: adr/index.md
76
80
  - リファレンス:
77
81
  - 概要: reference/index.md
78
82
  - よいソフトウェアとは: reference/よいソフトウェアとは.md
@@ -100,8 +104,6 @@ nav:
100
104
  - Codex CLI MCP サーバー設定手順: reference/CodexCLIMCPサーバー設定手順.md
101
105
  - SonarQube ローカル環境セットアップ手順書: reference/SonarQubeローカル環境セットアップ手順書.md
102
106
  - Vim 操作マニュアル: reference/Vim操作マニュアル.md
103
- - ADR:
104
- - 概要: adr/index.md
105
107
  - テンプレート:
106
108
  - 概要: template/index.md
107
109
  - まずこれを読もうリスト: template/まずこれを読もうリスト.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k2works/claude-code-booster",
3
- "version": "2.7.0",
3
+ "version": "3.0.0",
4
4
  "description": "AI Agent Development Support Tool",
5
5
  "main": "main.js",
6
6
  "bin": {