@leeovery/claude-technical-workflows 2.1.26 → 2.1.27

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
@@ -291,7 +291,7 @@ Helpers for navigating and maintaining the workflow.
291
291
  | Skill | Description |
292
292
  |------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
293
293
  | [**/migrate**](skills/migrate/) | Keep workflow files in sync with the current system design. Runs automatically at the start of every workflow skill. |
294
- | [**/status**](skills/status/) | Show workflow status - what topics exist at each phase, and suggested next steps. |
294
+ | [**/status**](skills/status/) | Show workflow status with relationship-aware display specification sources, unlinked discussions, plan dependencies, and suggested next steps. |
295
295
  | [**/view-plan**](skills/view-plan/) | View a plan's tasks and progress, regardless of output format. |
296
296
 
297
297
  #### Standalone Skills
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leeovery/claude-technical-workflows",
3
- "version": "2.1.26",
3
+ "version": "2.1.27",
4
4
  "description": "Technical workflow skills & commands for Claude Code",
5
5
  "license": "MIT",
6
6
  "author": "Lee Overy <me@leeovery.com>",
@@ -84,7 +84,10 @@ Show if any specifications exist. This is the most important section — it reve
84
84
  Specifications
85
85
 
86
86
  1. {name:(titlecase)} ({status})
87
- └─ Sources: {src1} ({src1_status}), {src2} ({src2_status})
87
+ └─ Sources: @if(no_sources) (none) @else
88
+ ├─ {src} ({src_status})
89
+ └─ ...
90
+ @endif
88
91
 
89
92
  2. ...
90
93
  ```
@@ -93,8 +96,6 @@ Specifications
93
96
 
94
97
  - Each numbered item is an active (non-superseded) specification
95
98
  - Show `(cross-cutting)` after status for cross-cutting specs; omit type label for feature specs
96
- - Sources come from the spec's `sources` array — show all with their incorporation status
97
- - If a spec has no sources, show `└─ Sources: (none)`
98
99
  - Blank line between numbered items
99
100
  - If superseded specs exist, show after the numbered list:
100
101
 
@@ -114,6 +115,10 @@ Plans
114
115
 
115
116
  1. {name:(titlecase)} ({status})
116
117
  └─ Spec: {specification_name}
118
+ @if(has_unresolved_deps) └─ Blocked:
119
+ ├─ {dep_topic}:{dep_task_id} ({dep_state})
120
+ └─ ...
121
+ @endif
117
122
 
118
123
  2. ...
119
124
  ```
@@ -122,7 +127,6 @@ Plans
122
127
 
123
128
  - Map raw `planning` status to `in-progress` in the display
124
129
  - Show spec name without `.md` extension
125
- - If `has_unresolved_deps`, add line: `└─ Blocked: {dep_topic}:{dep_task_id} ({dep_state})`
126
130
 
127
131
  ### 2d: Implementation
128
132