Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

honeydewhoneydew 搜索

Agent Skill

honeydew 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

16,389

周安装

663

GitHub Stars

1

下载量

5,145
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:honeydew(honeydew 搜索)
来源仓库:https://github.com/smartify-dot-ai/honeydew
安装命令:
openclaw skills install honeydew
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install honeydew

简介

honeydew 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于 HoneyDew 看板管理,支持 REST API 操作卡片和标签。
  • 通过 openclaw skills install honeydew 安装,需确认权限范围和操作边界。
  • 安装前建议确认维护状态及是否会触发联网、命令执行或文件读写。
  • 可结合来源仓库和原始 README 继续核验具体用法和功能细节。

SKILL.md

name
Honeydew
description
Manage HoneyDew Kanban boards, cards, and labels via the REST API.
homepage
https://github.com/smartify-inc/Honeydew
metadata
{"openclaw": {"emoji": "📋"}}

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.

MethodEndpointDescription
GET/api/boardsList all boards
POST/api/boardsCreate a board (optional columns array)
GET/api/boards/{id}Get board with columns and cards
DELETE/api/boards/{id}Delete a board
POST/api/columnsCreate a column (board_id, name)
PATCH/api/columns/{id}Update column name or position
DELETE/api/columns/{id}Delete a column
GET/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 details
PATCH/api/cards/{id}Update card fields
DELETE/api/cards/{id}Delete a card
POST/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 labels
POST/api/labelsCreate 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}/commentsList comments on a card
POST/api/cards/{id}/commentsAdd 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:

FieldTypeDescription
agent_tokens_usedintTokens consumed
agent_modelstringModel name (e.g. gpt-4o)
agent_execution_time_secondsfloatExecution time in seconds
agent_started_atstringISO 8601 datetime when work started
agent_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"}'

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.12%
按下载量换算4,122

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills