.claude/skills/speckit-worktree-list/SKILL.md
Show all active worktrees with feature status and spec artifact summary
npx skillsauth add pradeepmouli/zod-to-form speckit-worktree-listInstall 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 all active git worktrees with their feature branch status, spec artifact availability, and task completion progress — a dashboard for parallel feature development.
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty). The user may request a specific format (e.g., "compact") or filter (e.g., "stale only").
.specify/ directoryList all worktrees: Run git worktree list to get all active worktrees:
.worktrees/ directoryGather feature status: For each worktree, check its spec-kit state:
[x] vs [ ] items⚠️ **STALE** markersClassify worktree status:
| Status | Condition | |--------|-----------| | ✅ Active | Recent commits (within 7 days), unmerged | | 🟡 Idle | No recent commits (7-30 days), unmerged | | ⚠️ Stale | No commits for 30+ days, unmerged | | ✅ Merged | Branch merged into main/master | | ❌ Orphaned | Branch deleted but worktree still exists |
Output dashboard:
# Active Worktrees
| # | Branch | Path | Status | Artifacts | Tasks | Last Activity |
|---|--------|------|--------|-----------|-------|---------------|
| 1 | 003-user-auth | .worktrees/003-user-auth/ | ✅ Active | spec ✅ plan ✅ tasks ✅ | 12/18 (67%) | 2 hours ago |
| 2 | 004-chat-system | .worktrees/004-chat-system/ | 🟡 Idle | spec ✅ plan ✅ tasks ❌ | — | 12 days ago |
| 3 | 005-api-gateway | .worktrees/005-api-gateway/ | ✅ Merged | spec ✅ plan ✅ tasks ✅ | 8/8 (100%) | 3 days ago |
## Summary
- **Total worktrees**: 3 (+ main working directory)
- **Active**: 1
- **Idle**: 1
- **Ready to clean**: 1 (merged)
## Recommended Actions
- Run `/speckit.worktree.clean` to remove the merged worktree (005-api-gateway)
- Resume work on 004-chat-system or run `/speckit.tasks` to generate tasks
Report: Output the dashboard. Do not modify any files — this command is read-only.
[x] and [ ] in tasks.mdtools
Use when working with zod-to-form (core, react, cli, codegen, vite).
tools
Vite plugin for zod-to-form — transforms ?z2f imports into generated form components and optionally replaces <ZodForm> JSX call sites with generated components at build time Use when: You want `import SignupForm from './signup.schema?z2f'` to Just Work in a.... Also: vite, vite-plugin, zod, zod-v4, codegen, forms, form-generation, schema-driven, react-hook-form, build-plugin, jsx-transform.
development
Runtime <ZodForm> renderer for Zod v4 schemas Use when: You need form rendering in storybook, playgrounds, or low-traffic admin UIs —.... Also: zod, zod-v4, react, forms, form-generation, react-hook-form, schema-driven, dynamic-forms, form-renderer, hookform-resolver, zod-form-renderer.
development
Schema walker and processor registry for Zod v4 form generation Use when: You want per-field validation instead of whole-form validation. Also: zod, zod-v4, forms, form-generation, schema, schema-walker, processor-registry, react-hook-form, schema-driven, form-schema, zod-registry.