azclaude-copilot 0.1.5 → 0.1.7

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) {
@@ -295,17 +295,16 @@ function installCapabilities(projectDir, cfg, full) {
295
295
  const dst = path.join(projectDir, cfg, 'capabilities');
296
296
 
297
297
  if (fs.existsSync(dst)) {
298
- // If upgrading to --full, install missing dirs
299
- if (full) {
300
- for (const dir of FULL_CAP_DIRS) {
301
- const dstSub = path.join(dst, dir);
302
- if (!fs.existsSync(dstSub)) {
303
- copyDir(path.join(src, dir), dstSub);
304
- ok(`${dir}/ capabilities added (--full)`);
305
- }
298
+ // Always install missing core dirs (e.g. evolution/ added in v0.1.6)
299
+ const dirs = full ? FULL_CAP_DIRS : CORE_CAP_DIRS;
300
+ for (const dir of dirs) {
301
+ const dstSub = path.join(dst, dir);
302
+ if (!fs.existsSync(dstSub)) {
303
+ copyDir(path.join(src, dir), dstSub);
304
+ ok(`${dir}/ capabilities added`);
306
305
  }
307
306
  }
308
- ok('Capabilities already installed checked');
307
+ ok('Capabilities verifiedall dirs present');
309
308
  return;
310
309
  }
311
310
 
@@ -317,7 +316,7 @@ function installCapabilities(projectDir, cfg, full) {
317
316
  copyDir(path.join(src, dir), path.join(dst, dir));
318
317
  }
319
318
  ok(`Capabilities installed (${cfg}/capabilities/) — ${full ? 'full' : 'core'}`);
320
- if (!full) info('Run npx azclaude --full to add evolution + intelligence capabilities');
319
+ if (!full) info('Run npx azclaude --full to add intelligence capabilities (debate, pipeline, ELO)');
321
320
  info('manifest.md is your capability index — read it to find what to load');
322
321
  }
323
322
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azclaude-copilot",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
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