@leeovery/claude-technical-workflows 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.
Files changed (2) hide show
  1. package/README.md +24 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -17,10 +17,10 @@
17
17
 
18
18
  ## Versions
19
19
 
20
- | Version | Package Manager | Status | Branch |
21
- |---------|----------------|--------|--------|
22
- | 2.x | npm | **Active** | `main` |
23
- | 1.x | Composer | Deprecated | [`v1`](https://github.com/leeovery/claude-technical-workflows/tree/v1) |
20
+ | Version | Package Manager | Status | Branch |
21
+ |---------|-----------------|------------|------------------------------------------------------------------------|
22
+ | 2.x | npm | **Active** | `main` |
23
+ | 1.x | Composer | Deprecated | [`v1`](https://github.com/leeovery/claude-technical-workflows/tree/v1) |
24
24
 
25
25
  ## About
26
26
 
@@ -32,11 +32,29 @@ A structured approach to technical discussions and implementation planning with
32
32
 
33
33
  ## Installation
34
34
 
35
+ ### npm
36
+
37
+ ```bash
38
+ npm install -D @leeovery/claude-technical-workflows
39
+ ```
40
+
41
+ ### pnpm
42
+
43
+ pnpm doesn't expose binaries from transitive dependencies, so install the manager directly:
44
+
45
+ ```bash
46
+ pnpm add -D @leeovery/claude-manager @leeovery/claude-technical-workflows
47
+ pnpm approve-builds # approve when prompted
48
+ pnpm install # triggers postinstall
49
+ ```
50
+
51
+ **Removal (pnpm):**
52
+
35
53
  ```bash
36
- npm install @leeovery/claude-technical-workflows
54
+ npx --yes @leeovery/claude-manager claude-manager remove @leeovery/claude-technical-workflows && pnpm remove @leeovery/claude-technical-workflows
37
55
  ```
38
56
 
39
- That's it. The [Claude Manager](https://github.com/leeovery/claude-manager) handles everything else automatically.
57
+ The [Claude Manager](https://github.com/leeovery/claude-manager) copies skills to `.claude/` automatically.
40
58
 
41
59
  ## The Six-Phase Workflow
42
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -10,8 +10,8 @@
10
10
  },
11
11
  "type": "module",
12
12
  "scripts": {
13
- "postinstall": "node -e \"require('@leeovery/claude-manager').add()\"",
14
- "preuninstall": "node -e \"require('@leeovery/claude-manager').remove()\""
13
+ "postinstall": "claude-manager add",
14
+ "preuninstall": "npx --yes --package=@leeovery/claude-manager claude-manager remove"
15
15
  },
16
16
  "dependencies": {
17
17
  "@leeovery/claude-manager": "^2.0.0"