From yodogawa
ドメインモデルを Mermaid 図(Context Map・Aggregate 構造)として可視化する。ドメインモデル定義後、関係性を図で確認する際に使用。
How this skill is triggered — by the user, by Claude, or both
Slash command
/yodogawa:a-005-create-domain-diagramThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- ドメインモデルドキュメント(`01-domain-model.md`)を基に、視覚的なダイアグラムを作成する。
01-domain-model.md)を基に、視覚的なダイアグラムを作成する。docs/project/03-domain/01-domain-model.md が作成されていること(/a-004-define-domain-model 実行済み)。ls -la docs/project/03-domain/01-domain-model.md 2>/dev/null || echo "ファイルが存在しません"
未作成の場合、/a-004-define-domain-model の実行を促す。
docs/project/03-domain/01-domain-model.md から以下を抽出し、構成案を提示する:
## Context Map セクションに Mermaid 図を追加する。スタイル定義と記述テンプレートは examples/mermaid-templates.md を参照。
ユーザー確認の上、以下を追加作成する:
テンプレートは examples/mermaid-templates.md を参照。
作成した図を提示し、関係性の正確性、色分けの適切性、読みやすさを確認する。質問例は reference/structure-check.md を参照。フィードバックに応じてレイアウト(TD/LR)や配置を調整する。
grep "\`\`\`mermaid" docs/project/03-domain/01-domain-model.md \
&& grep "## Context Map" docs/project/03-domain/01-domain-model.md \
&& echo "OK" || echo "MISSING SECTION"
詳細チェックリストは reference/structure-check.md を参照。
git add docs/project/03-domain/01-domain-model.md
git commit -m "docs: ドメインモデル図(Context Map)の追加"
詳細は reference/structure-check.md を参照。
docs/project/03-domain/01-domain-model.md に Context Map 図が追加されている。/a-004-define-domain-model に戻って定義を補完しましょう。」Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub tkysi-mi/yodogawa --plugin yodogawa