作者:互联网 时间: 2026-08-09 10:20:01
飞书进化器封装器是一个专门的管理层,旨在增强 Openclaw Skills 生态系统中的能力进化器。其主要目的是自动化进化循环的启动、停止和监控,同时提供与飞书的深度集成以进行实时报告。通过注入 EVOLVE_REPORT_TOOL 等特定环境变量,它使 AI 智能体能够将进度更新作为丰富的交互式卡片直接发送到团队沟通渠道。
该技能对于需要维持连续智能体改进循环而无需人工监督的开发人员至关重要。它通过生成 Markdown 仪表板并将历史记录导出到协作文档,弥合了原始技术进化日志与可操作业务洞察之间的差距,使其成为在生产环境中使用 Openclaw Skills 的基石。
下载入口:https://github.com/openclaw/skills/tree/main/skills/autogame-17/feishu-evolver-wrapper从源直接安装技能的最快方式。
npx clawhub@latest install feishu-evolver-wrapper
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
<project>/skills/
优先级:工作区 > 本地 > 内置
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 feishu-evolver-wrapper。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
要在 Openclaw Skills 框架内开始使用此技能,可以使用以下命令:
# 执行启用飞书报告的主进化循环
node skills/feishu-evolver-wrapper/index.js
# 根据最近的进化指标生成可视化 Markdown 仪表板
node skills/feishu-evolver-wrapper/visualize_dashboard.js
# 管理守护进程生命周期(例如检查状态或确保其正在运行)
node skills/feishu-evolver-wrapper/lifecycle.js status
node skills/feishu-evolver-wrapper/lifecycle.js ensure
该技能使用以下结构组织进化数据和报告元数据:
| 组件 | 路径 | 描述 |
|---|---|---|
| 事件日志 | assets/gep/events.jsonl |
每个进化事件和结果的顺序日志。 |
| 仪表板 | visualize_dashboard.js |
生成性能趋势的 Markdown 摘要。 |
| 生命周期控制 | lifecycle.js |
管理进化循环的 PID 文件和进程状态。 |
| 报告配置 | 环境变量 | 配置飞书 Webhook 和文档导出目标。 |
name: feishu-evolver-wrapper
description: Feishu-integrated wrapper for the capability-evolver. Manages the evolution loop lifecycle (start/stop/ensure), sends rich Feishu card reports, and provides dashboard visualization. Use when running evolver with Feishu reporting or when managing the evolution daemon.
A lightweight wrapper for the capability-evolver skill. It injects the Feishu reporting environment variables (EVOLVE_REPORT_TOOL) to enable rich card reporting in the Master's environment.
# Run the evolution loop
node skills/feishu-evolver-wrapper/index.js
# Generate Evolution Dashboard (Markdown)
node skills/feishu-evolver-wrapper/visualize_dashboard.js
# Lifecycle Management (Start/Stop/Status/Ensure)
node skills/feishu-evolver-wrapper/lifecycle.js status
assets/gep/events.jsonl.evolver_watchdog_robust (runs lifecycle.js ensure every 10 min).