@leeovery/claude-technical-workflows 2.0.2 → 2.0.4
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 +24 -6
- 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
|
|
21
|
-
|
|
22
|
-
| 2.x
|
|
23
|
-
| 1.x
|
|
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
|
-
|
|
54
|
+
npx claude-manager remove @leeovery/claude-technical-workflows && pnpm remove @leeovery/claude-technical-workflows
|
|
37
55
|
```
|
|
38
56
|
|
|
39
|
-
|
|
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
|
+
"version": "2.0.4",
|
|
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": "claude-
|
|
14
|
-
"preuninstall": "claude-
|
|
13
|
+
"postinstall": "claude-manager add",
|
|
14
|
+
"preuninstall": "npx --package=@leeovery/claude-manager claude-manager remove"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@leeovery/claude-manager": "^2.0.0"
|