Agent skill
work
Find and start the next highest-priority expedition from the kanban board
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/work
SKILL.md
Pick Up Work
Find and start work on an expedition. If an expedition ID is provided ($ARGUMENTS), start that one. Otherwise, find the next highest-priority ready item.
Steps
1. Check Current Work
First, check if already working on something:
yurtle-kanban list --status in_progress
If items are in progress, show them and ask if the user wants to continue or pick up new work.
2. Find Ready Work
If no specific expedition requested:
yurtle-kanban list --status ready --limit 5
Show the top 5 ready items with their priorities.
3. Start Work
Once an expedition is selected (either from $ARGUMENTS or user choice):
# Move to in_progress
yurtle-kanban move EXP-XXX in_progress
# Create expedition branch from main
git checkout main
git pull origin main
git checkout -b expedition/exp-XXX-short-description
IMPORTANT: Expedition branches use the expedition/exp-XXX-name prefix and are never deleted (permanent memory).
4. Load Context
Read the expedition file to understand the work:
# Find and read the expedition file
cat kanban-work/expeditions/EXP-XXX*.md
Summarize:
- What needs to be done (Build Steps)
- Success criteria
- Dependencies
- Current status from Ship's Log
5. Ready to Work
Confirm the expedition is loaded and ready to begin implementation.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?