← 返回 Skills 市场
smartify-dot-ai

HoneyDew

作者 smartify-dot-ai · GitHub ↗ · v1.0.2
cross-platform ⚠ suspicious
517
总下载
1
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install honeydew
功能描述
Manage HoneyDew Kanban boards, cards, and labels via the REST API.
使用说明 (SKILL.md)

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.

Method Endpoint Description
GET /api/boards List all boards
POST /api/boards Create a board (optional columns array)
GET /api/boards/{id} Get board with columns and cards
DELETE /api/boards/{id} Delete a board
POST /api/columns Create a column (board_id, name)
PATCH /api/columns/{id} Update column name or position
DELETE /api/columns/{id} Delete a column
GET /api/cards List cards (filters: board_id, column_id, priority, has_due_date)
POST /api/cards Create a card (column_id, title, priority, profile, optional description, due_date)
GET /api/cards/{id} Get card details
PATCH /api/cards/{id} Update card fields
DELETE /api/cards/{id} Delete a card
POST /api/cards/{id}/move Move card (column_id, position)
POST /api/cards/{id}/move-to-board Move card to another board (board_id, optional column_name)
POST /api/cards/{id}/transfer Transfer card to another profile (target_profile)
GET /api/labels List all labels
POST /api/labels Create a label (name, color)
POST /api/cards/{id}/labels/{label_id} Add label to card
DELETE /api/cards/{id}/labels/{label_id} Remove label from card
GET /api/cards/{id}/comments List comments on a card
POST /api/cards/{id}/comments Add a comment (body, optional profile)

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

Examples

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:

Field Type Description
agent_tokens_used int Tokens consumed
agent_model string Model name (e.g. gpt-4o)
agent_execution_time_seconds float Execution time in seconds
agent_started_at string ISO 8601 datetime when work started
agent_completed_at string ISO 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"}'
安全使用建议
This skill appears to be what it claims: an instruction-set for interacting with a local HoneyDew REST API. Before installing or using it: 1) Confirm you actually run HoneyDew locally (the skill assumes a local service at http://localhost:8000 and a UI at http://localhost:5173). 2) Inspect any start/install scripts (./start.sh, ./install.sh) in the HoneyDew repo before running them. 3) Be cautious not to point SMARTIFY_API_URL at public or untrusted endpoints if you lack authentication — the app is documented as unauthenticated and exposing it could leak task data. 4) Note the minor metadata mismatch: SKILL.md references SMARTIFY_API_URL/SMARTIFY_DOCS_URL even though the registry lists no env vars; consider updating metadata or confirming expected env usage. 5) If you need stronger guarantees, review the linked GitHub repo code (start scripts, server defaults) to confirm there are no unexpected network calls or credential handling.
功能分析
Type: OpenClaw Skill Name: honeydew Version: 1.0.2 The skill is classified as suspicious due to clear prompt injection vulnerabilities present in `SKILL.md` and `README.md`. These files contain direct instructions for the AI agent (or user) to execute shell commands such as `./start.sh`, `./install.sh`, and `python scripts/seed_board_for_screenshot.py`. While the apparent intent is to guide the setup of the prerequisite HoneyDew application, an AI agent with shell access could interpret these as direct commands to execute, potentially leading to arbitrary command execution. There is no evidence of intentional malicious behavior like data exfiltration or backdoors, but the explicit command execution instructions pose a significant risk.
能力评估
Purpose & Capability
Name/description align with the instructions: the skill documents REST endpoints for a locally hosted HoneyDew app and helper Python tooling. The actions the skill performs (create/move/update cards, labels, boards) match the stated purpose.
Instruction Scope
SKILL.md stays within the scope of interacting with a local HoneyDew API and optional local repo/tools. It asks the agent to call local HTTP endpoints, run ./start.sh if the API isn't reachable, and optionally use tools/kanban_tools.py if the repo is present. Minor issues: SKILL.md references environment overrides (SMARTIFY_API_URL, SMARTIFY_DOCS_URL) and a local UI at http://localhost:5173, and includes a small quoting typo for the docs URL. The instructions do not direct the agent to read unrelated system files or to transmit data to external endpoints beyond the configured API.
Install Mechanism
Instruction-only skill with no install spec and no code files packaged into the skill — lowest install risk. The README references running install/start scripts in the HoneyDew repo, but those are part of the application the user would run locally, not an installer bundled with the skill.
Credentials
The registry lists no required environment variables or credentials (and no secrets), which is appropriate for a local, unauthenticated app. However SKILL.md documents optional env overrides (SMARTIFY_API_URL and SMARTIFY_DOCS_URL) that are not declared in the metadata — a minor mismatch. No sensitive credentials are requested.
Persistence & Privilege
The skill does not request always:true, persistent system config paths, or cross-skill configuration. It uses normal autonomous invocation defaults (disable-model-invocation=false) which is expected for a functional skill.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install honeydew
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /honeydew 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
Display name HoneyDew only
v1.0.1
Screenshot, nav by Smartify, card token/time badges, seed script
v1.0.0
Initial release
元数据
Slug honeydew
版本 1.0.2
许可证
累计安装 0
当前安装数 0
历史版本数 3
常见问题

HoneyDew 是什么?

Manage HoneyDew Kanban boards, cards, and labels via the REST API. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 517 次。

如何安装 HoneyDew?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install honeydew」即可一键安装,无需额外配置。

HoneyDew 是免费的吗?

是的,HoneyDew 完全免费(开源免费),可自由下载、安装和使用。

HoneyDew 支持哪些平台?

HoneyDew 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 HoneyDew?

由 smartify-dot-ai(@smartify-dot-ai)开发并维护,当前版本 v1.0.2。

💬 留言讨论