@wbern/claude-instructions 2.8.0 → 2.8.1

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 (3) hide show
  1. package/README.md +1 -1
  2. package/bin/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -74,7 +74,7 @@ Then add a postinstall script to your `package.json`:
74
74
  "postinstall": "npx @wbern/claude-instructions --scope=project --overwrite"
75
75
  },
76
76
  "devDependencies": {
77
- "@wbern/claude-instructions": "^2.8.0"
77
+ "@wbern/claude-instructions": "^2.8.1"
78
78
  }
79
79
  }
80
80
  ```
package/bin/cli.js CHANGED
@@ -963,7 +963,7 @@ ${allowedToolsYaml}
963
963
  }
964
964
  }
965
965
  let templateInjected = false;
966
- if (!options?.skipTemplateInjection) {
966
+ if (!options?.skipTemplateInjection && scope !== SCOPES.USER) {
967
967
  let templateSourcePath = null;
968
968
  for (const filename of TEMPLATE_SOURCE_FILES) {
969
969
  const candidatePath = path4.join(process.cwd(), filename);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wbern/claude-instructions",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
4
4
  "description": "TDD workflow commands for Claude Code CLI",
5
5
  "type": "module",
6
6
  "bin": "./bin/cli.js",