azclaude-copilot 0.1.5 → 0.1.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/bin/cli.js CHANGED
@@ -287,7 +287,7 @@ function installGlobalHooks(cli) {
287
287
  // ─── Capabilities ─────────────────────────────────────────────────────────────
288
288
 
289
289
  // Core capability dirs installed by default; advanced dirs only with --full
290
- const CORE_CAP_DIRS = ['shared', 'level-builders'];
290
+ const CORE_CAP_DIRS = ['shared', 'level-builders', 'evolution'];
291
291
  const FULL_CAP_DIRS = ['shared', 'level-builders', 'evolution', 'intelligence'];
292
292
 
293
293
  function installCapabilities(projectDir, cfg, full) {
@@ -317,7 +317,7 @@ function installCapabilities(projectDir, cfg, full) {
317
317
  copyDir(path.join(src, dir), path.join(dst, dir));
318
318
  }
319
319
  ok(`Capabilities installed (${cfg}/capabilities/) — ${full ? 'full' : 'core'}`);
320
- if (!full) info('Run npx azclaude --full to add evolution + intelligence capabilities');
320
+ if (!full) info('Run npx azclaude --full to add intelligence capabilities (debate, pipeline, ELO)');
321
321
  info('manifest.md is your capability index — read it to find what to load');
322
322
  }
323
323
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azclaude-copilot",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Autonomous product builder. Describe once, AZCLAUDE builds it across sessions — planning, implementing, testing, evolving, deploying. Zero human input.",
5
5
  "bin": {
6
6
  "azclaude": "./bin/cli.js",
@@ -32,13 +32,15 @@ If $ARGUMENTS is blank or "full": run all cycles below.
32
32
  ls .claude/agents/loop-controller.md 2>/dev/null
33
33
  ```
34
34
 
35
- **If loop-controller.md exists**: delegate ALL evolution work to it via Agent tool:
35
+ **If loop-controller.md exists**: delegate evolution work to it via Agent tool:
36
36
  ```
37
37
  Run a full evolution cycle: re-derivation check, then Cycle 1 (detect/generate/evaluate),
38
38
  Cycle 2 (knowledge consolidation if 3+ sessions), Cycle 3 (topology if friction detected).
39
39
  Show the full cycle report when done.
40
40
  ```
41
- **STOP HERE** do not run the steps below.
41
+ **After loop-controller finishes**: continue to Step 7 (Generate Project-Specific Skills and Agents).
42
+ The loop-controller handles gap detection and code fixes, but skill/agent generation requires
43
+ reading level-builders which the loop-controller does not do.
42
44
 
43
45
  ---
44
46