Agent skill
ticket-board
Add ticket to project board and set status, priority, size
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/ticket-board-daemn256-workspace-repo-templ
SKILL.md
Ticket Board
Uses Orchestrator for ticket lifecycle. Add a ticket to the project board and set or update board-specific fields: status, priority, and size.
Prerequisites: Ticket number, desired field values
Board Configuration
Read workspace.config.yaml for all field IDs and option IDs:
board.project_id— project to add the issue toboard.fields.status.field_id— status fieldboard.fields.priority.field_id— priority fieldboard.fields.size.field_id— size field
Status Options
| Status | Config Key |
|---|---|
| Backlog | board.status_options.backlog |
| Ready | board.status_options.ready |
| In Progress | board.status_options.in-progress |
| In Review | board.status_options.in-review |
| Done | board.status_options.done |
Priority Options
| Priority | Config Key |
|---|---|
| P0 | board.priority_options.p0 |
| P1 | board.priority_options.p1 |
| P2 | board.priority_options.p2 |
Size Options
| Size | Config Key |
|---|---|
| XS | board.size_options.xs |
| S | board.size_options.s |
| M | board.size_options.m |
| L | board.size_options.l |
| XL | board.size_options.xl |
Steps
- Read
workspace.config.yamlfor board field IDs and option IDs - Check if the issue is already on the board
- If not on board: add the issue to the project using
board.project_id - Set or update the requested fields using the field IDs and option IDs from config
- Report the changes
Output
## Context Anchors
- **Issue:** #<number> - <title>
## Board Updated
- **On board:** <added | already present>
- **Status:** <status value set>
- **Priority:** <priority value set>
- **Size:** <size value set>
## Next Step
Board fields updated.
**Approval Required:** No
Error Handling
| Error | Recovery |
|---|---|
| Issue not found | Verify the issue number |
| Issue not on board | Add to board first, then set fields |
| Field ID not in config | Check workspace.config.yaml for correct field IDs |
| Option ID not found | List available options from config, ask user to map |
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?