get-shit-done-cc 1.30.0 → 1.34.1
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.
- package/README.ja-JP.md +136 -102
- package/README.ko-KR.md +135 -99
- package/README.md +163 -104
- package/README.pt-BR.md +83 -45
- package/README.zh-CN.md +129 -93
- package/agents/gsd-code-fixer.md +516 -0
- package/agents/gsd-code-reviewer.md +355 -0
- package/agents/gsd-codebase-mapper.md +3 -3
- package/agents/gsd-debugger.md +13 -5
- package/agents/gsd-doc-verifier.md +201 -0
- package/agents/gsd-doc-writer.md +602 -0
- package/agents/gsd-executor.md +26 -3
- package/agents/gsd-intel-updater.md +314 -0
- package/agents/gsd-nyquist-auditor.md +1 -1
- package/agents/gsd-phase-researcher.md +48 -4
- package/agents/gsd-plan-checker.md +100 -6
- package/agents/gsd-planner.md +142 -206
- package/agents/gsd-project-researcher.md +2 -2
- package/agents/gsd-research-synthesizer.md +3 -3
- package/agents/gsd-roadmapper.md +6 -6
- package/agents/gsd-security-auditor.md +128 -0
- package/agents/gsd-ui-auditor.md +43 -3
- package/agents/gsd-ui-checker.md +5 -5
- package/agents/gsd-ui-researcher.md +4 -4
- package/agents/gsd-user-profiler.md +2 -2
- package/agents/gsd-verifier.md +142 -22
- package/bin/install.js +1529 -353
- package/commands/gsd/add-backlog.md +5 -5
- package/commands/gsd/add-tests.md +2 -2
- package/commands/gsd/analyze-dependencies.md +34 -0
- package/commands/gsd/audit-fix.md +33 -0
- package/commands/gsd/autonomous.md +6 -2
- package/commands/gsd/cleanup.md +5 -0
- package/commands/gsd/code-review-fix.md +52 -0
- package/commands/gsd/code-review.md +55 -0
- package/commands/gsd/complete-milestone.md +6 -6
- package/commands/gsd/debug.md +22 -9
- package/commands/gsd/discuss-phase.md +7 -2
- package/commands/gsd/do.md +1 -1
- package/commands/gsd/docs-update.md +48 -0
- package/commands/gsd/execute-phase.md +4 -0
- package/commands/gsd/explore.md +27 -0
- package/commands/gsd/fast.md +2 -2
- package/commands/gsd/help.md +2 -0
- package/commands/gsd/import.md +36 -0
- package/commands/gsd/intel.md +179 -0
- package/commands/gsd/join-discord.md +2 -1
- package/commands/gsd/manager.md +1 -0
- package/commands/gsd/map-codebase.md +3 -3
- package/commands/gsd/new-milestone.md +1 -1
- package/commands/gsd/new-project.md +5 -1
- package/commands/gsd/new-workspace.md +1 -1
- package/commands/gsd/next.md +2 -0
- package/commands/gsd/plan-milestone-gaps.md +2 -2
- package/commands/gsd/plan-phase.md +6 -1
- package/commands/gsd/plant-seed.md +1 -1
- package/commands/gsd/profile-user.md +1 -1
- package/commands/gsd/quick.md +5 -3
- package/commands/gsd/reapply-patches.md +189 -40
- package/commands/gsd/research-phase.md +3 -3
- package/commands/gsd/review-backlog.md +1 -0
- package/commands/gsd/review.md +4 -3
- package/commands/gsd/scan.md +26 -0
- package/commands/gsd/secure-phase.md +35 -0
- package/commands/gsd/ship.md +1 -1
- package/commands/gsd/thread.md +5 -5
- package/commands/gsd/undo.md +34 -0
- package/commands/gsd/verify-work.md +1 -1
- package/commands/gsd/workstreams.md +17 -11
- package/get-shit-done/bin/gsd-tools.cjs +137 -8
- package/get-shit-done/bin/lib/commands.cjs +69 -15
- package/get-shit-done/bin/lib/config.cjs +42 -13
- package/get-shit-done/bin/lib/core.cjs +383 -80
- package/get-shit-done/bin/lib/docs.cjs +267 -0
- package/get-shit-done/bin/lib/frontmatter.cjs +47 -2
- package/get-shit-done/bin/lib/init.cjs +90 -10
- package/get-shit-done/bin/lib/intel.cjs +660 -0
- package/get-shit-done/bin/lib/learnings.cjs +378 -0
- package/get-shit-done/bin/lib/milestone.cjs +30 -0
- package/get-shit-done/bin/lib/model-profiles.cjs +17 -15
- package/get-shit-done/bin/lib/phase.cjs +232 -189
- package/get-shit-done/bin/lib/profile-output.cjs +106 -10
- package/get-shit-done/bin/lib/roadmap.cjs +137 -113
- package/get-shit-done/bin/lib/schema-detect.cjs +238 -0
- package/get-shit-done/bin/lib/security.cjs +124 -3
- package/get-shit-done/bin/lib/state.cjs +366 -44
- package/get-shit-done/bin/lib/verify.cjs +168 -24
- package/get-shit-done/bin/lib/workstream.cjs +7 -3
- package/get-shit-done/contexts/dev.md +21 -0
- package/get-shit-done/contexts/research.md +22 -0
- package/get-shit-done/contexts/review.md +22 -0
- package/get-shit-done/references/agent-contracts.md +79 -0
- package/get-shit-done/references/artifact-types.md +113 -0
- package/get-shit-done/references/common-bug-patterns.md +114 -0
- package/get-shit-done/references/context-budget.md +49 -0
- package/get-shit-done/references/continuation-format.md +25 -25
- package/get-shit-done/references/domain-probes.md +125 -0
- package/get-shit-done/references/few-shot-examples/plan-checker.md +73 -0
- package/get-shit-done/references/few-shot-examples/verifier.md +109 -0
- package/get-shit-done/references/gate-prompts.md +100 -0
- package/get-shit-done/references/gates.md +70 -0
- package/get-shit-done/references/git-integration.md +1 -1
- package/get-shit-done/references/model-profile-resolution.md +2 -0
- package/get-shit-done/references/model-profiles.md +24 -18
- package/get-shit-done/references/planner-gap-closure.md +62 -0
- package/get-shit-done/references/planner-reviews.md +39 -0
- package/get-shit-done/references/planner-revision.md +87 -0
- package/get-shit-done/references/planning-config.md +230 -0
- package/get-shit-done/references/revision-loop.md +97 -0
- package/get-shit-done/references/thinking-models-debug.md +44 -0
- package/get-shit-done/references/thinking-models-execution.md +50 -0
- package/get-shit-done/references/thinking-models-planning.md +62 -0
- package/get-shit-done/references/thinking-models-research.md +50 -0
- package/get-shit-done/references/thinking-models-verification.md +55 -0
- package/get-shit-done/references/thinking-partner.md +96 -0
- package/get-shit-done/references/ui-brand.md +4 -4
- package/get-shit-done/references/universal-anti-patterns.md +58 -0
- package/get-shit-done/references/verification-overrides.md +227 -0
- package/get-shit-done/references/workstream-flag.md +56 -3
- package/get-shit-done/templates/DEBUG.md +1 -1
- package/get-shit-done/templates/SECURITY.md +61 -0
- package/get-shit-done/templates/UAT.md +4 -4
- package/get-shit-done/templates/VALIDATION.md +4 -4
- package/get-shit-done/templates/claude-md.md +32 -9
- package/get-shit-done/templates/config.json +4 -0
- package/get-shit-done/templates/debug-subagent-prompt.md +1 -1
- package/get-shit-done/templates/dev-preferences.md +1 -1
- package/get-shit-done/templates/discovery.md +2 -2
- package/get-shit-done/templates/phase-prompt.md +1 -1
- package/get-shit-done/templates/planner-subagent-prompt.md +3 -3
- package/get-shit-done/templates/project.md +1 -1
- package/get-shit-done/templates/research.md +1 -1
- package/get-shit-done/templates/state.md +2 -2
- package/get-shit-done/workflows/add-phase.md +8 -8
- package/get-shit-done/workflows/add-tests.md +9 -9
- package/get-shit-done/workflows/add-todo.md +3 -3
- package/get-shit-done/workflows/analyze-dependencies.md +96 -0
- package/get-shit-done/workflows/audit-fix.md +157 -0
- package/get-shit-done/workflows/audit-milestone.md +11 -11
- package/get-shit-done/workflows/audit-uat.md +2 -2
- package/get-shit-done/workflows/autonomous.md +193 -27
- package/get-shit-done/workflows/check-todos.md +10 -10
- package/get-shit-done/workflows/code-review-fix.md +497 -0
- package/get-shit-done/workflows/code-review.md +515 -0
- package/get-shit-done/workflows/complete-milestone.md +16 -7
- package/get-shit-done/workflows/diagnose-issues.md +10 -3
- package/get-shit-done/workflows/discovery-phase.md +3 -3
- package/get-shit-done/workflows/discuss-phase-assumptions.md +24 -6
- package/get-shit-done/workflows/discuss-phase-power.md +291 -0
- package/get-shit-done/workflows/discuss-phase.md +173 -21
- package/get-shit-done/workflows/do.md +21 -21
- package/get-shit-done/workflows/docs-update.md +1153 -0
- package/get-shit-done/workflows/execute-phase.md +440 -33
- package/get-shit-done/workflows/execute-plan.md +4 -4
- package/get-shit-done/workflows/explore.md +139 -0
- package/get-shit-done/workflows/fast.md +5 -5
- package/get-shit-done/workflows/forensics.md +2 -2
- package/get-shit-done/workflows/health.md +4 -4
- package/get-shit-done/workflows/help.md +122 -119
- package/get-shit-done/workflows/import.md +274 -0
- package/get-shit-done/workflows/inbox.md +384 -0
- package/get-shit-done/workflows/insert-phase.md +7 -7
- package/get-shit-done/workflows/list-phase-assumptions.md +4 -4
- package/get-shit-done/workflows/list-workspaces.md +2 -2
- package/get-shit-done/workflows/manager.md +33 -32
- package/get-shit-done/workflows/map-codebase.md +7 -5
- package/get-shit-done/workflows/milestone-summary.md +2 -2
- package/get-shit-done/workflows/new-milestone.md +15 -9
- package/get-shit-done/workflows/new-project.md +48 -25
- package/get-shit-done/workflows/new-workspace.md +5 -5
- package/get-shit-done/workflows/next.md +67 -11
- package/get-shit-done/workflows/note.md +7 -7
- package/get-shit-done/workflows/pause-work.md +75 -12
- package/get-shit-done/workflows/plan-milestone-gaps.md +8 -8
- package/get-shit-done/workflows/plan-phase.md +246 -30
- package/get-shit-done/workflows/plant-seed.md +3 -3
- package/get-shit-done/workflows/pr-branch.md +1 -1
- package/get-shit-done/workflows/profile-user.md +5 -5
- package/get-shit-done/workflows/progress.md +45 -45
- package/get-shit-done/workflows/quick.md +190 -47
- package/get-shit-done/workflows/remove-phase.md +6 -6
- package/get-shit-done/workflows/remove-workspace.md +1 -1
- package/get-shit-done/workflows/research-phase.md +2 -2
- package/get-shit-done/workflows/resume-project.md +12 -12
- package/get-shit-done/workflows/review.md +60 -7
- package/get-shit-done/workflows/scan.md +102 -0
- package/get-shit-done/workflows/secure-phase.md +164 -0
- package/get-shit-done/workflows/session-report.md +2 -2
- package/get-shit-done/workflows/settings.md +22 -11
- package/get-shit-done/workflows/ship.md +18 -9
- package/get-shit-done/workflows/stats.md +1 -1
- package/get-shit-done/workflows/transition.md +23 -23
- package/get-shit-done/workflows/ui-phase.md +7 -7
- package/get-shit-done/workflows/ui-review.md +27 -4
- package/get-shit-done/workflows/undo.md +312 -0
- package/get-shit-done/workflows/update.md +168 -19
- package/get-shit-done/workflows/validate-phase.md +4 -4
- package/get-shit-done/workflows/verify-phase.md +127 -6
- package/get-shit-done/workflows/verify-work.md +72 -9
- package/hooks/dist/gsd-check-update.js +33 -8
- package/hooks/dist/gsd-context-monitor.js +8 -1
- package/hooks/dist/gsd-phase-boundary.sh +27 -0
- package/hooks/dist/gsd-prompt-guard.js +1 -0
- package/hooks/dist/gsd-read-guard.js +77 -0
- package/hooks/dist/gsd-session-state.sh +33 -0
- package/hooks/dist/gsd-statusline.js +11 -4
- package/hooks/dist/gsd-validate-commit.sh +47 -0
- package/hooks/dist/gsd-workflow-guard.js +4 -4
- package/hooks/gsd-check-update.js +139 -0
- package/hooks/gsd-context-monitor.js +163 -0
- package/hooks/gsd-phase-boundary.sh +27 -0
- package/hooks/gsd-prompt-guard.js +97 -0
- package/hooks/gsd-read-guard.js +77 -0
- package/hooks/gsd-session-state.sh +33 -0
- package/hooks/gsd-statusline.js +126 -0
- package/hooks/gsd-validate-commit.sh +47 -0
- package/hooks/gsd-workflow-guard.js +94 -0
- package/package.json +3 -3
- package/scripts/build-hooks.js +18 -7
- package/scripts/prompt-injection-scan.sh +1 -0
- package/scripts/run-tests.cjs +5 -1
- package/get-shit-done/commands/gsd/workstreams.md +0 -63
package/README.ja-JP.md
CHANGED
|
@@ -4,16 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
[English](README.md) · [Português](README.pt-BR.md) · [简体中文](README.zh-CN.md) · **日本語**
|
|
6
6
|
|
|
7
|
-
**Claude Code、OpenCode、Gemini CLI、Codex、Copilot、Antigravity向けの軽量かつ強力なメタプロンプティング、コンテキストエンジニアリング、仕様駆動開発システム。**
|
|
7
|
+
**Claude Code、OpenCode、Gemini CLI、Kilo、Codex、Copilot、Cursor、Windsurf、Antigravity、Augment、Trae、Cline向けの軽量かつ強力なメタプロンプティング、コンテキストエンジニアリング、仕様駆動開発システム。**
|
|
8
8
|
|
|
9
9
|
**コンテキストロット(Claudeがコンテキストウィンドウを消費するにつれ品質が劣化する現象)を解決します。**
|
|
10
10
|
|
|
11
|
-
[**English**](README.md) | [**Português**](README.pt-BR.md) | [**简体中文**](docs/zh-CN/README.md) | [**日本語**](docs/ja-JP/README.md)
|
|
12
|
-
|
|
13
11
|
[](https://www.npmjs.com/package/get-shit-done-cc)
|
|
14
12
|
[](https://www.npmjs.com/package/get-shit-done-cc)
|
|
15
13
|
[](https://github.com/gsd-build/get-shit-done/actions/workflows/test.yml)
|
|
16
|
-
[](https://discord.gg/
|
|
14
|
+
[](https://discord.gg/mYgfVNfA2r)
|
|
17
15
|
[](https://x.com/gsd_foundation)
|
|
18
16
|
[](https://dexscreener.com/solana/dwudwjvan7bzkw9zwlbyv6kspdlvhwzrqy6ebk8xzxkv)
|
|
19
17
|
[](https://github.com/gsd-build/get-shit-done)
|
|
@@ -75,6 +73,18 @@ GSDはそれを解決します。Claude Codeを信頼性の高いものにする
|
|
|
75
73
|
|
|
76
74
|
やりたいことを説明するだけで正しく構築してほしい人 — 50人のエンジニア組織を運営しているふりをせずに。
|
|
77
75
|
|
|
76
|
+
ビルトインの品質ゲートが本当の問題を検出します:スキーマドリフト検出はマイグレーション漏れのORM変更をフラグし、セキュリティ強制は検証を脅威モデルに紐付け、スコープ削減検出はプランナーが要件を暗黙的に落とすのを防止します。
|
|
77
|
+
|
|
78
|
+
### v1.32.0 ハイライト
|
|
79
|
+
|
|
80
|
+
- **STATE.md整合性ゲート** — `state validate`がSTATE.mdとファイルシステムの差分を検出、`state sync`が実際のプロジェクト状態から再構築
|
|
81
|
+
- **`--to N`フラグ** — 自律実行を特定のフェーズ完了後に停止
|
|
82
|
+
- **リサーチゲート** — RESEARCH.mdに未解決の質問がある場合、計画をブロック
|
|
83
|
+
- **検証マイルストーンスコープフィルタリング** — 後のフェーズで対処されるギャップは「ギャップ」ではなく「延期」としてマーク
|
|
84
|
+
- **読み取り後編集ガード** — 非Claudeランタイムでの無限リトライループを防止するアドバイザリーフック
|
|
85
|
+
- **コンテキスト削減** — Markdownのトランケーションとキャッシュフレンドリーなプロンプト順序でトークン使用量を削減
|
|
86
|
+
- **4つの新ランタイム** — Trae、Kilo、Augment、Cline(合計12ランタイム)
|
|
87
|
+
|
|
78
88
|
---
|
|
79
89
|
|
|
80
90
|
## はじめに
|
|
@@ -84,18 +94,20 @@ npx get-shit-done-cc@latest
|
|
|
84
94
|
```
|
|
85
95
|
|
|
86
96
|
インストーラーが以下の選択を求めます:
|
|
87
|
-
1. **ランタイム** — Claude Code、OpenCode、Gemini、Codex、Copilot、Cursor、Antigravity、またはすべて(インタラクティブ複数選択 — 1回のインストールセッションで複数のランタイムを選択可能)
|
|
97
|
+
1. **ランタイム** — Claude Code、OpenCode、Gemini、Kilo、Codex、Copilot、Cursor、Windsurf、Antigravity、Augment、Trae、Cline、またはすべて(インタラクティブ複数選択 — 1回のインストールセッションで複数のランタイムを選択可能)
|
|
88
98
|
2. **インストール先** — グローバル(全プロジェクト)またはローカル(現在のプロジェクトのみ)
|
|
89
99
|
|
|
90
100
|
確認方法:
|
|
91
|
-
- Claude Code / Gemini: `/gsd
|
|
92
|
-
- OpenCode: `/gsd-help`
|
|
101
|
+
- Claude Code / Gemini / Copilot / Antigravity: `/gsd-help`
|
|
102
|
+
- OpenCode / Kilo / Augment / Trae: `/gsd-help`
|
|
93
103
|
- Codex: `$gsd-help`
|
|
94
|
-
-
|
|
95
|
-
- Antigravity: `/gsd:help`
|
|
104
|
+
- Cline: GSDは`.clinerules`経由でインストール — `.clinerules`の存在を確認
|
|
96
105
|
|
|
97
106
|
> [!NOTE]
|
|
98
|
-
> Codex
|
|
107
|
+
> Claude Code 2.1.88+とCodexはスキル(`skills/gsd-*/SKILL.md`)としてインストールされます。Clineは`.clinerules`を使用します。インストーラーがすべての形式を自動的に処理します。
|
|
108
|
+
|
|
109
|
+
> [!TIP]
|
|
110
|
+
> ソースベースのインストールやnpmが利用できない環境については、**[docs/manual-update.md](docs/manual-update.md)**を参照してください。
|
|
99
111
|
|
|
100
112
|
### 最新の状態を保つ
|
|
101
113
|
|
|
@@ -113,17 +125,21 @@ npx get-shit-done-cc@latest
|
|
|
113
125
|
npx get-shit-done-cc --claude --global # ~/.claude/ にインストール
|
|
114
126
|
npx get-shit-done-cc --claude --local # ./.claude/ にインストール
|
|
115
127
|
|
|
116
|
-
# OpenCode
|
|
128
|
+
# OpenCode
|
|
117
129
|
npx get-shit-done-cc --opencode --global # ~/.config/opencode/ にインストール
|
|
118
130
|
|
|
119
131
|
# Gemini CLI
|
|
120
132
|
npx get-shit-done-cc --gemini --global # ~/.gemini/ にインストール
|
|
121
133
|
|
|
122
|
-
#
|
|
134
|
+
# Kilo
|
|
135
|
+
npx get-shit-done-cc --kilo --global # ~/.config/kilo/ にインストール
|
|
136
|
+
npx get-shit-done-cc --kilo --local # ./.kilo/ にインストール
|
|
137
|
+
|
|
138
|
+
# Codex
|
|
123
139
|
npx get-shit-done-cc --codex --global # ~/.codex/ にインストール
|
|
124
140
|
npx get-shit-done-cc --codex --local # ./.codex/ にインストール
|
|
125
141
|
|
|
126
|
-
# Copilot
|
|
142
|
+
# Copilot
|
|
127
143
|
npx get-shit-done-cc --copilot --global # ~/.github/ にインストール
|
|
128
144
|
npx get-shit-done-cc --copilot --local # ./.github/ にインストール
|
|
129
145
|
|
|
@@ -131,16 +147,28 @@ npx get-shit-done-cc --copilot --local # ./.github/ にインストール
|
|
|
131
147
|
npx get-shit-done-cc --cursor --global # ~/.cursor/ にインストール
|
|
132
148
|
npx get-shit-done-cc --cursor --local # ./.cursor/ にインストール
|
|
133
149
|
|
|
134
|
-
# Antigravity
|
|
150
|
+
# Antigravity
|
|
135
151
|
npx get-shit-done-cc --antigravity --global # ~/.gemini/antigravity/ にインストール
|
|
136
152
|
npx get-shit-done-cc --antigravity --local # ./.agent/ にインストール
|
|
137
153
|
|
|
154
|
+
# Augment
|
|
155
|
+
npx get-shit-done-cc --augment --global # ~/.augment/ にインストール
|
|
156
|
+
npx get-shit-done-cc --augment --local # ./.augment/ にインストール
|
|
157
|
+
|
|
158
|
+
# Trae
|
|
159
|
+
npx get-shit-done-cc --trae --global # ~/.trae/ にインストール
|
|
160
|
+
npx get-shit-done-cc --trae --local # ./.trae/ にインストール
|
|
161
|
+
|
|
162
|
+
# Cline
|
|
163
|
+
npx get-shit-done-cc --cline --global # ~/.cline/ にインストール
|
|
164
|
+
npx get-shit-done-cc --cline --local # ./.clinerules にインストール
|
|
165
|
+
|
|
138
166
|
# 全ランタイム
|
|
139
167
|
npx get-shit-done-cc --all --global # すべてのディレクトリにインストール
|
|
140
168
|
```
|
|
141
169
|
|
|
142
170
|
`--global`(`-g`)または `--local`(`-l`)でインストール先の質問をスキップできます。
|
|
143
|
-
`--claude`、`--opencode`、`--gemini`、`--codex`、`--copilot`、`--cursor`、`--antigravity`、または `--all` でランタイムの質問をスキップできます。
|
|
171
|
+
`--claude`、`--opencode`、`--gemini`、`--kilo`、`--codex`、`--copilot`、`--cursor`、`--windsurf`、`--antigravity`、`--augment`、`--trae`、`--cline`、または `--all` でランタイムの質問をスキップできます。
|
|
144
172
|
|
|
145
173
|
</details>
|
|
146
174
|
|
|
@@ -207,12 +235,12 @@ claude --dangerously-skip-permissions
|
|
|
207
235
|
|
|
208
236
|
## 仕組み
|
|
209
237
|
|
|
210
|
-
> **既存のコードがある場合は?** まず `/gsd
|
|
238
|
+
> **既存のコードがある場合は?** まず `/gsd-map-codebase` を実行してください。並列エージェントが起動し、スタック、アーキテクチャ、規約、懸念点を分析します。その後 `/gsd-new-project` がコードベースを把握した状態で動作し、質問は追加する内容に焦点を当て、計画時にはパターンが自動的に読み込まれます。
|
|
211
239
|
|
|
212
240
|
### 1. プロジェクトの初期化
|
|
213
241
|
|
|
214
242
|
```
|
|
215
|
-
/gsd
|
|
243
|
+
/gsd-new-project
|
|
216
244
|
```
|
|
217
245
|
|
|
218
246
|
1つのコマンド、1つのフロー。システムが以下を行います:
|
|
@@ -231,7 +259,7 @@ claude --dangerously-skip-permissions
|
|
|
231
259
|
### 2. フェーズの議論
|
|
232
260
|
|
|
233
261
|
```
|
|
234
|
-
/gsd
|
|
262
|
+
/gsd-discuss-phase 1
|
|
235
263
|
```
|
|
236
264
|
|
|
237
265
|
**ここで実装の方向性を決めます。**
|
|
@@ -254,14 +282,14 @@ claude --dangerously-skip-permissions
|
|
|
254
282
|
|
|
255
283
|
**作成されるファイル:** `{phase_num}-CONTEXT.md`
|
|
256
284
|
|
|
257
|
-
> **前提モード:** 質問よりもコードベース分析を優先したい場合は、`/gsd
|
|
285
|
+
> **前提モード:** 質問よりもコードベース分析を優先したい場合は、`/gsd-settings` で `workflow.discuss_mode` を `assumptions` に設定してください。システムがコードを読み、何をなぜそうするかを提示し、間違っている部分だけ修正を求めます。詳しくは[ディスカスモード](docs/ja-JP/workflow-discuss-mode.md)をご覧ください。
|
|
258
286
|
|
|
259
287
|
---
|
|
260
288
|
|
|
261
289
|
### 3. フェーズの計画
|
|
262
290
|
|
|
263
291
|
```
|
|
264
|
-
/gsd
|
|
292
|
+
/gsd-plan-phase 1
|
|
265
293
|
```
|
|
266
294
|
|
|
267
295
|
システムが以下を行います:
|
|
@@ -279,7 +307,7 @@ claude --dangerously-skip-permissions
|
|
|
279
307
|
### 4. フェーズの実行
|
|
280
308
|
|
|
281
309
|
```
|
|
282
|
-
/gsd
|
|
310
|
+
/gsd-execute-phase 1
|
|
283
311
|
```
|
|
284
312
|
|
|
285
313
|
システムが以下を行います:
|
|
@@ -330,7 +358,7 @@ claude --dangerously-skip-permissions
|
|
|
330
358
|
### 5. 作業の検証
|
|
331
359
|
|
|
332
360
|
```
|
|
333
|
-
/gsd
|
|
361
|
+
/gsd-verify-work 1
|
|
334
362
|
```
|
|
335
363
|
|
|
336
364
|
**ここで実際に動作するか確認します。**
|
|
@@ -344,7 +372,7 @@ claude --dangerously-skip-permissions
|
|
|
344
372
|
3. **障害を自動診断** — デバッグエージェントが起動し根本原因を特定
|
|
345
373
|
4. **検証済みの修正プランを作成** — 即座に再実行可能
|
|
346
374
|
|
|
347
|
-
すべてパスすれば次に進みます。何か壊れていれば、手動でデバッグする必要はありません — 作成された修正プランで `/gsd
|
|
375
|
+
すべてパスすれば次に進みます。何か壊れていれば、手動でデバッグする必要はありません — 作成された修正プランで `/gsd-execute-phase` を再度実行するだけです。
|
|
348
376
|
|
|
349
377
|
**作成されるファイル:** `{phase_num}-UAT.md`、問題が見つかった場合は修正プラン
|
|
350
378
|
|
|
@@ -353,38 +381,38 @@ claude --dangerously-skip-permissions
|
|
|
353
381
|
### 6. 繰り返し → シップ → 完了 → 次のマイルストーン
|
|
354
382
|
|
|
355
383
|
```
|
|
356
|
-
/gsd
|
|
357
|
-
/gsd
|
|
358
|
-
/gsd
|
|
359
|
-
/gsd
|
|
360
|
-
/gsd
|
|
384
|
+
/gsd-discuss-phase 2
|
|
385
|
+
/gsd-plan-phase 2
|
|
386
|
+
/gsd-execute-phase 2
|
|
387
|
+
/gsd-verify-work 2
|
|
388
|
+
/gsd-ship 2 # 検証済みの作業からPRを作成
|
|
361
389
|
...
|
|
362
|
-
/gsd
|
|
363
|
-
/gsd
|
|
390
|
+
/gsd-complete-milestone
|
|
391
|
+
/gsd-new-milestone
|
|
364
392
|
```
|
|
365
393
|
|
|
366
394
|
またはGSDに次のステップを自動判定させます:
|
|
367
395
|
|
|
368
396
|
```
|
|
369
|
-
/gsd
|
|
397
|
+
/gsd-next # 次のステップを自動検出して実行
|
|
370
398
|
```
|
|
371
399
|
|
|
372
400
|
**discuss → plan → execute → verify → ship** のループをマイルストーン完了まで繰り返します。
|
|
373
401
|
|
|
374
|
-
ディスカッション中のインプットを速くしたい場合は、`/gsd
|
|
402
|
+
ディスカッション中のインプットを速くしたい場合は、`/gsd-discuss-phase <n> --batch` で1つずつではなく小さなグループにまとめた質問に一括で回答できます。`--chain` を使うと、ディスカッションからプラン+実行まで途中で止まらずに自動チェインできます。
|
|
375
403
|
|
|
376
404
|
各フェーズであなたのインプット(discuss)、適切なリサーチ(plan)、クリーンな実行(execute)、人間による検証(verify)が行われます。コンテキストは常にフレッシュ。品質は常に高い。
|
|
377
405
|
|
|
378
|
-
すべてのフェーズが完了したら、`/gsd
|
|
406
|
+
すべてのフェーズが完了したら、`/gsd-complete-milestone` でマイルストーンをアーカイブしリリースをタグ付けします。
|
|
379
407
|
|
|
380
|
-
次に `/gsd
|
|
408
|
+
次に `/gsd-new-milestone` で次のバージョンを開始します — `new-project` と同じフローですが既存のコードベース向けです。次に構築したいものを説明し、システムがドメインを調査し、要件をスコーピングし、新しいロードマップを作成します。各マイルストーンはクリーンなサイクルです:定義 → 構築 → シップ。
|
|
381
409
|
|
|
382
410
|
---
|
|
383
411
|
|
|
384
412
|
### クイックモード
|
|
385
413
|
|
|
386
414
|
```
|
|
387
|
-
/gsd
|
|
415
|
+
/gsd-quick
|
|
388
416
|
```
|
|
389
417
|
|
|
390
418
|
**フル計画が不要なアドホックタスク向け。**
|
|
@@ -399,12 +427,14 @@ claude --dangerously-skip-permissions
|
|
|
399
427
|
|
|
400
428
|
**`--research` フラグ:** 計画前にフォーカスされたリサーチャーを起動。実装アプローチ、ライブラリの選択肢、落とし穴を調査します。タスクへのアプローチが不明な場合に使用してください。
|
|
401
429
|
|
|
402
|
-
**`--full` フラグ:**
|
|
430
|
+
**`--full` フラグ:** 全フェーズを有効化 — ディスカッション + リサーチ + プランチェック + 検証。クイックタスク形式のフルGSDパイプライン。
|
|
431
|
+
|
|
432
|
+
**`--validate` フラグ:** プランチェック + 実行後の検証のみを有効化(以前の `--full` の動作)。
|
|
403
433
|
|
|
404
|
-
フラグは組み合わせ可能:`--discuss --research --
|
|
434
|
+
フラグは組み合わせ可能:`--discuss --research --validate` でディスカッション + リサーチ + プランチェック + 検証が行われます。
|
|
405
435
|
|
|
406
436
|
```
|
|
407
|
-
/gsd
|
|
437
|
+
/gsd-quick
|
|
408
438
|
> What do you want to do? "Add dark mode toggle to settings"
|
|
409
439
|
```
|
|
410
440
|
|
|
@@ -506,117 +536,117 @@ lmn012o feat(08-02): create registration endpoint
|
|
|
506
536
|
|
|
507
537
|
| コマンド | 説明 |
|
|
508
538
|
|---------|--------------|
|
|
509
|
-
| `/gsd
|
|
510
|
-
| `/gsd
|
|
511
|
-
| `/gsd
|
|
512
|
-
| `/gsd
|
|
513
|
-
| `/gsd
|
|
514
|
-
| `/gsd
|
|
515
|
-
| `/gsd
|
|
516
|
-
| `/gsd
|
|
517
|
-
| `/gsd
|
|
518
|
-
| `/gsd
|
|
519
|
-
| `/gsd
|
|
520
|
-
| `/gsd
|
|
521
|
-
| `/gsd
|
|
539
|
+
| `/gsd-new-project [--auto]` | フル初期化:質問 → リサーチ → 要件定義 → ロードマップ |
|
|
540
|
+
| `/gsd-discuss-phase [N] [--auto] [--analyze] [--chain]` | 計画前に実装の決定事項をキャプチャ(`--analyze` でトレードオフ分析を追加、`--chain` でプラン+実行へ自動チェイン) |
|
|
541
|
+
| `/gsd-plan-phase [N] [--auto] [--reviews]` | フェーズのリサーチ + プラン + 検証(`--reviews` でコードベースレビューの発見事項を読み込み) |
|
|
542
|
+
| `/gsd-execute-phase <N>` | 全プランを並列ウェーブで実行し、完了時に検証 |
|
|
543
|
+
| `/gsd-verify-work [N]` | 手動ユーザー受入テスト ¹ |
|
|
544
|
+
| `/gsd-ship [N] [--draft]` | 検証済みのフェーズ作業から自動生成された本文付きのPRを作成 |
|
|
545
|
+
| `/gsd-next` | 次の論理的なワークフローステップに自動的に進む |
|
|
546
|
+
| `/gsd-fast <text>` | インラインの軽微タスク — 計画を完全にスキップし即座に実行 |
|
|
547
|
+
| `/gsd-audit-milestone` | マイルストーンが完了の定義を達成したか検証 |
|
|
548
|
+
| `/gsd-complete-milestone` | マイルストーンをアーカイブし、リリースをタグ付け |
|
|
549
|
+
| `/gsd-new-milestone [name]` | 次のバージョンを開始:質問 → リサーチ → 要件定義 → ロードマップ |
|
|
550
|
+
| `/gsd-forensics [desc]` | 失敗したワークフロー実行の事後分析(停止ループ、欠落成果物、git異常の診断) |
|
|
551
|
+
| `/gsd-milestone-summary [version]` | チームオンボーディングとレビュー向けの包括的なプロジェクトサマリーを生成 |
|
|
522
552
|
|
|
523
553
|
### ワークストリーム
|
|
524
554
|
|
|
525
555
|
| コマンド | 説明 |
|
|
526
556
|
|---------|--------------|
|
|
527
|
-
| `/gsd
|
|
528
|
-
| `/gsd
|
|
529
|
-
| `/gsd
|
|
530
|
-
| `/gsd
|
|
557
|
+
| `/gsd-workstreams list` | 全ワークストリームとそのステータスを表示 |
|
|
558
|
+
| `/gsd-workstreams create <name>` | 並列マイルストーン作業用の名前空間付きワークストリームを作成 |
|
|
559
|
+
| `/gsd-workstreams switch <name>` | アクティブなワークストリームを切り替え |
|
|
560
|
+
| `/gsd-workstreams complete <name>` | ワークストリームを完了しマージ |
|
|
531
561
|
|
|
532
562
|
### マルチプロジェクトワークスペース
|
|
533
563
|
|
|
534
564
|
| コマンド | 説明 |
|
|
535
565
|
|---------|--------------|
|
|
536
|
-
| `/gsd
|
|
537
|
-
| `/gsd
|
|
538
|
-
| `/gsd
|
|
566
|
+
| `/gsd-new-workspace` | リポジトリのコピー(worktreeまたはクローン)で隔離されたワークスペースを作成 |
|
|
567
|
+
| `/gsd-list-workspaces` | すべてのGSDワークスペースとそのステータスを表示 |
|
|
568
|
+
| `/gsd-remove-workspace` | ワークスペースを削除しworktreeをクリーンアップ |
|
|
539
569
|
|
|
540
570
|
### UIデザイン
|
|
541
571
|
|
|
542
572
|
| コマンド | 説明 |
|
|
543
573
|
|---------|--------------|
|
|
544
|
-
| `/gsd
|
|
545
|
-
| `/gsd
|
|
574
|
+
| `/gsd-ui-phase [N]` | フロントエンドフェーズ用のUIデザイン契約(UI-SPEC.md)を生成 |
|
|
575
|
+
| `/gsd-ui-review [N]` | 実装済みフロントエンドコードの6つの柱によるビジュアル監査(遡及的) |
|
|
546
576
|
|
|
547
577
|
### ナビゲーション
|
|
548
578
|
|
|
549
579
|
| コマンド | 説明 |
|
|
550
580
|
|---------|--------------|
|
|
551
|
-
| `/gsd
|
|
552
|
-
| `/gsd
|
|
553
|
-
| `/gsd
|
|
554
|
-
| `/gsd
|
|
555
|
-
| `/gsd
|
|
556
|
-
| `/gsd
|
|
581
|
+
| `/gsd-progress` | 今どこにいる?次は何? |
|
|
582
|
+
| `/gsd-next` | 状態を自動検出し次のステップを実行 |
|
|
583
|
+
| `/gsd-help` | 全コマンドと使い方ガイドを表示 |
|
|
584
|
+
| `/gsd-update` | チェンジログプレビュー付きでGSDをアップデート |
|
|
585
|
+
| `/gsd-join-discord` | GSD Discordコミュニティに参加 |
|
|
586
|
+
| `/gsd-manager` | 複数フェーズ管理用のインタラクティブコマンドセンター |
|
|
557
587
|
|
|
558
588
|
### ブラウンフィールド
|
|
559
589
|
|
|
560
590
|
| コマンド | 説明 |
|
|
561
591
|
|---------|--------------|
|
|
562
|
-
| `/gsd
|
|
592
|
+
| `/gsd-map-codebase [area]` | new-project前に既存のコードベースを分析 |
|
|
563
593
|
|
|
564
594
|
### フェーズ管理
|
|
565
595
|
|
|
566
596
|
| コマンド | 説明 |
|
|
567
597
|
|---------|--------------|
|
|
568
|
-
| `/gsd
|
|
569
|
-
| `/gsd
|
|
570
|
-
| `/gsd
|
|
571
|
-
| `/gsd
|
|
572
|
-
| `/gsd
|
|
598
|
+
| `/gsd-add-phase` | ロードマップにフェーズを追加 |
|
|
599
|
+
| `/gsd-insert-phase [N]` | フェーズ間に緊急作業を挿入 |
|
|
600
|
+
| `/gsd-remove-phase [N]` | 将来のフェーズを削除し番号を振り直し |
|
|
601
|
+
| `/gsd-list-phase-assumptions [N]` | 計画前にClaudeの意図するアプローチを確認 |
|
|
602
|
+
| `/gsd-plan-milestone-gaps` | 監査で見つかったギャップを埋めるフェーズを作成 |
|
|
573
603
|
|
|
574
604
|
### セッション
|
|
575
605
|
|
|
576
606
|
| コマンド | 説明 |
|
|
577
607
|
|---------|--------------|
|
|
578
|
-
| `/gsd
|
|
579
|
-
| `/gsd
|
|
580
|
-
| `/gsd
|
|
608
|
+
| `/gsd-pause-work` | フェーズ途中で停止する際の引き継ぎを作成(HANDOFF.jsonを書き込み) |
|
|
609
|
+
| `/gsd-resume-work` | 前回のセッションから復元 |
|
|
610
|
+
| `/gsd-session-report` | 実行した作業と結果のセッションサマリーを生成 |
|
|
581
611
|
|
|
582
612
|
### ワークストリーム
|
|
583
613
|
|
|
584
614
|
| コマンド | 説明 |
|
|
585
615
|
|---------|--------------|
|
|
586
|
-
| `/gsd
|
|
616
|
+
| `/gsd-workstreams` | 並列ワークストリームを管理(list、create、switch、status、progress、complete) |
|
|
587
617
|
|
|
588
618
|
### コード品質
|
|
589
619
|
|
|
590
620
|
| コマンド | 説明 |
|
|
591
621
|
|---------|--------------|
|
|
592
|
-
| `/gsd
|
|
593
|
-
| `/gsd
|
|
594
|
-
| `/gsd
|
|
622
|
+
| `/gsd-review` | 現在のフェーズまたはブランチのクロスAIピアレビュー |
|
|
623
|
+
| `/gsd-pr-branch` | `.planning/` コミットをフィルタリングしたクリーンなPRブランチを作成 |
|
|
624
|
+
| `/gsd-audit-uat` | 検証負債を監査 — UATが未実施のフェーズを検出 |
|
|
595
625
|
|
|
596
626
|
### バックログ & スレッド
|
|
597
627
|
|
|
598
628
|
| コマンド | 説明 |
|
|
599
629
|
|---------|--------------|
|
|
600
|
-
| `/gsd
|
|
601
|
-
| `/gsd
|
|
602
|
-
| `/gsd
|
|
603
|
-
| `/gsd
|
|
630
|
+
| `/gsd-plant-seed <idea>` | トリガー条件付きの将来志向のアイデアをキャプチャ — 適切なマイルストーンで浮上 |
|
|
631
|
+
| `/gsd-add-backlog <desc>` | バックログのパーキングロットにアイデアを追加(999.xナンバリング、アクティブシーケンス外) |
|
|
632
|
+
| `/gsd-review-backlog` | バックログ項目をレビューし、アクティブマイルストーンに昇格またはstaleエントリを削除 |
|
|
633
|
+
| `/gsd-thread [name]` | 永続コンテキストスレッド — 複数セッションにまたがる作業用の軽量クロスセッション知識 |
|
|
604
634
|
|
|
605
635
|
### ユーティリティ
|
|
606
636
|
|
|
607
637
|
| コマンド | 説明 |
|
|
608
638
|
|---------|--------------|
|
|
609
|
-
| `/gsd
|
|
610
|
-
| `/gsd
|
|
611
|
-
| `/gsd
|
|
612
|
-
| `/gsd
|
|
613
|
-
| `/gsd
|
|
614
|
-
| `/gsd
|
|
615
|
-
| `/gsd
|
|
616
|
-
| `/gsd
|
|
617
|
-
| `/gsd
|
|
618
|
-
| `/gsd
|
|
619
|
-
| `/gsd
|
|
639
|
+
| `/gsd-settings` | モデルプロファイルとワークフローエージェントを設定 |
|
|
640
|
+
| `/gsd-set-profile <profile>` | モデルプロファイルを切り替え(quality/balanced/budget/inherit) |
|
|
641
|
+
| `/gsd-add-todo [desc]` | 後で取り組むアイデアをキャプチャ |
|
|
642
|
+
| `/gsd-check-todos` | 保留中のtodoを一覧表示 |
|
|
643
|
+
| `/gsd-debug [desc]` | 永続状態を持つ体系的デバッグ |
|
|
644
|
+
| `/gsd-do <text>` | フリーフォームテキストを適切なGSDコマンドに自動ルーティング |
|
|
645
|
+
| `/gsd-note <text>` | ゼロフリクションのアイデアキャプチャ — ノートの追加、一覧、todoへの昇格 |
|
|
646
|
+
| `/gsd-quick [--full] [--discuss] [--research]` | GSDの保証付きでアドホックタスクを実行(`--full` で全フェーズを有効化、`--discuss` で事前にコンテキストを収集、`--research` で計画前にアプローチを調査) |
|
|
647
|
+
| `/gsd-health [--repair]` | `.planning/` ディレクトリの整合性を検証、`--repair` で自動修復 |
|
|
648
|
+
| `/gsd-stats` | プロジェクト統計を表示 — フェーズ、プラン、要件、gitメトリクス |
|
|
649
|
+
| `/gsd-profile-user [--questionnaire] [--refresh]` | セッション分析から開発者行動プロファイルを生成し、パーソナライズされた応答を提供 |
|
|
620
650
|
|
|
621
651
|
<sup>¹ Redditユーザー OracleGreyBeard による貢献</sup>
|
|
622
652
|
|
|
@@ -624,7 +654,7 @@ lmn012o feat(08-02): create registration endpoint
|
|
|
624
654
|
|
|
625
655
|
## 設定
|
|
626
656
|
|
|
627
|
-
GSDはプロジェクト設定を `.planning/config.json` に保存します。`/gsd
|
|
657
|
+
GSDはプロジェクト設定を `.planning/config.json` に保存します。`/gsd-new-project` 実行時に設定するか、後から `/gsd-settings` で更新できます。完全な設定スキーマ、ワークフロートグル、gitブランチオプション、エージェントごとのモデル内訳については、[ユーザーガイド](docs/ja-JP/USER-GUIDE.md#configuration-reference)をご覧ください。
|
|
628
658
|
|
|
629
659
|
### コア設定
|
|
630
660
|
|
|
@@ -646,12 +676,12 @@ GSDはプロジェクト設定を `.planning/config.json` に保存します。`
|
|
|
646
676
|
|
|
647
677
|
プロファイルの切り替え:
|
|
648
678
|
```
|
|
649
|
-
/gsd
|
|
679
|
+
/gsd-set-profile budget
|
|
650
680
|
```
|
|
651
681
|
|
|
652
682
|
非Anthropicプロバイダー(OpenRouter、ローカルモデル)を使用する場合や、現在のランタイムのモデル選択に従う場合(例:OpenCode `/model`)は `inherit` を使用してください。
|
|
653
683
|
|
|
654
|
-
または `/gsd
|
|
684
|
+
または `/gsd-settings` で設定できます。
|
|
655
685
|
|
|
656
686
|
### ワークフローエージェント
|
|
657
687
|
|
|
@@ -668,9 +698,9 @@ GSDはプロジェクト設定を `.planning/config.json` に保存します。`
|
|
|
668
698
|
| `workflow.skip_discuss` | `false` | 自律モードでdiscuss-phaseをスキップ |
|
|
669
699
|
| `workflow.text_mode` | `false` | リモートセッション用のテキスト専用モード(TUIメニューなし) |
|
|
670
700
|
|
|
671
|
-
これらのトグルには `/gsd
|
|
672
|
-
- `/gsd
|
|
673
|
-
- `/gsd
|
|
701
|
+
これらのトグルには `/gsd-settings` を使用するか、呼び出し時にオーバーライドできます:
|
|
702
|
+
- `/gsd-plan-phase --skip-research`
|
|
703
|
+
- `/gsd-plan-phase --skip-verify`
|
|
674
704
|
|
|
675
705
|
### 実行
|
|
676
706
|
|
|
@@ -752,7 +782,7 @@ GSDのコードベースマッピングおよび分析コマンドは、プロ
|
|
|
752
782
|
- Codexの場合、`~/.codex/skills/gsd-*/SKILL.md`(グローバル)または `./.codex/skills/gsd-*/SKILL.md`(ローカル)にスキルが存在するか確認してください
|
|
753
783
|
|
|
754
784
|
**コマンドが期待通りに動作しない?**
|
|
755
|
-
- `/gsd
|
|
785
|
+
- `/gsd-help` を実行してインストールを確認してください
|
|
756
786
|
- `npx get-shit-done-cc` を再実行して再インストールしてください
|
|
757
787
|
|
|
758
788
|
**最新バージョンへのアップデート?**
|
|
@@ -777,19 +807,23 @@ GSDを完全に削除するには:
|
|
|
777
807
|
npx get-shit-done-cc --claude --global --uninstall
|
|
778
808
|
npx get-shit-done-cc --opencode --global --uninstall
|
|
779
809
|
npx get-shit-done-cc --gemini --global --uninstall
|
|
810
|
+
npx get-shit-done-cc --kilo --global --uninstall
|
|
780
811
|
npx get-shit-done-cc --codex --global --uninstall
|
|
781
812
|
npx get-shit-done-cc --copilot --global --uninstall
|
|
782
813
|
npx get-shit-done-cc --cursor --global --uninstall
|
|
783
814
|
npx get-shit-done-cc --antigravity --global --uninstall
|
|
815
|
+
npx get-shit-done-cc --trae --global --uninstall
|
|
784
816
|
|
|
785
817
|
# ローカルインストール(現在のプロジェクト)
|
|
786
818
|
npx get-shit-done-cc --claude --local --uninstall
|
|
787
819
|
npx get-shit-done-cc --opencode --local --uninstall
|
|
788
820
|
npx get-shit-done-cc --gemini --local --uninstall
|
|
821
|
+
npx get-shit-done-cc --kilo --local --uninstall
|
|
789
822
|
npx get-shit-done-cc --codex --local --uninstall
|
|
790
823
|
npx get-shit-done-cc --copilot --local --uninstall
|
|
791
824
|
npx get-shit-done-cc --cursor --local --uninstall
|
|
792
825
|
npx get-shit-done-cc --antigravity --local --uninstall
|
|
826
|
+
npx get-shit-done-cc --trae --local --uninstall
|
|
793
827
|
```
|
|
794
828
|
|
|
795
829
|
これにより、他の設定を保持しながら、すべてのGSDコマンド、エージェント、フック、設定が削除されます。
|
|
@@ -798,7 +832,7 @@ npx get-shit-done-cc --antigravity --local --uninstall
|
|
|
798
832
|
|
|
799
833
|
## コミュニティポート
|
|
800
834
|
|
|
801
|
-
OpenCode、Gemini CLI、Codexは `npx get-shit-done-cc` でネイティブサポートされています。
|
|
835
|
+
OpenCode、Gemini CLI、Kilo、Codexは `npx get-shit-done-cc` でネイティブサポートされています。
|
|
802
836
|
|
|
803
837
|
以下のコミュニティポートがマルチランタイムサポートの先駆けとなりました:
|
|
804
838
|
|