@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
- npm install -D @leeovery/claude-technical-workflows
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
- npm install -D @leeovery/claude-technical-workflows
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>pnpm users</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 claude-manager remove @leeovery/claude-technical-workflows && npm rm @leeovery/claude-technical-workflows
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
- - [**@leeovery/claude-manager**](https://github.com/leeovery/claude-manager) - The plugin manager that powers skill installation
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.1.41",
3
+ "version": "2.1.42",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -103,22 +103,10 @@ tick create "[NEEDS INFO] Rate limiting strategy" \
103
103
 
104
104
  ## Cleanup (Restart)
105
105
 
106
- Cancel the topic task and all its descendants. First, list the tasks to collect their IDs:
106
+ Remove the topic task and all its descendants:
107
107
 
108
108
  ```bash
109
- tick list --parent <topic-id>
109
+ tick remove <topic-id> --force
110
110
  ```
111
111
 
112
- Then cancel each task (leaf tasks first, then phases, then the topic):
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.