@leeovery/claude-technical-workflows 2.1.10 → 2.1.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.
- package/README.md +5 -22
- package/package.json +1 -1
- package/skills/migrate/SKILL.md +2 -2
- package/skills/start-discussion/SKILL.md +9 -5
- package/skills/start-implementation/SKILL.md +9 -5
- package/skills/start-planning/SKILL.md +9 -5
- package/skills/start-review/SKILL.md +9 -5
- package/skills/start-specification/SKILL.md +9 -5
package/README.md
CHANGED
|
@@ -44,18 +44,11 @@ Research → Discussion → Specification → Planning → Implementation → Re
|
|
|
44
44
|
|
|
45
45
|
### Quick Install
|
|
46
46
|
|
|
47
|
-
**Marketplace** (cached globally):
|
|
48
|
-
```
|
|
49
|
-
/plugin marketplace add leeovery/claude-plugins-marketplace
|
|
50
|
-
/plugin install claude-technical-workflows@claude-plugins-marketplace
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
**npm** (copied to your repo):
|
|
54
47
|
```bash
|
|
55
48
|
npm install -D @leeovery/claude-technical-workflows
|
|
56
49
|
```
|
|
57
50
|
|
|
58
|
-
See [Installation](#installation) for details
|
|
51
|
+
See [Installation](#installation) for details.
|
|
59
52
|
|
|
60
53
|
## How do I use it?
|
|
61
54
|
|
|
@@ -122,21 +115,11 @@ Run the skill directly or ask Claude to run it. Each gathers context from previo
|
|
|
122
115
|
|
|
123
116
|
## Installation
|
|
124
117
|
|
|
125
|
-
| Method
|
|
126
|
-
|
|
127
|
-
| **
|
|
128
|
-
| **npm** | `.claude/` in your project | Ownership, version control, Claude Code for Web |
|
|
129
|
-
|
|
130
|
-
### Option 1: Claude Marketplace
|
|
131
|
-
|
|
132
|
-
```
|
|
133
|
-
/plugin marketplace add leeovery/claude-plugins-marketplace
|
|
134
|
-
/plugin install claude-technical-workflows@claude-plugins-marketplace
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
Skills are cached globally. They won't be available in Claude Code for Web since files aren't in your repository.
|
|
118
|
+
| Method | Where files live | Best for |
|
|
119
|
+
|---------|----------------------------|-------------------------------------------------|
|
|
120
|
+
| **npm** | `.claude/` in your project | Ownership, version control, Claude Code for Web |
|
|
138
121
|
|
|
139
|
-
###
|
|
122
|
+
### npm
|
|
140
123
|
|
|
141
124
|
```bash
|
|
142
125
|
npm install -D @leeovery/claude-technical-workflows
|
package/package.json
CHANGED
package/skills/migrate/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: migrate
|
|
3
3
|
description: "Run migrations to keep workflow files in sync with the current system design. This skill is mandatory before running any workflow skill."
|
|
4
|
-
allowed-tools: Bash(
|
|
4
|
+
allowed-tools: Bash(.claude/skills/migrate/scripts/migrate.sh)
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Migrate
|
|
@@ -13,7 +13,7 @@ Keeps your workflow files up to date with how the system is designed to work. Ru
|
|
|
13
13
|
Run the migration script:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
|
|
16
|
+
.claude/skills/migrate/scripts/migrate.sh
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
### If files were updated
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: start-discussion
|
|
3
3
|
description: "Start a technical discussion. Discovers research and existing discussions, offers multiple entry paths, and invokes the technical-discussion skill."
|
|
4
4
|
disable-model-invocation: true
|
|
5
|
-
allowed-tools: Bash(
|
|
5
|
+
allowed-tools: Bash(.claude/skills/start-discussion/scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/research-analysis.md)
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
Invoke the **technical-discussion** skill for this conversation.
|
|
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## Step 1:
|
|
53
|
+
## Step 1: Discovery State
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
!`.claude/skills/start-discussion/scripts/discovery.sh`
|
|
56
|
+
|
|
57
|
+
If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
|
|
56
58
|
|
|
57
59
|
```bash
|
|
58
|
-
|
|
60
|
+
.claude/skills/start-discussion/scripts/discovery.sh
|
|
59
61
|
```
|
|
60
62
|
|
|
61
|
-
|
|
63
|
+
If YAML content is already displayed, it has been run on your behalf.
|
|
64
|
+
|
|
65
|
+
Parse the discovery output to understand:
|
|
62
66
|
|
|
63
67
|
**From `research` section:**
|
|
64
68
|
- `exists` - whether research files exist
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: start-implementation
|
|
3
3
|
description: "Start an implementation session from an existing plan. Discovers available plans, checks environment setup, and invokes the technical-implementation skill."
|
|
4
4
|
disable-model-invocation: true
|
|
5
|
-
allowed-tools: Bash(
|
|
5
|
+
allowed-tools: Bash(.claude/skills/start-implementation/scripts/discovery.sh)
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
Invoke the **technical-implementation** skill for this conversation.
|
|
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## Step 1:
|
|
53
|
+
## Step 1: Discovery State
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
!`.claude/skills/start-implementation/scripts/discovery.sh`
|
|
56
|
+
|
|
57
|
+
If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
|
|
56
58
|
|
|
57
59
|
```bash
|
|
58
|
-
|
|
60
|
+
.claude/skills/start-implementation/scripts/discovery.sh
|
|
59
61
|
```
|
|
60
62
|
|
|
61
|
-
|
|
63
|
+
If YAML content is already displayed, it has been run on your behalf.
|
|
64
|
+
|
|
65
|
+
Parse the discovery output to understand:
|
|
62
66
|
|
|
63
67
|
**From `plans` section:**
|
|
64
68
|
- `exists` - whether any plans exist
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: start-planning
|
|
3
3
|
description: "Start a planning session from an existing specification. Discovers available specifications, gathers context, and invokes the technical-planning skill."
|
|
4
4
|
disable-model-invocation: true
|
|
5
|
-
allowed-tools: Bash(
|
|
5
|
+
allowed-tools: Bash(.claude/skills/start-planning/scripts/discovery.sh)
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
Invoke the **technical-planning** skill for this conversation.
|
|
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## Step 1:
|
|
53
|
+
## Step 1: Discovery State
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
!`.claude/skills/start-planning/scripts/discovery.sh`
|
|
56
|
+
|
|
57
|
+
If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
|
|
56
58
|
|
|
57
59
|
```bash
|
|
58
|
-
|
|
60
|
+
.claude/skills/start-planning/scripts/discovery.sh
|
|
59
61
|
```
|
|
60
62
|
|
|
61
|
-
|
|
63
|
+
If YAML content is already displayed, it has been run on your behalf.
|
|
64
|
+
|
|
65
|
+
Parse the discovery output to understand:
|
|
62
66
|
|
|
63
67
|
**From `specifications` section:**
|
|
64
68
|
- `exists` - whether any specifications exist
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: start-review
|
|
3
3
|
description: "Start a review session from an existing plan and implementation. Discovers available plans, validates implementation exists, and invokes the technical-review skill."
|
|
4
4
|
disable-model-invocation: true
|
|
5
|
-
allowed-tools: Bash(
|
|
5
|
+
allowed-tools: Bash(.claude/skills/start-review/scripts/discovery.sh)
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
Invoke the **technical-review** skill for this conversation.
|
|
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## Step 1:
|
|
53
|
+
## Step 1: Discovery State
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
!`.claude/skills/start-review/scripts/discovery.sh`
|
|
56
|
+
|
|
57
|
+
If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
|
|
56
58
|
|
|
57
59
|
```bash
|
|
58
|
-
|
|
60
|
+
.claude/skills/start-review/scripts/discovery.sh
|
|
59
61
|
```
|
|
60
62
|
|
|
61
|
-
|
|
63
|
+
If YAML content is already displayed, it has been run on your behalf.
|
|
64
|
+
|
|
65
|
+
Parse the discovery output to understand:
|
|
62
66
|
|
|
63
67
|
**From `plans` section:**
|
|
64
68
|
- `exists` - whether any plans exist
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: start-specification
|
|
3
3
|
description: "Start a specification session from existing discussions. Discovers available discussions, offers consolidation assessment for multiple discussions, and invokes the technical-specification skill."
|
|
4
4
|
disable-model-invocation: true
|
|
5
|
-
allowed-tools: Bash(
|
|
5
|
+
allowed-tools: Bash(.claude/skills/start-specification/scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/discussion-consolidation-analysis.md)
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
Invoke the **technical-specification** skill for this conversation.
|
|
@@ -50,15 +50,19 @@ Invoke the `/migrate` skill and assess its output.
|
|
|
50
50
|
|
|
51
51
|
---
|
|
52
52
|
|
|
53
|
-
## Step 1:
|
|
53
|
+
## Step 1: Discovery State
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
!`.claude/skills/start-specification/scripts/discovery.sh`
|
|
56
|
+
|
|
57
|
+
If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
|
|
56
58
|
|
|
57
59
|
```bash
|
|
58
|
-
|
|
60
|
+
.claude/skills/start-specification/scripts/discovery.sh
|
|
59
61
|
```
|
|
60
62
|
|
|
61
|
-
|
|
63
|
+
If YAML content is already displayed, it has been run on your behalf.
|
|
64
|
+
|
|
65
|
+
Parse the discovery output to understand:
|
|
62
66
|
|
|
63
67
|
**From `discussions` array:**
|
|
64
68
|
- Each discussion's name, status, and whether it has an individual specification
|