@leeovery/claude-technical-workflows 2.1.41 → 2.1.42
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
|
@@ -47,7 +47,7 @@ Research → Discussion → Specification → Planning → Implementation → Re
|
|
|
47
47
|
### Quick Install
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
|
|
50
|
+
npx agntc add leeovery/claude-technical-workflows
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
See [Installation](#installation) for details.
|
|
@@ -178,30 +178,16 @@ Choose a format when planning begins. New formats can be scaffolded with `/creat
|
|
|
178
178
|
## Installation
|
|
179
179
|
|
|
180
180
|
```bash
|
|
181
|
-
|
|
181
|
+
npx agntc add leeovery/claude-technical-workflows
|
|
182
182
|
```
|
|
183
183
|
|
|
184
184
|
Skills are copied to `.claude/` in your project and can be committed, giving you ownership and making them available everywhere including Claude Code for Web.
|
|
185
185
|
|
|
186
186
|
<details>
|
|
187
|
-
<summary>
|
|
188
|
-
|
|
189
|
-
pnpm doesn't expose binaries from transitive dependencies, so install the manager directly:
|
|
190
|
-
|
|
191
|
-
```bash
|
|
192
|
-
pnpm add -D @leeovery/claude-manager @leeovery/claude-technical-workflows
|
|
193
|
-
pnpm approve-builds # approve when prompted
|
|
194
|
-
pnpm install # triggers postinstall
|
|
195
|
-
```
|
|
196
|
-
</details>
|
|
197
|
-
|
|
198
|
-
<details>
|
|
199
|
-
<summary>Removal (npm/pnpm)</summary>
|
|
200
|
-
|
|
201
|
-
Due to bugs in npm 7+ ([issue #3042](https://github.com/npm/cli/issues/3042)) and pnpm ([issue #3276](https://github.com/pnpm/pnpm/issues/3276)), preuninstall hooks don't run reliably. Remove files manually first:
|
|
187
|
+
<summary>Removal</summary>
|
|
202
188
|
|
|
203
189
|
```bash
|
|
204
|
-
npx
|
|
190
|
+
npx agntc remove leeovery/claude-technical-workflows
|
|
205
191
|
```
|
|
206
192
|
</details>
|
|
207
193
|
|
|
@@ -368,7 +354,6 @@ Subagents that skills can spawn for parallel task execution.
|
|
|
368
354
|
## Requirements
|
|
369
355
|
|
|
370
356
|
- Node.js 18+
|
|
371
|
-
- [@leeovery/claude-manager](https://github.com/leeovery/claude-manager) ^2.0.0 (installed automatically)
|
|
372
357
|
|
|
373
358
|
## Contributing
|
|
374
359
|
|
|
@@ -383,7 +368,7 @@ Please open an issue first to discuss significant changes.
|
|
|
383
368
|
|
|
384
369
|
## Related Packages
|
|
385
370
|
|
|
386
|
-
- [
|
|
371
|
+
- [**Agntc**](https://github.com/leeovery/agntc) - The CLI that powers skill, agent, and hook installation
|
|
387
372
|
- [**@leeovery/claude-laravel**](https://github.com/leeovery/claude-laravel) - Laravel development skills for Claude Code
|
|
388
373
|
- [**@leeovery/claude-nuxt**](https://github.com/leeovery/claude-nuxt) - Nuxt.js development skills for Claude Code
|
|
389
374
|
|
package/package.json
CHANGED
|
@@ -103,22 +103,10 @@ tick create "[NEEDS INFO] Rate limiting strategy" \
|
|
|
103
103
|
|
|
104
104
|
## Cleanup (Restart)
|
|
105
105
|
|
|
106
|
-
|
|
106
|
+
Remove the topic task and all its descendants:
|
|
107
107
|
|
|
108
108
|
```bash
|
|
109
|
-
tick
|
|
109
|
+
tick remove <topic-id> --force
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
tick cancel <task-id>
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
Cancelled tasks remain in the JSONL history but are excluded from `tick ready` and active listings.
|
|
119
|
-
|
|
120
|
-
**Full reset** (removes all tasks across all topics):
|
|
121
|
-
|
|
122
|
-
```bash
|
|
123
|
-
rm -rf .tick && tick init
|
|
124
|
-
```
|
|
112
|
+
Removing a parent cascades to all children (phases and tasks). Dependency references to removed tasks are auto-cleaned from surviving tasks.
|