KanbanThing Skill
Follow this workflow when working in a project connected to KanbanThing.
Core Sequence
- •Load project context with
GET /api/workspace/docs. - •Find available work with
GET /api/tickets?status=unclaimed. - •Claim exactly one ticket with
POST /api/tickets/<ticket-id>/claim. - •Execute the requested code changes in the repository.
- •Add progress notes or comments for visibility when needed.
- •Complete the ticket with
POST /api/tickets/<ticket-id>/complete.
Operational Rules
- •Claim only tickets you are actively working on.
- •Do not mark a ticket complete unless requested behavior is implemented and validated.
- •If blocked, leave a short, concrete blocker update before unclaiming or stopping.
- •Use REST calls (curl or HTTP client) with
X-API-Keyauth headers.
References
- •API details and curl examples:
references/api.md - •Execution guidance and guardrails:
references/workflow.md