.claude/skills/speckit-refine-status/SKILL.md
Show sync status between spec, plan, and tasks — identify stale artifacts
npx skillsauth add pradeepmouli/lspeasy speckit-refine-statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Show the synchronization status between spec.md, plan.md, and tasks.md. Identifies which artifacts are stale and need propagation.
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
.specify/ directoryLocate artifacts: Find all artifacts in the current feature directory:
spec.md — the source of truthplan.md — implementation plantasks.md — task breakdownresearch.md — research notesdata-model.md — data modelcontracts/ — interface contractsCheck each artifact: For each file that exists, determine:
**Refined**: entries (spec.md)**Propagated**: entries (plan.md, tasks.md)⚠️ **STALE** marker##-level sections in plan.md- [ ] items in tasks.mdDetermine sync status: Compare artifacts to assess synchronization:
| Condition | Status |
|-----------|--------|
| spec.md refined after plan.md last propagated | plan.md is STALE |
| spec.md refined after tasks.md last propagated | tasks.md is STALE |
| plan.md has ⚠️ **STALE** marker | plan.md is STALE |
| tasks.md has ⚠️ **STALE** marker | tasks.md is STALE |
| No refinement notes and no staleness markers | All artifacts are IN SYNC |
| Artifact does not exist | MISSING |
Output status dashboard:
# Artifact Sync Status: [Feature Name]
| Artifact | Status | Last Modified | Notes |
|----------|--------|---------------|-------|
| spec.md | ✅ Current | [date] | [N user stories, M requirements] |
| plan.md | ⚠️ Stale | [date] | Refined on [date], not yet propagated |
| tasks.md | ⚠️ Stale | [date] | [X total tasks, Y completed] |
| research.md | ✅ Present | [date] | — |
| data-model.md | ❌ Missing | — | — |
| contracts/ | ❌ Missing | — | — |
## Refinement History
- [DATE]: [Change description]
## Recommended Actions
1. Run `/speckit.refine.propagate` to update stale artifacts
2. Run `/speckit.refine.diff` to preview impact before propagating
Report: Output the dashboard. Do not modify any files — this command is read-only.
tools
Use for ANY rename, file-move, or move-symbol refactor — especially rename-heavy work across multiple files. Claude Code's built-in LSP tool is READ-ONLY (find references, but no rename / file-move / move-symbol). Hand-editing those refactors silently misses re-exports, aliased imports, type-only imports, and {@link} doc references. This skill drives a real language server via the `lspeasy` CLI to apply a correct WorkspaceEdit that catches every reference. Trigger when the user asks to rename a function/class/variable/type project-wide, move a file and fix its importers, or pull a symbol out into another module.
tools
Documentation site for lspeasy Use when: You are building a browser-based LSP client, a WebSocket-backed language....
tools
Documentation site for lspeasy Use when: You are implementing a custom client layer and need the same validation....
tools
Use when working with lspeasy (client, core, server). Covers: lsp, language-server-protocol, lsp-client, language-client, jsonrpc, transport, lsp-server, language-server.