بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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).