From Dev10x
Gathers deferred items from project TODOs, code TODO/FIXME comments, Slack reminders, memory files, git logs, and PRs when starting sessions, resuming work, or checking deferrals.
npx claudepluginhub dev10x-guru/dev10x-claude --plugin Dev10xThis skill uses the workspace's default tool permissions.
**Announce:** "Using Dev10x:park-discover to check all deferral sources."
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-discover to check all deferral sources."
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="Discover deferred items", activeForm="Discovering items")Mark completed when done: TaskUpdate(taskId, status="completed")
Invoke this skill when the user asks about existing deferred items:
Do NOT use for writing new deferrals โ use Dev10x:park-todo or
Dev10x:park instead.
date +%Y-%m-%d
git branch --show-current
basename "$(git rev-parse --show-toplevel)"
Determine the lookback date: default is yesterday. If the user specifies a date or range, use that instead.
Run all checks in parallel where possible. Report findings grouped by source.
Read .claude/TODO.md in the repo root. Extract pending items
(- [ ] lines). If the file doesn't exist, note "No project TODO
file."
Grep for TODO/FIXME comments in src/:
grep -rn "TODO\|FIXME" src/ --include="*.py" | head -30
Distinguish long-standing tech debt from recently added items by
checking git log for the lookback period.
Search for bot-sent reminders using MCP Slack tools (read mode):
mcp__claude_ai_Slack__slack_search_public_and_private
query: "from:<@U0AD92X4X1S> ๐ after:LOOKBACK_DATE"
include_bots: true
sort: timestamp
sort_dir: desc
limit: 20
The ๐ emoji is the standard prefix from Dev10x:park-remind.
If no results with ๐, broaden to:
from:<@U0AD92X4X1S> after:LOOKBACK_DATE defer OR TODO OR reminder
Grep the global memory directory for in-progress or deferred items:
grep -rn "defer\|TODO\|in-progress\|pick up" \
~/.claude/memory/ \
--include="*.md" || true
Check for recent commits by the user in the lookback period:
git log --all --since="LOOKBACK_DATE" --oneline --author="<username>" \
| head -20
This provides context on what was being worked on.
Check open PRs for automated session bookmark comments posted by
Dev10x:session-wrap-up. These are self-reminders left on PRs during
previous sessions:
gh pr list --author="@me" --state open \
--json number,title,url --limit 10
For each PR, search for reminder comments with the standard prefix:
gh pr view {N} --json comments --jq '.comments[]
| select(.body | test("๐ \\*\\*Session bookmark\\*\\*"))
| {body: .body[0:300], createdAt: .createdAt}'
The ๐ **Session bookmark** prefix is the standard marker set by
Dev10x:session-wrap-up. Include matching comments in the findings under
"### PR Session Bookmarks".
Group results by source in a scannable format:
## Deferred Items โ [project name]
### .claude/TODO.md
(items or "No project TODO file")
### Slack DM Reminders
(items or "None found")
### Recent Code TODOs
(items or "Only long-standing tech debt")
### Memory Notes
(items or "None")
### Recent Activity (context)
(recent commits or "No commits in lookback period")
### PR Session Bookmarks
(matching PR comments or "None found")
If deferred items were found, ask:
Dev10x:park-todo โ redirects here when user asks to review/check
deferrals instead of write them