一键导入
rename-plan
Rename plan files from random generated names to datetime-prefixed meaningful names (e.g., humble-munching-bachman.md → 2026-03-14-my-oauth-refactor.md)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Rename plan files from random generated names to datetime-prefixed meaningful names (e.g., humble-munching-bachman.md → 2026-03-14-my-oauth-refactor.md)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Investigate a bug with competing hypotheses and parallel subagents. Use when the user asks to debug an error, find a root cause, or investigate why something is failing.
Review Harbangan plans and code with read-only advisory agents. Use `--plan <path>` for domain-driven plan review, and `--code [target]` for fixed reviewer-dimension code review with domain-advisor consultation.
Update project documentation by consulting all domain agents for accuracy. document-writer leads, other agents provide technical review. Use when user says 'update docs', 'write documentation', 'refresh docs', 'document this', or 'sync documentation'.
ACH-based debugging — spawns domain investigators to evaluate competing hypotheses across the Harbangan stack using formal evidence standards and arbitration. Use when user says 'debug this error', 'why is this failing', 'investigate bug', 'root cause analysis', or 'something is broken'.
Full lifecycle feature implementation — spawns teams, assigns tasks, monitors progress, verifies quality, and creates PRs. Agents remain idle after completion — use /team-shutdown to terminate. Use when user says 'implement this', 'build this feature', 'start working on X', or 'execute the plan'.
Analyze scope, explore codebase, and produce implementation plans. Spawns all 7 domain agents for parallel investigation from their domain perspective, and writes structured plans. Use when user says 'plan this feature', 'analyze scope', 'what would it take to build X', or 'explore before implementing'.
| name | rename-plan |
| description | Rename plan files from random generated names to datetime-prefixed meaningful names (e.g., humble-munching-bachman.md → 2026-03-14-my-oauth-refactor.md) |
| argument-hint | <description> |
| allowed-tools | ["Bash","Glob","AskUserQuestion"] |
Rename the most recently modified .md file in .claude/plans/ to a datetime-prefixed descriptive name.
Get description — use $ARGUMENTS as the description. If empty, use AskUserQuestion to ask:
Find the most recent plan file — use Glob to list **/*.md in .claude/plans/, then use Bash with ls -t to find the most recently modified one.
Generate the new filename:
date +%Y-%m-%d via Bash[a-z0-9-], collapse multiple hyphens, trim leading/trailing hyphensYYYY-MM-DD-<sanitized-description>.mdHandle duplicates — if the target filename already exists, append -2, -3, etc. until a unique name is found.
Rename — use Bash with mv to rename the file within .claude/plans/.
Report — tell the user the old and new filenames.
/rename-plan my oauth refactor
# Finds: .claude/plans/humble-munching-bachman.md (most recent)
# Renames to: .claude/plans/2026-03-14-my-oauth-refactor.md