AgentSkillsCN

kanbanthing

软件代理的 KanbanThing 板块操作。当您需要阅读工作区文档、查找任务、认领工作、发布进度、完成工单,或使用工作区范围的 API 密钥调用 KanbanThing REST API 时,可使用此技能。

SKILL.md
--- frontmatter
name: kanbanthing
description: KanbanThing board operations for software agents. Use when you need to read workspace docs, find tasks, claim work, post progress, complete tickets, or call the KanbanThing REST API with workspace-scoped API keys.

KanbanThing Skill

Follow this workflow when working in a project connected to KanbanThing.

Core Sequence

  1. Load project context with GET /api/workspace/docs.
  2. Find available work with GET /api/tickets?status=unclaimed.
  3. Claim exactly one ticket with POST /api/tickets/<ticket-id>/claim.
  4. Execute the requested code changes in the repository.
  5. Add progress notes or comments for visibility when needed.
  6. 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-Key auth headers.

References

  • API details and curl examples: references/api.md
  • Execution guidance and guardrails: references/workflow.md