# Send HoneyDew 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "honeydew",
    "name": "HoneyDew",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/smartify-dot-ai/honeydew",
    "canonicalUrl": "https://clawhub.ai/smartify-dot-ai/honeydew",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/honeydew",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=honeydew",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "clawhub.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "honeydew",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T05:29:08.473Z",
      "expiresAt": "2026-05-11T05:29:08.473Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=honeydew",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=honeydew",
        "contentDisposition": "attachment; filename=\"honeydew-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "honeydew"
      },
      "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/honeydew"
    },
    "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/honeydew",
    "downloadUrl": "https://openagent3.xyz/downloads/honeydew",
    "agentUrl": "https://openagent3.xyz/skills/honeydew/agent",
    "manifestUrl": "https://openagent3.xyz/skills/honeydew/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/honeydew/agent.md"
  }
}
```
## Documentation

### HoneyDew

Use this skill when the user asks you to manage tasks, boards, cards, columns, or labels on their HoneyDew Kanban board.

### When to use

Creating, updating, moving, or deleting cards (tasks)
Listing boards, columns, or cards
Transferring cards between user and agent profiles
Managing labels (create, assign, remove)
Checking board summaries, overdue cards, or urgent items
Moving cards across boards

### Tracking tasks

The user can open the HoneyDew board in their browser (http://localhost:5173) to see all tasks, their status, and what work the agent has completed. Encourage the user to check the board regularly for updates.

### Assigning work to the user

When you need something from the user — a review, approval, input, or any manual step — create a task (or transfer an existing one) to the user's profile. It will appear on their board so they know action is needed. Let the user know you have assigned them a task and they should check HoneyDew.

### Connection

Base URL: http://localhost:8000 (override with env SMARTIFY_API_URL)
Docs URL: If optionally enabled by the user http://localhost:8001' (override with env SMARTIFY_DOCS_URL\`)
Auth: None (local app, no API key required)
Health check: GET /health — returns {"status": "healthy"} when the backend is running

If the API is not reachable, ask the user to start HoneyDew (./start.sh in the project root).

### API reference

All endpoints are prefixed with /api.

MethodEndpointDescriptionGET/api/boardsList all boardsPOST/api/boardsCreate a board (optional columns array)GET/api/boards/{id}Get board with columns and cardsDELETE/api/boards/{id}Delete a boardPOST/api/columnsCreate a column (board_id, name)PATCH/api/columns/{id}Update column name or positionDELETE/api/columns/{id}Delete a columnGET/api/cardsList cards (filters: board_id, column_id, priority, has_due_date)POST/api/cardsCreate a card (column_id, title, priority, profile, optional description, due_date)GET/api/cards/{id}Get card detailsPATCH/api/cards/{id}Update card fieldsDELETE/api/cards/{id}Delete a cardPOST/api/cards/{id}/moveMove card (column_id, position)POST/api/cards/{id}/move-to-boardMove card to another board (board_id, optional column_name)POST/api/cards/{id}/transferTransfer card to another profile (target_profile)GET/api/labelsList all labelsPOST/api/labelsCreate a label (name, color)POST/api/cards/{id}/labels/{label_id}Add label to cardDELETE/api/cards/{id}/labels/{label_id}Remove label from cardGET/api/cards/{id}/commentsList comments on a cardPOST/api/cards/{id}/commentsAdd a comment (body, optional profile)

Priority values: 1 = Low, 2 = Medium, 3 = High, 4 = Urgent.

### Create a task

curl -X POST http://localhost:8000/api/cards \\
  -H "Content-Type: application/json" \\
  -d '{"column_id": 1, "title": "Write docs", "priority": 2, "profile": "jarvis"}'

### Move a card to "In Progress"

First find the column ID:

curl http://localhost:8000/api/boards/1

Then move:

curl -X POST http://localhost:8000/api/cards/3/move \\
  -H "Content-Type: application/json" \\
  -d '{"column_id": 2, "position": 0}'

### Transfer a card to the user

curl -X POST http://localhost:8000/api/cards/3/transfer \\
  -H "Content-Type: application/json" \\
  -d '{"target_profile": "tony"}'

### Python tools (optional)

If the user has the HoneyDew repo, tools/kanban_tools.py provides a higher-level Python interface:

from kanban_tools import KanbanTools, Priority

kanban = KanbanTools()
card = kanban.create_task(title="Write docs", priority=Priority.HIGH)
kanban.move_card_to_column(card["id"], board_id=1, column_name="In Progress")
kanban.assign_to_user(card["id"])
kanban.mark_done(card["id"])

Key convenience methods: create_task, assign_to_user, assign_to_agent, move_card_to_column, move_card_to_board, mark_todo, mark_in_progress, mark_blocked, mark_done, get_board_summary, get_overdue_cards, get_urgent_cards.

### Task comments

Both users and agents can add comments to any task. Comments are visible in the task detail view in the UI. Always add a comment when:

You are blocked: Explain specifically what you need from the user (e.g. "Need API credentials for the staging environment before I can proceed").
You complete a task: Leave a brief summary of what you did and any decisions you made (e.g. "Refactored auth module into middleware, added 12 unit tests, all passing").
You need review or input: Describe what to look at and any open questions.
You hand off work: Note the current state so the next person (user or agent) has context.

curl -X POST http://localhost:8000/api/cards/3/comments \\
  -H "Content-Type: application/json" \\
  -d '{"body": "Finished the first pass, needs review.", "profile": "jarvis"}'

### Agent completion metadata

When you complete a task, you may report completion metadata via PATCH /api/cards/{id}. These optional fields are displayed in the HoneyDew UI on the task detail:

FieldTypeDescriptionagent_tokens_usedintTokens consumedagent_modelstringModel name (e.g. gpt-4o)agent_execution_time_secondsfloatExecution time in secondsagent_started_atstringISO 8601 datetime when work startedagent_completed_atstringISO 8601 datetime when work finished

Example with Python tools:

kanban.mark_done(
    card["id"],
    agent_tokens_used=4200,
    agent_model="gpt-4o",
    agent_execution_time_seconds=12.8,
    agent_started_at="2026-02-22T10:30:00Z",
    agent_completed_at="2026-02-22T10:30:12Z",
)

Or via curl after moving to Done:

curl -X PATCH http://localhost:8000/api/cards/5 \\
  -H "Content-Type: application/json" \\
  -d '{"agent_tokens_used": 4200, "agent_model": "gpt-4o", "agent_execution_time_seconds": 12.8, "agent_started_at": "2026-02-22T10:30:00Z", "agent_completed_at": "2026-02-22T10:30:12Z"}'
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: smartify-dot-ai
- Version: 1.0.2
## 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-04T05:29:08.473Z
- Expires at: 2026-05-11T05:29:08.473Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/honeydew)
- [Send to Agent page](https://openagent3.xyz/skills/honeydew/agent)
- [JSON manifest](https://openagent3.xyz/skills/honeydew/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/honeydew/agent.md)
- [Download page](https://openagent3.xyz/downloads/honeydew)