@dzhechkov/skills-feature-adr 1.3.10 → 1.3.11

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/README.md +40 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -446,6 +446,46 @@ npx @dzhechkov/skills-feature-adr init # Feature development
446
446
 
447
447
  ---
448
448
 
449
+ ## Troubleshooting
450
+
451
+ ### `sh: 1: skills-feature-adr: not found` — npx inside a monorepo with workspaces
452
+
453
+ If you run `npx @dzhechkov/skills-feature-adr <command>` from **inside a monorepo** whose root
454
+ `package.json` declares `"workspaces"` (npm/pnpm/yarn) and a local workspace package shadows this
455
+ name (e.g. you vendored or forked this package, or you're developing it), npx resolves the **local
456
+ workspace copy** instead of fetching from the registry. It then looks for the bin shim in
457
+ `node_modules/.bin/` — which the workspace manager may never have created (pnpm links shims only
458
+ for declared dependencies) — and falls back to running the bare command in your shell:
459
+
460
+ ```
461
+ sh: 1: skills-feature-adr: not found
462
+ ```
463
+
464
+ **Note:** pinning a version (`npx @dzhechkov/skills-feature-adr@x.y.z`) does **not** bypass
465
+ workspace resolution — verified.
466
+
467
+ **Fixes:**
468
+
469
+ ```bash
470
+ # 1. Run it where it belongs — in the TARGET project (where .claude/ lives).
471
+ # That directory is normally not the package's own monorepo:
472
+ cd /path/to/your-project
473
+ npx @dzhechkov/skills-feature-adr update
474
+
475
+ # 2. Developing inside the monorepo that contains this package? Invoke the
476
+ # workspace copy's bin directly:
477
+ node <monorepo>/packages/@dzhechkov/skills-feature-adr/bin/cli.js update
478
+
479
+ # 3. Or use a global install (resolves independently of any workspace):
480
+ npm install -g @dzhechkov/skills-feature-adr
481
+ skills-feature-adr update
482
+ ```
483
+
484
+ Related: `init`/`update`/`remove` operate on the **current directory's** `.claude/` install — running
485
+ them inside the package's own monorepo is almost never what you want anyway.
486
+
487
+ ---
488
+
449
489
  ## Requirements
450
490
 
451
491
  - **Claude Code CLI** — installed and configured ([installation guide](https://docs.anthropic.com/en/docs/claude-code))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzhechkov/skills-feature-adr",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "description": "Adaptive Feature Development skill pack for Claude Code — 11-step pipeline with Complexity Router (S/M/L/XL), ADR-driven architecture, 15 agentic-qe skills, multi-agent fleet QE. Supports --full-qe, --full-qe-extended, --with-learning, and --knowledge-extractor modes.",
5
5
  "bin": {
6
6
  "skills-feature-adr": "./bin/cli.js"