Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

openclaw-agent-feishu-onboardingOpenClaw Agent feishu 入门

Agent Skill

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

总安装

4,353

周安装

187

GitHub Stars

公开资料未说明

下载量

1,526
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-agent-feishu-onboarding

简介

openclaw-agent-feishu-onboarding 创建 OpenClaw 代理并板载飞书路由。

  • 具有明确的多步骤确认流程,确保配置准确性。
  • 当用户定义新代理角色或工作空间时使用。
  • 安装前需确认权限范围与维护状态,可能涉及第三方服务集成。
  • 建议结合来源仓库和原始 README 核验授权流程与数据安全措施。

SKILL.md

name
openclaw-agent-feishu-onboarding
description
Create OpenClaw agents and onboard Feishu routing with explicit multi-step confirmations. Use when the user needs to (1) define a new agent role and workspace, (2) collect and confirm Feishu route fields including peer.id, (3) apply account/peer bindings, and (4) validate routing and rollback safely.

OpenClaw Agent Feishu Onboarding

Standardize creation of new OpenClaw agents and Feishu route binding. Use this skill for operational execution with strict confirmations.

Runtime Prerequisites

  • Required binaries:

- openclaw (CLI available in PATH) - python (3.x, used by scripts/validate_feishu_bindings.py)

  • Preflight checks:

- openclaw --version - python --version

  • Data access behavior:

- Reads local OpenClaw config (openclaw.json / OPENCLAW_CONFIG_PATH) - May write local agent and routing state (agents.list[], bindings[]) - Do not run on machines where local config access is not permitted

Core Scope

  • Create a new agent (agents.list + workspace + identity).
  • Confirm Feishu route target fields before any write.
  • Bind routing using bindings.match with channel/accountId/peer.
  • Verify final route and provide rollback steps.

Required Inputs

  • Agent intent:

- Agent purpose and responsibility boundary. - Explicit out-of-scope items.

  • Agent spec:

- agentId (lowercase, digits, hyphen). - workspace path. - model id. - Identity object in agents.list[]: - use identity object (for example identity.name, identity.emoji, identity.theme) - do not rely on top-level name only

  • Feishu route spec:

- match.channel: feishu - match.accountId: for example main - match.peer.kind: group (or dm when needed) - match.peer.id: Feishu session id (group id like oc_xxx or dm id)

Hard Validation Gates (Must Pass)

  • agents.list[] entry for new agent must include identity object.
  • identity.name must be set for human-readable routing/debug checks.
  • match.accountId must be one of channels.feishu.accounts keys (for example main).
  • Never put Feishu group/session id (oc_xxx) into match.accountId.
  • Group routing must include match.peer = { kind: "group", id: "oc_xxx" }.
  • If routing is for a specific group but match.peer is missing, abort and correct config before continuing.
  • Before write, print the final binding object and require explicit confirmation.

Multi-Step Confirmation Protocol

Do not skip confirmations. Ask and confirm in this exact order.

  1. Confirmation A: Agent Goal

- Confirm what this agent should do. - Confirm what this agent must not do.

  1. Confirmation B: Agent Configuration

- Confirm agentId, workspace, model, identity fields. - Confirm naming conventions and collision check (agentId uniqueness).

  1. Confirmation C: Feishu Routing Target

- Confirm accountId. - Confirm peer.kind. - Confirm peer.id (explicitly state this is the Feishu session id). - Confirm whether this is a precise peer binding or account-level fallback.

  1. Confirmation D: Execution Approval

- Summarize all fields in one compact block. - Ask for final go/no-go before writing config.

Execution Workflow

  1. Discover current state:

- openclaw agents list - openclaw config get agents.list --json - openclaw config get channels.feishu.accounts --json - openclaw directory groups list --channel feishu --account <account-id> --query "<keyword>" --json - openclaw config get bindings --json

  1. Create agent:

- openclaw agents add ... - Optional: openclaw agents set-identity ...

  1. Apply routing:

- Use openclaw agents bind for account-scoped binding when needed. - Ensure peer-precise rule exists in top-level bindings[] with match.peer.

  1. Validate:

- python -X utf8 ./scripts/validate_feishu_bindings.py --config <openclaw.json-path> - openclaw config validate --json - ensure target agents.list[] entry has identity.name - Check bindings[] entry content and ordering. - Ensure every group-targeted rule has match.peer.kind = "group" and match.peer.id = "oc_xxx".

  1. Reload/restart gateway if required by deployment policy.

Routing Rules

  • peer rule is the precise route key for a specific Feishu conversation.
  • Use match.peer.id to bind a specific session (group oc_xxx).
  • If both peer-level and account-level bindings exist, keep peer rule first.
  • Avoid broad fallback rules until peer-specific routes are confirmed.
  • Wrong example (forbidden): match.accountId: "oc_xxx" without match.peer.

Agent list entry should follow this shape:

{
  "id": "data-analyst",
  "workspace": "C:\\Users\\Administrator\\.openclaw\\workspace-dataAnalysis",
  "agentDir": "C:\\Users\\Administrator\\.openclaw\\agents\\data-analyst\\agent",
  "identity": {
    "name": "data-analyst"
  }
}

Canonical peer binding object:

{
  "agentId": "<agent-id>",
  "match": {
    "channel": "feishu",
    "accountId": "main",
    "peer": {
      "kind": "group",
      "id": "oc_xxx"
    }
  }
}

Safety and Rollback

  • Never delete agents unless explicitly requested.
  • Before changing bindings, capture current bindings snapshot.
  • If wrong route is applied, revert to previous binding set and re-validate.
  • Prefer reversible, explicit changes and post-change verification.

Why It Still Routes to main

  • Binding did not match the real incoming peer.id (most common).
  • bindings[] was written but gateway runtime did not reload the latest config.
  • match.accountId mismatched current Feishu account key.
  • Target agent exists but agents.list[] entry is malformed (missing required fields such as identity object expected by your convention).
  • Message arrived in a different conversation than the configured group.

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.5%
按下载量换算1,152

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills