ancoder-skill-cli 0.13.38-beta.1 → 0.13.38-beta.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
@@ -174,8 +174,8 @@ go build -o bin/skill-cli .
174
174
  | `skill-cli create <name> [--path <dir>]` | Create a skill scaffold with contract and smoke eval templates |
175
175
  | `skill-cli test <path>` | Check that a skill has trigger docs, contract, and eval coverage |
176
176
  | `skill-cli verify <path> [--suite smoke]` | Run a machine-readable verification suite end-to-end |
177
- | `skill-cli generate <name> --desc "..."` | Generate with OMC, then run isolated generator/evaluator contract negotiation and review (default) |
178
- | `skill-cli generate <name> --desc "..." --no-adversarial` | Generate with OMC only, skipping the default adversarial review |
177
+ | `skill-cli generate <name> --desc "..."` | Generate with the default OMC pipeline and real-task feedback when a task workspace is detected |
178
+ | `skill-cli generate <name> --desc "..." --adversarial` | Also run isolated generator/evaluator contract negotiation and review |
179
179
  | `skill-cli install [--no-omc]` | Install ECC components into `~/.claude/` (includes OMC by default) |
180
180
  | `skill-cli install --component omc` | Install only the bundled OMC multi-agent orchestration layer |
181
181
 
@@ -201,10 +201,10 @@ my-skill/
201
201
 
202
202
  ## Adversarial Skill Generation
203
203
 
204
- `skill-cli generate` runs an independent adversarial evaluator pass after the OMC generation pipeline by default:
204
+ `skill-cli generate` uses the OMC pipeline by default. For stricter experimental review, add `--adversarial` to run an independent evaluator pass after the OMC generation pipeline:
205
205
 
206
206
  ```bash
207
- skill-cli generate pdf-to-md --desc "Convert PDF files to Markdown"
207
+ skill-cli generate pdf-to-md --desc "Convert PDF files to Markdown" --adversarial
208
208
  ```
209
209
 
210
210
  This mode uses two isolated Claude CLI contexts:
@@ -214,7 +214,7 @@ This mode uses two isolated Claude CLI contexts:
214
214
 
215
215
  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`.
216
216
 
217
- Use `--no-adversarial` if you want the older OMC-only generation behavior.
217
+ Use the default command without `--adversarial` for the OMC-only generation path.
218
218
 
219
219
  ### Generation failure logs
220
220
 
@@ -224,7 +224,7 @@ Every `skill-cli generate` run writes a local JSONL session log under:
224
224
  <skills-dir>/.skill-cli/logs/generate/<skill-name>-<timestamp>.jsonl
225
225
  ```
226
226
 
227
- When generation fails, the CLI prints the exact log path. The log records major stages such as Claude binary resolution, scaffold creation, brainstorm probe, loop start/ticks, deterministic gates, repair attempts, and adversarial review failures, including captured command output and error tails for troubleshooting.
227
+ Every generation run prints the exact log path. The log records major stages such as Claude binary resolution, scaffold creation, brainstorm probe, loop start/ticks, deterministic gates, repair attempts, real-task feedback artifacts, and optional adversarial review failures, including captured command output and error tails for troubleshooting.
228
228
 
229
229
  ## Publish to npm
230
230
 
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.38-beta.1",
3
+ "version": "0.13.38-beta.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"