azclaude-copilot 0.1.6 → 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.
Files changed (2) hide show
  1. package/bin/cli.js +8 -9
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azclaude-copilot",
3
- "version": "0.1.6",
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",