ancoder-skill-cli 0.13.38-beta.4 → 0.13.38-beta.6

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,11 +174,24 @@ 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 the default OMC pipeline and real-task feedback when a task workspace is detected |
177
+ | `skill-cli generate <name> --desc "..."` | Generate with the default OMC pipeline, real-task feedback, and skill self-loop scaffolding |
178
+ | `skill-cli improve <path-or-name> --logs <dir>` | Improve an existing skill through the default self-iteration loop |
179
+ | `skill-cli loop skill run <path-or-name> --logs <dir>` | Run explicit skill self-iteration cycles with state, budget, and run logs |
178
180
  | `skill-cli generate <name> --desc "..." --adversarial` | Also run isolated generator/evaluator contract negotiation and review |
179
181
  | `skill-cli install [--no-omc]` | Install ECC components into `~/.claude/` (includes OMC by default) |
180
182
  | `skill-cli install --component omc` | Install only the bundled OMC multi-agent orchestration layer |
181
183
 
184
+ ## Skill Self-Iteration Loops
185
+
186
+ Generated and improved skills now use a loop-engineering operating layer by default. Each skill can carry:
187
+
188
+ - `LOOP.md` for cadence, gates, and escalation rules
189
+ - `STATE.md` for durable memory across runs
190
+ - `loop-budget.md` for token budget and kill switch
191
+ - `loop-run-log.md` for append-only cycle history
192
+
193
+ Use `skill-cli loop skill audit <skill>` to inspect readiness, `skill-cli loop skill init <skill>` to add the files to an older skill, and `skill-cli loop skill run <skill> --logs ./logs` to run evidence-backed self-improvement cycles.
194
+
182
195
  ## Machine-Readable Skill Layout
183
196
 
184
197
  Task-oriented skills can now include a deterministic verification harness:
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.4",
3
+ "version": "0.13.38-beta.6",
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"