@leeovery/claude-technical-workflows 2.1.9 → 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 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 and trade-offs.
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 | Where files live | Best for |
126
- |-----------------|-------------------------------------|-------------------------------------------------|
127
- | **Marketplace** | `~/.claude/plugins/` (global cache) | Quick setup, don't need files in repo |
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
- ### Option 2: npm
122
+ ### npm
140
123
 
141
124
  ```bash
142
125
  npm install -D @leeovery/claude-technical-workflows
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.1.9",
3
+ "version": "2.1.11",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -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(./scripts/migrate.sh)
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
- ./scripts/migrate.sh
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(.claude/skills/start-discussion/scripts/discovery.sh), Bash(./scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/research-analysis.md)
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.
@@ -57,7 +57,7 @@ Invoke the `/migrate` skill and assess its output.
57
57
  If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
58
58
 
59
59
  ```bash
60
- ./scripts/discovery.sh
60
+ .claude/skills/start-discussion/scripts/discovery.sh
61
61
  ```
62
62
 
63
63
  If YAML content is already displayed, it has been run on your behalf.
@@ -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(.claude/skills/start-implementation/scripts/discovery.sh), Bash(./scripts/discovery.sh)
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.
@@ -57,7 +57,7 @@ Invoke the `/migrate` skill and assess its output.
57
57
  If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
58
58
 
59
59
  ```bash
60
- ./scripts/discovery.sh
60
+ .claude/skills/start-implementation/scripts/discovery.sh
61
61
  ```
62
62
 
63
63
  If YAML content is already displayed, it has been run on your behalf.
@@ -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(.claude/skills/start-planning/scripts/discovery.sh), Bash(./scripts/discovery.sh)
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.
@@ -57,7 +57,7 @@ Invoke the `/migrate` skill and assess its output.
57
57
  If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
58
58
 
59
59
  ```bash
60
- ./scripts/discovery.sh
60
+ .claude/skills/start-planning/scripts/discovery.sh
61
61
  ```
62
62
 
63
63
  If YAML content is already displayed, it has been run on your behalf.
@@ -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(.claude/skills/start-review/scripts/discovery.sh), Bash(./scripts/discovery.sh)
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.
@@ -57,7 +57,7 @@ Invoke the `/migrate` skill and assess its output.
57
57
  If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
58
58
 
59
59
  ```bash
60
- ./scripts/discovery.sh
60
+ .claude/skills/start-review/scripts/discovery.sh
61
61
  ```
62
62
 
63
63
  If YAML content is already displayed, it has been run on your behalf.
@@ -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(.claude/skills/start-specification/scripts/discovery.sh), Bash(./scripts/discovery.sh), Bash(mkdir -p docs/workflow/.cache), Bash(rm docs/workflow/.cache/discussion-consolidation-analysis.md)
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.
@@ -57,7 +57,7 @@ Invoke the `/migrate` skill and assess its output.
57
57
  If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:
58
58
 
59
59
  ```bash
60
- ./scripts/discovery.sh
60
+ .claude/skills/start-specification/scripts/discovery.sh
61
61
  ```
62
62
 
63
63
  If YAML content is already displayed, it has been run on your behalf.