# Send Kanban to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "kanban",
    "name": "Kanban",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ivangdavila/kanban",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/kanban",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/kanban",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kanban",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "board-template.md",
      "discovery-protocol.md",
      "memory-template.md",
      "processing-rules.md",
      "setup.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "kanban",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T00:50:53.735Z",
      "expiresAt": "2026-05-09T00:50:53.735Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kanban",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kanban",
        "contentDisposition": "attachment; filename=\"kanban-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "kanban"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/kanban"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/kanban",
    "downloadUrl": "https://openagent3.xyz/downloads/kanban",
    "agentUrl": "https://openagent3.xyz/skills/kanban/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kanban/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kanban/agent.md"
  }
}
```
## Documentation

### Setup

If ~/kanban/ does not exist or is empty, read setup.md silently and initialize only after user confirmation.

### When to Use

Use this skill when the user wants a Kanban system the agent can maintain across projects and conversations. The agent should build project-specific boards, remember where each board lives, and process tasks with consistent rules.

### Architecture

Memory lives in ~/kanban/. See memory-template.md for base files, board-template.md for board structure, and discovery-protocol.md for project routing.

~/kanban/
├── memory.md                  # Global status, integration, defaults
├── index.md                   # Project registry and board location map
├── templates/
│   └── board-template.md      # Canonical board format copy
└── projects/
    └── {project-id}/
        ├── board.md           # Active board for this project
        ├── rules.md           # Project-specific lane and policy definitions
        ├── log.md             # Board write log
        └── archive/

Optional project-local mode:

{workspace}/.kanban/
├── board.md
├── rules.md
└── log.md

### Quick Reference

Use the smallest relevant file for the current task.

TopicFileSetup behaviorsetup.mdMemory and registry templatememory-template.mdBoard schema and examplesboard-template.mdWhere to find each project boarddiscovery-protocol.mdHow to process and update cardsprocessing-rules.md

### 1. Resolve Project Context Before Reading or Writing

Run the discovery sequence in discovery-protocol.md at the start of each conversation.
If project scope is ambiguous, ask once before writing.

### 2. Persist Routing So Any Agent Can Continue

Keep the Kanban index file updated with workspace path, project aliases, and primary board path.
After each successful write, update last_used for the project entry.

### 3. Allow Custom Board Shapes with a Stable Core Schema

Users can rename lanes or add custom columns per project in the project rules file.
Every card must keep parseable core fields: id, title, state, priority, owner, updated.

### 4. Process Cards Deterministically

Follow the exact decision order in processing-rules.md for prioritization and movement.
Never skip blockers, dependencies, or explicit WIP limits.

### 5. Keep Writes Atomic and Logged

Update the board file and append one line to the project log in the same operation cycle.
If a write fails midway, report partial state instead of claiming success.

### 6. Keep Project Boards Isolated

Never move or edit cards across different project boards without explicit user intent.
For cross-project requests, produce a plan first, then apply updates per board.

### 7. Preserve Continuity Across Conversations

On first message of a new conversation, resolve board location and load current state before proposing work.
If no board exists, initialize from board-template.md, register it in the index file, and continue.

### Common Traps

Using one global board for all projects -> priorities and ownership become ambiguous.
Renaming lanes without updating state mapping in the project rules file -> cards become unprocessable.
Writing board updates without refreshing the index file -> next agent session cannot locate the board.
Keeping tasks without IDs -> duplicate card updates and broken references.
Marking work as done without log entry -> no audit trail for later sessions.

### Security & Privacy

Data that stays local:

Board files and project registry in ~/kanban/ or {workspace}/.kanban/.

Data that leaves your machine:

None by default.

This skill does NOT:

Make undeclared network requests.
Modify files outside the selected Kanban scope.
Invent board history when logs are missing.

### Related Skills

Install with clawhub install <slug> if user confirms:

workflow - operational workflow design and execution loops
projects - project organization and cross-project governance
delegate - owner assignment and task handoff protocols
daily-planner - daily planning and task sequencing

### Feedback

If useful: clawhub star kanban
Stay updated: clawhub sync
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T00:50:53.735Z
- Expires at: 2026-05-09T00:50:53.735Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kanban)
- [Send to Agent page](https://openagent3.xyz/skills/kanban/agent)
- [JSON manifest](https://openagent3.xyz/skills/kanban/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kanban/agent.md)
- [Download page](https://openagent3.xyz/downloads/kanban)