install-claude-workflow-v2 2.0.3 → 2.0.5

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/README.md CHANGED
@@ -5,7 +5,12 @@ Install the Claude Code workflow plugin with a single command.
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- npx install-claude-workflow-v2
8
+ npm exec install-claude-workflow-v2@latest
9
+ ```
10
+
11
+ Or with npx:
12
+ ```bash
13
+ npx --yes install-claude-workflow-v2@latest
9
14
  ```
10
15
 
11
16
  That's it. Run `claude` to start.
package/lib/installer.js CHANGED
@@ -109,7 +109,7 @@ async function install(repo, name) {
109
109
  agents: countFiles(path.join(target, "agents"), ".md"),
110
110
  skills: countDirs(path.join(target, "skills")),
111
111
  commands: countFiles(path.join(target, "commands"), ".md"),
112
- hooks: countFiles(path.join(target, "hooks", "scripts"), ".py"),
112
+ hooks: countFiles(path.join(target, "hooks"), ".py"),
113
113
  };
114
114
 
115
115
  console.log(`\n✅ Installed to .claude/\n`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "install-claude-workflow-v2",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "type": "commonjs",
5
5
  "description": "Install Claude Code skills and plugins via npx",
6
6
  "bin": {