Skip to content

Commit 30753c7

Browse files
author
catlog22
committed
feat: Update skill references from issue-lifecycle to issue-discover and enhance inline status display in workflow skills
1 parent 8985894 commit 30753c7

6 files changed

Lines changed: 29 additions & 30 deletions

File tree

.claude/skills/issue-discover/phases/01-issue-new.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,17 +323,17 @@ function parseMarkdownBody(body) {
323323
### Clear Input (No Questions)
324324
325325
```bash
326-
Skill(skill="issue-lifecycle", args="https://github.com/org/repo/issues/42")
326+
Skill(skill="issue-discover", args="https://github.com/org/repo/issues/42")
327327
# → Fetches, parses, creates immediately
328328

329-
Skill(skill="issue-lifecycle", args="\"Login fails with special chars. Expected: success. Actual: 500\"")
329+
Skill(skill="issue-discover", args="\"Login fails with special chars. Expected: success. Actual: 500\"")
330330
# → Parses structure, creates immediately
331331
```
332332
333333
### Vague Input (1 Question)
334334
335335
```bash
336-
Skill(skill="issue-lifecycle", args="\"auth broken\"")
336+
Skill(skill="issue-discover", args="\"auth broken\"")
337337
# → Asks: "Please describe the issue in more detail"
338338
# → User provides details → saved to feedback[]
339339
# → Creates issue

.claude/skills/issue-discover/phases/02-discover.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,13 +319,13 @@ function getPerspectiveGuidance(perspective) {
319319

320320
```bash
321321
# Quick scan with default perspectives
322-
Skill(skill="issue-lifecycle", args="--action discover src/auth/**")
322+
Skill(skill="issue-discover", args="--action discover src/auth/**")
323323

324324
# Security-focused audit
325-
Skill(skill="issue-lifecycle", args="--action discover src/payment/** --perspectives=security,bug")
325+
Skill(skill="issue-discover", args="--action discover src/payment/** --perspectives=security,bug")
326326

327327
# Full analysis with external research
328-
Skill(skill="issue-lifecycle", args="--action discover src/api/** --external")
328+
Skill(skill="issue-discover", args="--action discover src/api/** --external")
329329
```
330330

331331
## Post-Phase Update

.claude/skills/workflow-execute/phases/06-review.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ Optional specialized review for completed implementations. In the standard workf
2727
| `action-items` | Requirements met, acceptance criteria verified | Pre-deployment verification |
2828

2929
**Notes**:
30-
- For documentation generation, use `/workflow:tools:docs`
31-
- For CLAUDE.md updates, use `/update-memory-related`
30+
- For CLAUDE.md updates, use `memory-manage` skill
3231

3332
## Execution
3433

.claude/skills/workflow-plan/SKILL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Unified planning skill combining 4-phase planning workflow, plan quality verific
3535
┌───────────┐
3636
│ Confirm │─── Verify ──→ Phase 5
3737
│ (choice) │─── Execute ─→ Skill("workflow-execute")
38-
└───────────┘─── Review ──→ /workflow:status
38+
└───────────┘─── Review ──→ Display session status inline
3939
```
4040

4141
## Key Design Principles
@@ -137,7 +137,7 @@ Plan Confirmation (User Decision Gate):
137137
└─ Decision (user choice):
138138
├─ "Verify Plan Quality" (Recommended) → Route to Phase 5 (plan-verify)
139139
├─ "Start Execution" → Skill(skill="workflow-execute")
140-
└─ "Review Status Only" → Route to /workflow:status
140+
└─ "Review Status Only" → Display session status inline
141141
```
142142

143143
### Verify Mode
@@ -242,7 +242,7 @@ Phase 4: task-generate-agent --session sessionId
242242
Plan Confirmation (User Decision Gate):
243243
├─ "Verify Plan Quality" (Recommended) → Route to Phase 5
244244
├─ "Start Execution" → Skill(skill="workflow-execute")
245-
└─ "Review Status Only" → Route to /workflow:status
245+
└─ "Review Status Only" → Display session status inline
246246
```
247247

248248
**Session Memory Flow**: Each phase receives session ID, which provides access to:
@@ -365,7 +365,7 @@ See phase files for detailed update code.
365365
- **Plan Confirmation Gate**: Present user with choice (Verify → Phase 5 / Execute / Review Status)
366366
- **If user selects Verify**: Read phases/05-plan-verify.md, execute Phase 5 in-process
367367
- **If user selects Execute**: Skill(skill="workflow-execute")
368-
- **If user selects Review**: Route to /workflow:status
368+
- **If user selects Review**: Display session status inline
369369
- **Auto mode (workflowPreferences.autoYes)**: Auto-select "Verify Plan Quality", then auto-continue to execute if PROCEED
370370
- Update TodoWrite after each phase
371371
- After each phase, automatically continue to next phase based on TodoList status
@@ -408,13 +408,13 @@ CONSTRAINTS: [Limitations or boundaries]
408408

409409
**Called by Plan Mode** (4 phases):
410410
- `/workflow:session:start` - Phase 1: Create or discover workflow session
411-
- `/workflow:tools:context-gather` - Phase 2: Gather project context and analyze codebase
412-
- `/workflow:tools:conflict-resolution` - Phase 3: Detect and resolve conflicts (conditional)
411+
- `phases/02-context-gathering.md` - Phase 2: Gather project context and analyze codebase (inline)
412+
- `phases/03-conflict-resolution.md` - Phase 3: Detect and resolve conflicts (inline, conditional)
413413
- `/compact` - Phase 3: Memory optimization (if context approaching limits)
414-
- `/workflow:tools:task-generate-agent` - Phase 4: Generate task JSON files
414+
- `phases/04-task-generation.md` - Phase 4: Generate task JSON files (inline)
415415

416416
**Follow-up Skills**:
417417
- `/workflow:plan-verify` - Verify plan quality (can also invoke via verify mode)
418-
- `/workflow:status` - Review task breakdown and current progress
418+
- Display session status inline - Review task breakdown and current progress
419419
- `Skill(skill="workflow-execute")` - Begin implementation of generated tasks (skill: workflow-execute)
420420
- `/workflow:replan` - Modify plan (can also invoke via replan mode)

.claude/skills/workflow-tdd/SKILL.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Unified TDD workflow skill combining TDD planning (Red-Green-Refactor task chain
3535
┌───────────┐
3636
│ Confirm │─── Verify ──→ Phase 7
3737
│ (choice) │─── Execute ─→ Skill("workflow-execute")
38-
└───────────┘─── Review ──→ /workflow:status
38+
└───────────┘─── Review ──→ Display session status inline
3939
```
4040

4141
## Key Design Principles
@@ -128,7 +128,7 @@ Plan Confirmation (User Decision Gate):
128128
└─ Decision (user choice):
129129
├─ "Verify TDD Compliance" (Recommended) → Route to Phase 7 (tdd-verify)
130130
├─ "Start Execution" → Skill(skill="workflow-execute")
131-
└─ "Review Status Only" → Route to /workflow:status
131+
└─ "Review Status Only" → Display session status inline
132132
```
133133

134134
### Verify Mode
@@ -273,7 +273,7 @@ Phase 6: TDD Structure Validation (internal)
273273
Plan Confirmation (User Decision Gate):
274274
├─ "Verify TDD Compliance" (Recommended) → Route to Phase 7
275275
├─ "Start Execution" → Skill(skill="workflow-execute")
276-
└─ "Review Status Only" → Route to /workflow:status
276+
└─ "Review Status Only" → Display session status inline
277277
```
278278

279279
### Verify Mode
@@ -401,11 +401,11 @@ Similar to workflow-plan, a `planning-notes.md` can accumulate context across ph
401401
| Error Type | Detection | Recovery Action |
402402
|------------|-----------|-----------------|
403403
| Parsing failure | Empty/malformed output | Retry once, then report |
404-
| Missing context-package | File read error | Re-run `/workflow:tools:context-gather` |
404+
| Missing context-package | File read error | Re-run Phase 2 (context-gathering) |
405405
| Invalid task JSON | jq parse error | Report malformed file path |
406406
| Task count exceeds 18 | Count validation ≥19 | Request re-scope, split into multiple sessions |
407407
| Missing cli_execution.id | All tasks lack ID | Regenerate tasks with phase 0 user config |
408-
| Test-context missing | File not found | Re-run `/workflow:tools:test-context-gather` |
408+
| Test-context missing | File not found | Re-run Phase 3 (test-coverage-analysis) |
409409
| Phase timeout | No response | Retry phase, check CLI connectivity |
410410
| CLI tool not available | Tool not in cli-tools.json | Fall back to alternative preferred tool |
411411

@@ -447,7 +447,7 @@ Similar to workflow-plan, a `planning-notes.md` can accumulate context across ph
447447
- **Plan Confirmation Gate**: Present user with choice (Verify → Phase 7 / Execute / Review Status)
448448
- **If user selects Verify**: Read phases/07-tdd-verify.md, execute Phase 7 in-process
449449
- **If user selects Execute**: Skill(skill="workflow-execute")
450-
- **If user selects Review**: Route to /workflow:status
450+
- **If user selects Review**: Display session status inline
451451
- **Auto mode (workflowPreferences.autoYes)**: Auto-select "Verify TDD Compliance", then auto-continue to execute if APPROVED
452452
- Update TaskCreate/TaskUpdate after each phase
453453
- After each phase, automatically continue to next phase based on TaskList status
@@ -465,17 +465,17 @@ Similar to workflow-plan, a `planning-notes.md` can accumulate context across ph
465465

466466
**Called by Plan Mode** (6 phases):
467467
- `/workflow:session:start` - Phase 1: Create or discover TDD workflow session
468-
- `/workflow:tools:context-gather` - Phase 2: Gather project context and analyze codebase
469-
- `/workflow:tools:test-context-gather` - Phase 3: Analyze existing test patterns and coverage
470-
- `/workflow:tools:conflict-resolution` - Phase 4: Detect and resolve conflicts (conditional)
468+
- `phases/02-context-gathering.md` - Phase 2: Gather project context and analyze codebase (inline)
469+
- `phases/03-test-coverage-analysis.md` - Phase 3: Analyze existing test patterns and coverage (inline)
470+
- `phases/04-conflict-resolution.md` - Phase 4: Detect and resolve conflicts (inline, conditional)
471471
- `/compact` - Phase 4: Memory optimization (if context approaching limits)
472-
- `/workflow:tools:task-generate-tdd` - Phase 5: Generate TDD tasks with Red-Green-Refactor cycles
472+
- `phases/05-tdd-task-generation.md` - Phase 5: Generate TDD tasks with Red-Green-Refactor cycles (inline)
473473

474474
**Called by Verify Mode**:
475-
- `/workflow:tools:tdd-coverage-analysis` - Phase 7: Test coverage and cycle analysis
475+
- `phases/07-tdd-verify.md` - Phase 7: Test coverage and cycle analysis (inline)
476476

477477
**Follow-up Skills**:
478478
- `/workflow:tdd-verify` - Verify TDD compliance (can also invoke via verify mode)
479479
- `/workflow:plan-verify` - Verify plan quality and dependencies
480-
- `/workflow:status` - Review TDD task breakdown
480+
- Display session status inline - Review TDD task breakdown
481481
- `Skill(skill="workflow-execute")` - Begin TDD implementation

.claude/skills/workflow-test-fix/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,6 @@ After completion, ask user if they want to expand into issues (test/enhance/refa
430430
- None for Prompt Mode
431431

432432
**Follow-up Skills**:
433-
- `/workflow:status` - Review workflow state
434-
- `/workflow:review` - Post-implementation review
433+
- Display session status inline - Review workflow state
434+
- `/workflow:review-session-cycle` - Post-implementation review
435435
- `/issue:new` - Create follow-up issues

0 commit comments

Comments
 (0)