How this command is triggered — by the user, by Claude, or both
Slash command
/plan-tools:pbcopyThe summary Claude sees in its command listing — used to decide when to auto-load this command
Copy plan file content (default) or path to clipboard. ## Arguments - `--path`: copy file path instead of content ## Identify file 1. If file path known from context → use it 2. If file path in $ARGUMENTS → use it 3. Otherwise → find most recent `.md` in `~/.claude/plans/` ## Copy Default (content): With `--path`: Report what was copied.
Copy plan file content (default) or path to clipboard.
--path: copy file path instead of content.md in ~/.claude/plans/Default (content):
cat "<file_path>" | pbcopy
With --path:
echo -n "<file_path>" | pbcopy
Report what was copied.
npx claudepluginhub mh4gf/shared-config --plugin plan-tools/planCreates three planning files (task_plan.md, findings.md, progress.md) for complex tasks and guides the user through a structured planning workflow.
/implExecutes a structured task plan from a markdown file, using persistent files for progress tracking, error logging, and decision recall. Automatically updates plan status after each phase.
/import-planConverts a Claude Code plan file into individual tasks in .llm/todo.md, archiving the plan locally and creating one task per step with context references.
/import-planConverts a structured plan file from Claude Code's plan mode into individual tasks using TaskCreate, archives the plan locally, and adds a verification task.
/review-planSends a plan file to Monocle for review, extracting the title from the first heading. Does not wait for feedback — use /review-plan-wait to block until the reviewer responds.
/planexport-enableEnables automatic export of plan files to project's notes/ directory as YYYY_MM_DD_<name>.md when exiting plan mode by running the enable config script.