ワンクリックで
ddc-status
Show the current state of a DDC knowledge base — entity counts, coverage, recent changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Show the current state of a DDC knowledge base — entity counts, coverage, recent changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Demo skill for workshop presentations. Simulates DDC cycle responses for pre-created scenarios. Use /ddc-demo <cycle-number> to show a specific cycle's conversation.
Run a full DDC (Demand-Driven Context) cycle — give the agent a problem, let it fail, fill gaps, curate entities.
Add a single entity to the DDC knowledge base from a description or rough notes.
SOC 職業分類に基づく
| name | ddc-status |
| description | Show the current state of a DDC knowledge base — entity counts, coverage, recent changes. |
| allowed-tools | Read, Glob, Grep, Bash |
Report on the current state of the DDC knowledge base.
Entity counts by type — count .md files (excluding .gitkeep) in each entities/ subfolder:
find . -path "*/domain-knowledge/entities/*/*.md" | sed 's|.*/entities/||' | cut -d'/' -f1 | sort | uniq -c | sort -rnTotal entities: !find . -path "*/domain-knowledge/entities/*/*.md" | wc -l
Recent changes: !git log --oneline -10 2>/dev/null || echo "not a git repo"
Cycle logs: !ls ddc-cycle-logs/ 2>/dev/null || find . -name "cycle-*.md" 2>/dev/null || echo "none found"
Empty areas — which entity type folders have zero entities? These are knowledge gaps.
Relationship density — how many entities reference other entities in their frontmatter?
Present as a concise dashboard. Highlight areas that need attention (empty folders, low coverage).