@leeovery/claude-technical-workflows 2.1.31 → 2.1.33
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 +36 -5
- package/hooks/workflows/compact-recovery.sh +81 -0
- package/hooks/workflows/session-cleanup.sh +26 -0
- package/hooks/workflows/session-env.sh +17 -0
- package/hooks/workflows/system-check.sh +100 -0
- package/hooks/workflows/write-session-state.sh +66 -0
- package/package.json +1 -1
- package/skills/begin-implementation/SKILL.md +158 -0
- package/skills/begin-planning/SKILL.md +87 -0
- package/skills/continue-feature/SKILL.md +177 -0
- package/skills/continue-feature/references/detect-phase.md +92 -0
- package/skills/continue-feature/references/invoke-implementation.md +43 -0
- package/skills/continue-feature/references/invoke-planning.md +43 -0
- package/skills/continue-feature/references/invoke-specification.md +55 -0
- package/skills/continue-feature/references/phase-bridge.md +58 -0
- package/skills/continue-feature/scripts/discovery.sh +216 -0
- package/skills/link-dependencies/SKILL.md +6 -0
- package/skills/start-discussion/SKILL.md +22 -1
- package/skills/start-feature/SKILL.md +100 -38
- package/skills/start-feature/references/gather-feature-context.md +60 -0
- package/skills/start-feature/references/invoke-discussion.md +24 -0
- package/skills/start-feature/references/phase-bridge.md +37 -0
- package/skills/start-implementation/SKILL.md +22 -1
- package/skills/start-planning/SKILL.md +22 -1
- package/skills/start-research/SKILL.md +23 -1
- package/skills/start-review/SKILL.md +22 -1
- package/skills/start-specification/SKILL.md +8 -2
- package/skills/start-specification/references/handoffs/continue-concluded.md +15 -0
- package/skills/start-specification/references/handoffs/continue.md +15 -0
- package/skills/start-specification/references/handoffs/create-with-incorporation.md +15 -0
- package/skills/start-specification/references/handoffs/create.md +15 -0
- package/skills/start-specification/references/handoffs/unify-with-incorporation.md +15 -0
- package/skills/start-specification/references/handoffs/unify.md +15 -0
- package/skills/status/SKILL.md +7 -1
- package/skills/technical-planning/references/author-tasks.md +2 -0
- package/skills/technical-planning/references/output-formats/tick/about.md +5 -0
- package/skills/technical-planning/references/output-formats/tick/authoring.md +18 -0
- package/skills/technical-planning/references/output-formats/tick/updating.md +2 -0
- package/skills/technical-planning/references/plan-construction.md +3 -8
- package/skills/technical-planning/references/plan-index-schema.md +4 -3
- package/skills/view-plan/SKILL.md +6 -0
|
@@ -4,6 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
Before invoking the processing skill, save a session bookmark.
|
|
8
|
+
|
|
9
|
+
> *Output the next fenced block as a code block:*
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
Saving session state so Claude can pick up where it left off if the conversation is compacted.
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
.claude/hooks/workflows/write-session-state.sh \
|
|
17
|
+
"unified" \
|
|
18
|
+
"skills/technical-specification/SKILL.md" \
|
|
19
|
+
"docs/workflow/specification/unified/specification.md"
|
|
20
|
+
```
|
|
21
|
+
|
|
7
22
|
This skill's purpose is now fulfilled. Invoke the [technical-specification](../../../technical-specification/SKILL.md) skill for your next instructions. Do not act on the gathered information until the skill is loaded — it contains the instructions for how to proceed.
|
|
8
23
|
|
|
9
24
|
```
|
package/skills/status/SKILL.md
CHANGED
|
@@ -3,6 +3,12 @@ name: status
|
|
|
3
3
|
description: "Show workflow status - what exists, where you are, and what to do next."
|
|
4
4
|
disable-model-invocation: true
|
|
5
5
|
allowed-tools: Bash(.claude/skills/status/scripts/discovery.sh)
|
|
6
|
+
hooks:
|
|
7
|
+
PreToolUse:
|
|
8
|
+
- hooks:
|
|
9
|
+
- type: command
|
|
10
|
+
command: "$CLAUDE_PROJECT_DIR/.claude/hooks/workflows/system-check.sh"
|
|
11
|
+
once: true
|
|
6
12
|
---
|
|
7
13
|
|
|
8
14
|
Show the current state of the workflow for this project.
|
|
@@ -13,7 +19,7 @@ Show the current state of the workflow for this project.
|
|
|
13
19
|
|
|
14
20
|
Invoke the `/migrate` skill and assess its output.
|
|
15
21
|
|
|
16
|
-
**If files were updated**: STOP and wait for the user to review the changes (e.g., via `git diff`) and confirm before proceeding to Step 1.
|
|
22
|
+
**If files were updated**: STOP and wait for the user to review the changes (e.g., via `git diff`) and confirm before proceeding to Step 1. Do not continue automatically.
|
|
17
23
|
|
|
18
24
|
**If no updates needed**: Proceed to Step 1.
|
|
19
25
|
|
|
@@ -37,6 +37,8 @@ Check `author_gate_mode` in the Plan Index File frontmatter.
|
|
|
37
37
|
|
|
38
38
|
#### If `author_gate_mode: auto`
|
|
39
39
|
|
|
40
|
+
**Auto mode removes the approval pause — not the sequential process.** Each task is still invoked, authored, and logged one at a time, in order. Do not batch, skip ahead, or create multiple tasks concurrently.
|
|
41
|
+
|
|
40
42
|
> *Output the next fenced block as a code block:*
|
|
41
43
|
|
|
42
44
|
```
|
|
@@ -54,6 +54,11 @@ Add to `.gitignore`:
|
|
|
54
54
|
|
|
55
55
|
The 3-level hierarchy (topic → phase → task) uses Tick's parent/child system. Parent tasks are implicitly blocked by their children — a parent is not "ready" until all children are complete. Explicit dependencies (`tick dep add`) handle cross-phase and cross-topic blocking.
|
|
56
56
|
|
|
57
|
+
## Usage Notes
|
|
58
|
+
|
|
59
|
+
- **Help**: `tick help --all` displays all available commands and flags in a single view.
|
|
60
|
+
- **Output format**: The `--toon` flag is **not needed** — TOON is the default for non-interactive shells, which is what Claude Code uses. Omit it from all commands.
|
|
61
|
+
|
|
57
62
|
## Output Location
|
|
58
63
|
|
|
59
64
|
Tasks are stored in a `.tick/` directory at the project root:
|
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Tick: Authoring
|
|
2
2
|
|
|
3
|
+
## Descriptions: Inline Only
|
|
4
|
+
|
|
5
|
+
**CRITICAL**: Always pass descriptions directly as inline quoted strings. Never use workarounds.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
tick create "Title" --parent <id> --description "Full description here.
|
|
9
|
+
|
|
10
|
+
Multi-line content works fine inside double quotes."
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
**Do NOT**:
|
|
14
|
+
- Use heredocs (`<<'EOF'`) — sandbox blocks the temp files they create
|
|
15
|
+
- Use the Write tool to create temp files — triggers approval prompts outside the project directory
|
|
16
|
+
- Use Bash functions, variables, or subshells to construct the description
|
|
17
|
+
- Write temp files anywhere (including `$TMPDIR`, `/tmp`, or the working directory)
|
|
18
|
+
|
|
19
|
+
If a description contains double quotes, escape them with `\"`. That's it.
|
|
20
|
+
|
|
3
21
|
## Task Storage
|
|
4
22
|
|
|
5
23
|
Tasks are created using the `tick create` command. Before creating individual tasks, establish the topic and phase parent tasks.
|
|
@@ -16,6 +16,8 @@ Tick uses dedicated commands for each status transition:
|
|
|
16
16
|
|
|
17
17
|
## Updating Task Content
|
|
18
18
|
|
|
19
|
+
**Sandbox mode**: When updating large descriptions, use the Write tool + cat pattern to avoid sandbox temp file issues. See [authoring.md](authoring.md) for details.
|
|
20
|
+
|
|
19
21
|
To update a task's properties:
|
|
20
22
|
|
|
21
23
|
- **Title**: `tick update <task-id> --title "New title"`
|
|
@@ -120,16 +120,11 @@ Phase {N}: {Phase Name} — task list confirmed. Proceeding to authoring.
|
|
|
120
120
|
|
|
121
121
|
Work through each task in the phase's task table, in order.
|
|
122
122
|
|
|
123
|
-
###
|
|
123
|
+
### Sequential authoring (mandatory)
|
|
124
124
|
|
|
125
|
-
|
|
125
|
+
Tasks **must** be authored one at a time, in order. Each task's authored detail builds context for the next — later tasks benefit from decisions, patterns, and structure established by earlier ones. This applies regardless of gate mode. Auto-gate removes the approval pause, not the sequential process.
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
- Each task still requires explicit user approval before logging
|
|
129
|
-
- If user feedback on a presented task changes context that could affect any already-authored task waiting to be presented, discard those results and re-invoke Step B
|
|
130
|
-
- When uncertain about independence, default to sequential — it is always safe
|
|
131
|
-
|
|
132
|
-
Never parallelize the first `pending` task in a phase. Never parallelize across phases.
|
|
127
|
+
**Never** invoke multiple Step B agents concurrently. **Never** batch or skip ahead.
|
|
133
128
|
|
|
134
129
|
#### If the task status is `authored`
|
|
135
130
|
|
|
@@ -90,14 +90,15 @@ approved_at: {YYYY-MM-DD}
|
|
|
90
90
|
|
|
91
91
|
```markdown
|
|
92
92
|
#### Tasks
|
|
93
|
-
| ID | Name | Status | Ext ID |
|
|
94
|
-
|
|
95
|
-
| {topic}-{phase}-{seq} | {Task Name} | {status} | |
|
|
93
|
+
| ID | Name | Edge Cases | Status | Ext ID |
|
|
94
|
+
|----|------|------------|--------|--------|
|
|
95
|
+
| {topic}-{phase}-{seq} | {Task Name} | {comma-separated list, or "none"} | {status} | |
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
| Field | Set when |
|
|
99
99
|
|-------|----------|
|
|
100
100
|
| `ID` | Task design — format: `{topic}-{phase}-{seq}` |
|
|
101
101
|
| `Name` | Task design — descriptive task name |
|
|
102
|
+
| `Edge Cases` | Task design — curated list scoping which edge cases this task handles |
|
|
102
103
|
| `Status` | Task design → `pending`; authoring → `authored` |
|
|
103
104
|
| `Ext ID` | Task authored — external identifier for the task |
|
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
name: view-plan
|
|
3
3
|
description: "View a plan's tasks and progress, regardless of output format."
|
|
4
4
|
disable-model-invocation: true
|
|
5
|
+
hooks:
|
|
6
|
+
PreToolUse:
|
|
7
|
+
- hooks:
|
|
8
|
+
- type: command
|
|
9
|
+
command: "$CLAUDE_PROJECT_DIR/.claude/hooks/workflows/system-check.sh"
|
|
10
|
+
once: true
|
|
5
11
|
---
|
|
6
12
|
|
|
7
13
|
Display a readable summary of a plan's phases, tasks, and status.
|