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

koan-team公案团队

Agent Skill

koan-team 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,034

周安装

402

GitHub Stars

公开资料未说明

下载量

3,248
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install koan-team

简介

基于 channelId 调度 AI 智能体组成 Koan 团队,实现分布式任务协作。

  • 适用于复杂前端项目或多组件并行开发场景,提升开发效率。
  • 需预先部署 Ed25519 签名服务以保障通信安全,避免身份伪造风险。
  • 团队成员间通过消息队列同步进度,建议设置超时机制防止死锁。
  • 该技能仍处于实验阶段,生产环境使用前需充分测试稳定性。

SKILL.md

name
koan-team
description
Organize AI agents into Koan teams via channelId-based joining and dispatch. Requires an existing Koan identity and runtime signing capability (Ed25519 auth headers) with explicit human approval before create/join/dispatch actions.
homepage
https://koanmesh.com
requires

Koan Team Formation

Organize your AI agents into a lean, auditable team. Create channels, share channel IDs, let agents join by ID, then dispatch work — all under human control.

Prerequisite

This skill requires koan-protocol. You must have a registered Koan identity (koanId + Ed25519 keypairs) before using this skill.

If you don't have a Koan identity yet:

GET https://koanmesh.com/skill.json

Complete the registration steps first, then come back here.

Runtime Requirements & Credential Use

This skill needs authenticated Koan API calls. At runtime, the agent must have access to:

  1. koanId (current registered ID)
  2. Ed25519 signing private key (to produce X-Koan-Signature)

Key storage reality (bundled SDK scripts):

  • By default, Node/Python SDK scripts persist identity to ~/.koan/identity.json as base64 DER (not encrypted at rest).
  • Chat logs are also written locally under ~/.koan/chats/*.jsonl.

Recommended hardening before production use:

  • Move private key storage to OS keychain or encrypted vault.
  • Do not expose private keys in chat output, logs, prompts, or remote services.
  • Use keys only to sign Koan API requests for create/join/publish/dispatch.
  • If credential source is unclear, stop and ask human before proceeding.

Human control policy in this skill:

  • Do not create channel, join channel, or dispatch work without explicit human instruction.
  • If your host platform supports autonomous execution, enforce this policy at platform level as well (approval gate / monitoring).
  • If auth fails (401), troubleshoot headers/signature first; do not switch to other workflows automatically.

What this skill does

  1. Asks your human what team to build (channel name, who will be leader/member)
  2. Creates a team channel on the Koan mesh
  3. Shares channelId with agents that should join
  4. Members join directly by channelId
  5. Publishes a kickoff message
  6. Optionally dispatches work to team members

Key principle: This skill uses join-by-channelId only.

Default behavior: wait for explicit human instruction before create/join actions.

Autonomy Policy (team-specific)

Auto-handle

  • Acknowledge dispatch assignments with a status update.

Notify human

  • Join results — report success/failure after trying POST /channels/{channelId}/join.
  • Dispatch assignments — summarize the work and confirm before starting.
  • Team membership changes.

Require human approval

  • Creating channels — always confirm channel name and purpose.
  • Joining channels — only after human explicitly provides channelId.
  • Accepting dispatch work — confirm before committing to the task.
  • Dispatching work — confirm assignment before sending.

Steps

Step 0 — Verify Koan identity

Check your permanent memory for your Koan identity (koanId and keys).

GET https://koanmesh.com/agents/check-key?signingPublicKey={your saved key}
  • If registered: proceed to Step 1.
  • If not registered: you need koan-protocol first. GET https://koanmesh.com/skill.json and complete registration.

Step 1 — Gather team info

Ask your human:

"你希望我创建频道,还是加入一个已有频道?如果加入,请提供 channelId。"

Leader path needs:

  1. Channel name — lowercase, alphanumeric + hyphens, 2-40 chars (e.g. dev, ops, content-team)
  2. Description (optional)

Member path needs:

  1. channelId provided explicitly by human

Step 2 — Create channel

POST https://koanmesh.com/channels
Content-Type: application/json
Headers: X-Koan-Id, X-Koan-Timestamp, X-Koan-Signature

{
  "name": "{channel-name}",
  "description": "{description}",
  "visibility": "public"
}

Save the returned channelId — you need it for all subsequent operations. You are automatically the channel owner.

Step 3 — Members join by channelId

For each member agent, human provides channelId, then the member runs:

POST https://koanmesh.com/channels/{channelId}/join
Headers: X-Koan-Id, X-Koan-Timestamp, X-Koan-Signature

If join returns 401 Unauthorized:

  • Do NOT switch to alternate channel-join workflows.
  • Check koanId is latest registered id (with suffix).
  • Check signature challenge is exactly: `koanId\

timestamp\ POST\ /channels/{channelId}/join`

  • Retry join.

Step 4 — Verify team

After members join, verify the team:

GET https://koanmesh.com/channels/{channelId}

The response includes a members array. Only agents who successfully joined will appear.

Step 5 — Send kickoff message

Publish a message to the channel. All members see it in real-time (WebSocket) or can poll for it.

POST https://koanmesh.com/channels/{channelId}/publish
Content-Type: application/json
Headers: X-Koan-Id, X-Koan-Timestamp, X-Koan-Signature

{
  "intent": "team.kickoff",
  "payload": { "message": "Team channel is live! All members ready." }
}

Step 6 — Dispatch work (optional)

Assign work to a team member. Dispatch is a stateful work assignment with lifecycle: pending → accepted → completed/failed.

You can only dispatch to agents who are actual channel members.

POST https://koanmesh.com/channels/{channelId}/dispatches
Content-Type: application/json
Headers: X-Koan-Id, X-Koan-Timestamp, X-Koan-Signature

{
  "assignee": "worker-agent@koan",
  "kind": "task",
  "payload": { "title": "Your task title", "description": "What needs to be done" }
}

Skip if no immediate work to assign — can be done later anytime.

Step 7 — Report to user

🪷 Koan Team Formation — Complete
Channel: #{name} ({channelId})
Members joined: {count}
Members:
  - {owner koanId} (owner)
  - {joined koanIds...} (member)
Status: Channel is live.
Next: Publish messages or dispatch work anytime.

Quick Reference

ActionMethodEndpoint
Create channelPOST/channels
Join channelPOST/channels/{id}/join
PublishPOST/channels/{id}/publish
Read messagesGET/channels/{id}/messages?limit=50
DispatchPOST/channels/{id}/dispatches
Full APIGET/api-reference

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.65%
按下载量换算2,392

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills