Pick up the next task to work on. Shows ready tasks, helps select one, and starts it with full context.
Selects and starts the next task from your backlog with full context.
/plugin marketplace add iheanyi/tasuku/plugin install tasuku@tasuku-marketplaceA guided workflow for selecting and starting your next piece of work. Shows what's available, provides context, and gets you started efficiently.
/tasuku:pickup [task-id]
If no task-id provided, shows ready tasks and helps you choose.
tk task ready
This shows tasks sorted by priority (critical → high → normal → low → backlog).
If task-id was provided, use that. Otherwise, recommend based on:
Before starting, surface relevant context:
# Show full task details
tk task show <task-id>
# Surface related learnings
tk find "<keywords from task>"
tk task start <task-id>
Optionally with timer:
tk task start <task-id> --timer
Show any learnings or decisions related to this work:
User: /tasuku:pickup
Agent:
1. Ready tasks (by priority):
CRITICAL:
- fix-auth-regression: "Fix authentication bypass in admin panel"
HIGH:
- implement-rate-limiting: "Add rate limiting to API endpoints"
- update-docs: "Update API documentation for v2"
NORMAL:
- refactor-logger: "Clean up logging utilities"
2. Recommendation: fix-auth-regression (critical priority, security issue)
3. Task details:
- Description: Fix authentication bypass in admin panel
- Tags: security, bug
- Created: 2 hours ago
4. Related learnings:
- "Always validate session tokens on every admin request"
- "Never trust client-side auth state"
5. Starting task...
✓ tk task start fix-auth-regression
Ready to work on: fix-auth-regression
User: /tasuku:pickup implement-rate-limiting
Agent:
1. Task details:
- implement-rate-limiting: "Add rate limiting to API endpoints"
- Priority: high
- Tags: api, performance
2. Related decisions:
- rate-limit-strategy: Chose "token bucket" over "fixed window"
3. Related learnings:
- "Use Redis for distributed rate limit counters"
4. Starting task...
✓ tk task start implement-rate-limiting
/tasuku:ready - Just list ready tasks (no workflow)/tasuku:start - Just start a task (no context loading)/tasuku:show - Show task details/tasuku:complete - When you finish the task/pickupPick up the next task to work on. Shows ready tasks, helps select one, and starts it with full context.