From Dev10x
Defers tasks by inserting TODO/FIXME comments in code files or appending dated/branch-organized items to .claude/TODO.md for project persistence.
npx claudepluginhub dev10x-guru/dev10x-claude --plugin Dev10xThis skill uses the workspace's default tool permissions.
**Announce:** "Using Dev10x:park-todo to [add TODO/FIXME to code | update
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Announce: "Using Dev10x:park-todo to [add TODO/FIXME to code | update project TODO list]."
This skill follows references/task-orchestration.md patterns.
Create a task at invocation, mark completed when done:
REQUIRED: Create a task at invocation. Execute at startup:
TaskCreate(subject="Create deferred TODO", activeForm="Creating TODO")Mark completed when done: TaskUpdate(taskId, status="completed")
Write deferred items to persistent storage where they will be rediscovered by humans or Claude in the right context.
When a specific file and location are relevant, insert a comment directly in the code:
# TODO: message — actionable, expected soon (this PR, next session)# FIXME: message — known issue, no timeline, boy scout rule appliesHow to insert:
Example:
# TODO: Configure webhook secret from dashboard before going live
WEBHOOK_SECRET = os.environ.get("STRIPE_WEBHOOK_SECRET", "")
When no specific file is relevant, append to .claude/TODO.md in the
current repository root.
Format:
## YYYY-MM-DD — branch: username/TICKET-ID/short-desc
- [ ] Item description
- [ ] Another item with context or link
How to append:
.claude/TODO.md if it existsIf .claude/TODO.md does not exist, create it with a header:
# Project TODO — Deferred Items
Items deferred from Claude sessions. Review at session start.
## YYYY-MM-DD — branch: username/TICKET-ID/short-desc
- [ ] First deferred item
When invoked, auto-detect:
date +%Y-%m-%dgit branch --show-currentgit rev-parse --show-toplevelIf the user asks about existing deferred items (e.g., "what's deferred",
"check for open items", "what do we have from yesterday"), invoke
Dev10x:park-discover instead of this skill. This skill is for writing
deferrals; Dev10x:park-discover is for reading them back.
Dev10x:park — when user picks "project TODO" or "inline code"Dev10x:session-wrap-up — Phase 1 scans .claude/TODO.md for existing items