From Dev10x
Tracks in-session work items using TaskCreate/Update/List tools. Displays status in markdown tables, adds/updates tasks, and auto-advances to first pending task for mid-session management.
npx claudepluginhub dev10x-guru/dev10x-claude --plugin Dev10xThis skill uses the workspace's default tool permissions.
**Announce:** "Using Dev10x:session-tasks to [show/add/update] session tasks."
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:session-tasks to [show/add/update] session tasks."
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="Track session work items", activeForm="Tracking items")Mark completed when done: TaskUpdate(taskId, status="completed")
Thin wrapper around Claude's TaskCreate/TaskUpdate/TaskList tools
for tracking work items within the current session.
After creating tasks via this skill, immediately start executing the first pending task. Do not pause to ask "should I start?" or wait for the user to say "go". The act of creating the task list is the authorization to begin.
TaskCreate(subject="Task 1", ...)
TaskCreate(subject="Task 2", ...)
TaskUpdate(taskId=task1, status="in_progress")
# Begin working on Task 1 immediately
This follows the universal auto-advance rule from
references/task-orchestration.md.
Use TaskList to display all current tasks grouped by status.
Present as a markdown table:
| # | Status | Task |
|---|---|---|
| 1 | in_progress | Implement checkout feature |
| 2 | pending | Create PR for TICKET-42 |
| 3 | completed | Add webhook endpoint |
Use TaskCreate with:
subject: short task titledescription: context, file paths, or links if availableUse TaskUpdate with the task ID and new status:
in_progress — currently working oncompleted — donepending — deferred within this sessionDev10x:park — when user picks "keep for this session"Dev10x:session-wrap-up — Phase 1 auto-scan reads the task list