ancoder-skill-cli 0.8.0 → 0.9.0
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.md
CHANGED
|
@@ -41,6 +41,8 @@ go build -o bin/skill-cli .
|
|
|
41
41
|
| `skill-cli test <path>` | Check that a skill has trigger docs, contract, and eval coverage |
|
|
42
42
|
| `skill-cli verify <path> [--suite smoke]` | Run a machine-readable verification suite end-to-end |
|
|
43
43
|
| `skill-cli generate <name> --desc "..."` | Generate a complete skill using Claude CLI (create → implement → verify) |
|
|
44
|
+
| `skill-cli install [--no-omc]` | Install ECC components into `~/.claude/` (includes OMC by default) |
|
|
45
|
+
| `skill-cli install --component omc` | Install only the bundled OMC multi-agent orchestration layer |
|
|
44
46
|
|
|
45
47
|
## Machine-Readable Skill Layout
|
|
46
48
|
|
|
@@ -199,6 +201,57 @@ During the loop's verify phase, a separate Claude executor is spawned to run the
|
|
|
199
201
|
|
|
200
202
|
This mirrors OMC's principle: "Keep authoring and review as separate passes."
|
|
201
203
|
|
|
204
|
+
## oh-my-claudecode (OMC) Integration
|
|
205
|
+
|
|
206
|
+
skill-cli embeds the full [oh-my-claudecode](https://github.com/Yeachan-Heo/oh-my-claudecode) multi-agent orchestration bundle (synced from GitHub release **v4.11.4**) and installs it into `~/.claude/omc/` by default. This gives any skill-cli user a single-command path to OMC's agents, skills, hooks, and runtime scripts without needing to clone the OMC repo or configure the plugin marketplace separately.
|
|
207
|
+
|
|
208
|
+
### What gets installed
|
|
209
|
+
|
|
210
|
+
When you run `skill-cli install`, OMC is installed alongside ECC components:
|
|
211
|
+
|
|
212
|
+
| OMC asset | Install target |
|
|
213
|
+
|-----------|---------------|
|
|
214
|
+
| 19 agents (analyst, architect, executor, planner, critic, verifier, …) | `~/.claude/omc/agents/` |
|
|
215
|
+
| 37 skills (autopilot, ralph, ralplan, deep-interview, team, ultrawork, ultraqa, self-improve, …) | `~/.claude/omc/skills/` |
|
|
216
|
+
| Runtime scripts (hook helpers, session lifecycle, skill injector, …) | `~/.claude/omc/scripts/` (executable bit preserved for `.sh`/`.mjs`/`.cjs`/`.js`/`.ts`) |
|
|
217
|
+
| `hooks.json` | Merged into `~/.claude/settings.json` with `$CLAUDE_PLUGIN_ROOT` rewritten to the absolute OMC install path |
|
|
218
|
+
| Templates | `~/.claude/omc/templates/` |
|
|
219
|
+
| `.claude-plugin/` manifest, LICENSE, CHANGELOG, VERSION | `~/.claude/omc/` |
|
|
220
|
+
|
|
221
|
+
### Flags
|
|
222
|
+
|
|
223
|
+
```bash
|
|
224
|
+
# Default — installs ECC + OMC
|
|
225
|
+
skill-cli install
|
|
226
|
+
|
|
227
|
+
# Skip OMC entirely (opt-out)
|
|
228
|
+
skill-cli install --no-omc
|
|
229
|
+
|
|
230
|
+
# Install only the OMC bundle
|
|
231
|
+
skill-cli install --component omc
|
|
232
|
+
|
|
233
|
+
# Preview without writing files
|
|
234
|
+
skill-cli install --dry-run
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
### Browse embedded OMC content
|
|
238
|
+
|
|
239
|
+
```bash
|
|
240
|
+
skill-cli list --type omc # list embedded OMC agents and skills
|
|
241
|
+
skill-cli info autopilot # show the autopilot skill content
|
|
242
|
+
skill-cli doctor # verify OMC install health and version
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
### Why the hook rewrite matters
|
|
246
|
+
|
|
247
|
+
OMC hooks are authored for the Claude Code plugin system and reference scripts via `$CLAUDE_PLUGIN_ROOT/scripts/...`. Because skill-cli installs OMC as a plain directory (not as a marketplace plugin), the installer rewrites `$CLAUDE_PLUGIN_ROOT` → `${claudeDir}/omc` at merge time so hooks resolve correctly without the plugin loader.
|
|
248
|
+
|
|
249
|
+
If you already have OMC installed via the Claude Code plugin marketplace, the skill-cli install places a separate self-contained copy under `~/.claude/omc/` and will not touch the marketplace install. The two copies can coexist; hooks from both sources will simply fire in sequence.
|
|
250
|
+
|
|
251
|
+
### Upgrading OMC
|
|
252
|
+
|
|
253
|
+
The embedded OMC version is pinned to the release tagged in `embedded/omc/VERSION`. To bump it, re-run the sync workflow that downloads a fresh GitHub release tarball into `embedded/omc/` and rebuild.
|
|
254
|
+
|
|
202
255
|
## License
|
|
203
256
|
|
|
204
257
|
MIT
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ancoder-skill-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "CLI for managing everything-claude-code (ECC) components — agents, skills, commands, rules, hooks, MCP configs. Single binary, all assets embedded.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"skill-cli": "bin/skill-cli.js"
|