A Claude Code plugin marketplace for the dmon family of repos (dcli, dmon-core, dmon-meko,
dmon-websearch, …).
| Plugin | What it does |
|---|---|
dmons |
Scaffolds the OpenSpec Apply Workflow into a repo — generates a tailored orchestrator CLAUDE.md plus worker and reviewer subagents by auditing the repo's openspec specs and changes. |
From any Claude Code session:
# Add this marketplace (local path or git remote)
/plugin marketplace add /Users/emmz/github/emmz/dmon-dev
# or, once pushed: /plugin marketplace add <git-owner>/<repo>
# Install the plugin
/plugin install dmons@dmon-dev
Then, in a target repo that already has openspec/ set up:
/dmons:scaffold
The skill audits the repo's specs and changes and writes CLAUDE.md, .claude/agents/worker.md, and
.claude/agents/reviewer.md, each tailored to that project's tech stack, build gates, and binding
decisions.
dmon-dev/
├── .claude-plugin/
│ └── marketplace.json # marketplace manifest (lists plugins)
└── plugins/
└── dmons/
├── .claude-plugin/
│ └── plugin.json # plugin manifest
├── skills/
│ └── scaffold/
│ ├── SKILL.md # the generator
│ └── templates/ # annotated skeletons it fills
└── README.md