用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ReinaMacCredy/loveNovel --skill reset命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
UI/UX design intelligence with searchable database
Generate comprehensive implementation plans through systematic discovery, synthesis, verification, and decomposition into beads. Use when asked to plan a feature, create a roadmap, design an implementation approach, or decompose work into trackable issues. Do NOT use for simple one-step tasks, quick fixes, or when the user just wants to execute an existing plan — use the work skill instead.
Execute a plan or direct task with worker delegation and verification.
基于 SOC 职业分类
正在显示 SKILL.md
| name | reset |
| description | Clean stale Maestro state — remove old drafts, orphaned teams, and stale task directories. |
| allowed-tools | Read, Write, Bash, Glob |
Clean up stale Maestro state. This is a maintenance command — use when things get stuck.
List all draft files in .maestro/drafts/:
Glob(".maestro/drafts/*.md")
For each draft, show the file name and first line. Ask the user which to remove (or all).
Check for team directories that may be leftover from interrupted sessions:
ls -la ~/.claude/teams/ 2>/dev/null
For each team directory, check if it has active members. Report orphaned teams.
List all handoff files in .maestro/handoff/:
Glob(".maestro/handoff/*.json")
For each handoff file, read the JSON and show the topic, status, and start time. Report handoff files that may be from interrupted design sessions (especially those with status: "designing").
Check for task directories:
ls -la ~/.claude/tasks/ 2>/dev/null
Report any task directories that don't correspond to active teams.
List all archived plan files in .maestro/archive/:
Glob(".maestro/archive/*.md")
For each archived plan, show the file name and first line (title). Ask the user which to remove (or all, or none). This is the ONLY way archived plans get deleted — it requires explicit user confirmation.
Check for Maestro worktrees that may be leftover from interrupted sessions:
git worktree list --porcelain
Filter for worktrees on maestro/* branches. Cross-reference with handoff files in .maestro/handoff/:
status: "complete" (session finished but worktree was not cleaned up)For each orphaned worktree:
git worktree remove "<path>"
After removing the worktree, optionally offer to delete the associated branch (with separate confirmation):
git branch -D "maestro/<slug>"
Safety: Never auto-remove worktrees. Always require explicit user confirmation for both worktree removal and branch deletion.
.maestro/plans/ are NEVER deleted. Archived plans in .maestro/archive/ may be deleted with user confirmation..maestro/wisdom/ is preservedEnd with:
## Reset Complete
### Cleaned
- [N] draft files removed
- [N] handoff files removed
- [N] orphaned team directories removed
- [N] stale task directories removed
- [N] archived plans removed
- [N] orphaned worktrees removed
### Preserved
- [N] plans in .maestro/plans/
- [N] wisdom files in .maestro/wisdom/
- [N] archived plans in .maestro/archive/