ancoder-skill-cli 0.13.2 → 0.13.3

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
@@ -40,8 +40,8 @@ go build -o bin/skill-cli .
40
40
  | `skill-cli create <name> [--path <dir>]` | Create a skill scaffold with contract and smoke eval templates |
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
- | `skill-cli generate <name> --desc "..."` | Generate a complete skill using Claude CLI with OMC autopilot (default) |
44
- | `skill-cli generate <name> --desc "..." --adversarial` | Generate with OMC, then run isolated generator/evaluator contract negotiation and review |
43
+ | `skill-cli generate <name> --desc "..."` | Generate with OMC, then run isolated generator/evaluator contract negotiation and review (default) |
44
+ | `skill-cli generate <name> --desc "..." --no-adversarial` | Generate with OMC only, skipping the default adversarial review |
45
45
  | `skill-cli install [--no-omc]` | Install ECC components into `~/.claude/` (includes OMC by default) |
46
46
  | `skill-cli install --component omc` | Install only the bundled OMC multi-agent orchestration layer |
47
47
 
@@ -67,10 +67,10 @@ my-skill/
67
67
 
68
68
  ## Adversarial Skill Generation
69
69
 
70
- `skill-cli generate --adversarial` adds an independent evaluator pass after the default OMC generation pipeline:
70
+ `skill-cli generate` runs an independent adversarial evaluator pass after the OMC generation pipeline by default:
71
71
 
72
72
  ```bash
73
- skill-cli generate pdf-to-md --desc "Convert PDF files to Markdown" --adversarial
73
+ skill-cli generate pdf-to-md --desc "Convert PDF files to Markdown"
74
74
  ```
75
75
 
76
76
  This mode uses two isolated Claude CLI contexts:
@@ -80,6 +80,8 @@ This mode uses two isolated Claude CLI contexts:
80
80
 
81
81
  The evaluator fails the run when critical issues are found or the score is below `0.80`. Deterministic gate failures are always converted into critical diff items and cap the score below `0.60`.
82
82
 
83
+ Use `--no-adversarial` if you want the older OMC-only generation behavior.
84
+
83
85
  ## Publish to npm
84
86
 
85
87
  1. Set `repository.url` in `package.json` to your GitHub repo (e.g. `git+https://github.com/your-org/skill-cli.git`).
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.13.2",
3
+ "version": "0.13.3",
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"