← 返回 Skills 市场
百科虾
作者
beyondbright
· GitHub ↗
· v2.2.1
· MIT-0
244
总下载
0
收藏
1
当前安装
41
版本数
在 OpenClaw 中安装
/install walter-baikexia
功能描述
蜗牛公司百科虾技能包。为员工解答公司相关问题(制度、福利、流程、组织架构等)。当用户询问公司相关问题时触发。知识库没有的问题一律不答,不编造,不联网搜索。
安全使用建议
This skill appears to do exactly what it says: sync Feishu wiki pages into an agent-local cache, build a search index, and send replies via Feishu. Before installing, confirm the following: (1) openclaw.json in the operator's home (~/.openclaw/) will be read for Feishu appId/appSecret — only provide credentials that are scoped to this agent/app. (2) The skill logs API responses (sync.js prints debug info) and may call contact APIs to resolve user names — those calls involve employee identifiers and names, so restrict who can run the agent and where logs are stored. (3) The scripts write cache and temp files under the agent workspace (e.g., cache/, temp/) — run in an isolated workspace to avoid accidental exposure. (4) Review wiki_list.json to ensure it only points to approved internal wikis. If you need stronger assurance, run the scripts in a controlled environment (no production credentials) and inspect logs/output during a sync to verify behavior.
功能分析
Type: OpenClaw Skill
Name: walter-baikexia
Version: 2.2.1
The walter-baikexia skill bundle is a legitimate internal Q&A assistant designed to sync and search company knowledge from Feishu (Lark) Wikis. The bundle includes scripts for content synchronization (sync.js), BM25-based searching (search.js), and message delivery via the Feishu API (send-message.js). While the scripts access sensitive credentials (App ID and Secret) from the OpenClaw configuration, they only communicate with the official Feishu API (open.feishu.cn) to perform their stated functions. The instructions in SKILL.md and the role definitions (SOUL.md) are explicitly designed to restrict the agent to internal data and prevent hallucinations or unauthorized web searches. Although sync.js contains minor coding errors (e.g., undefined variables like WIKI_TOKEN), there is no evidence of malicious intent, data exfiltration, or prompt injection attacks.
能力标签
能力评估
Purpose & Capability
Name/description (公司内部百科问答) match the actual behavior: scripts sync Feishu wiki content, index content, search it, and send replies via Feishu. The required credentials (appId/appSecret stored in openclaw.json) are appropriate for Feishu integration.
Instruction Scope
SKILL.md instructs creating an isolated agent workspace, running sync/search/send scripts, and storing credentials in openclaw.json. The runtime instructions and scripts only read/write the agent cache, wiki_list.json, and openclaw.json and call Feishu APIs — all within the stated scope. The README explicitly forbids web searching and fabrication.
Install Mechanism
No install spec; skill is placed into the agent workspace and run with Node.js. No external arbitrary downloads or installers are used. Scripts are plain JS and run locally.
Credentials
The only sensitive data accessed are Feishu appId/appSecret from ~/.openclaw/openclaw.json (and optional OPENCLAW_AGENT_NAME env var). These are necessary and proportional for contacting Feishu APIs. The skill does not request unrelated credentials or config paths.
Persistence & Privilege
Skill is not always-enabled and does not request elevated platform privileges. It stores cache under the agent workspace and uses openclaw.json-managed credentials; it does not modify other skills or system-wide settings.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install walter-baikexia - 安装完成后,直接呼叫该 Skill 的名称或使用
/walter-baikexia触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.2.1
修复乱码检测,更新AGENTS.md消息发送规范,更新MEMORY.md自检机制
v2.5.0
docs: sync SKILL.md knowledge paths and mention format
v2.4.0
perf: search index cache + feishu token cache for concurrent load
v2.3.0
fix AT bug, temp path, sync SKILL.md
v2.2.0
## walter-baikexia 2.2.0 更新日志
- 更新 scripts/sync.js 脚本和 scripts/wiki_list.json 文件。
- 优化知识库同步脚本以提升同步流程的可靠性或适配新文档清单结构。
- 保持对飞书知识库增量/全量同步和本地缓存的核心流程。
v2.1.0
- 新增 scripts/wiki_list.json 文件,用于知识库文档列表配置。
- 更新 sync.js 实现以支持 wiki_list.json,提高同步灵活性与配置化能力。
v2.0.8
walter-baikexia 2.0.8
- AGENTS.md 角色文件模板增加多用户消息支持和技术内容原样复制操作规范说明
- 对模板中消息发送操作进行了详细分步示例(包含 sender_id 用法与临时文件命名)
- 强调技术内容(如链接、MEDIA 路径、AT 标签、Block ID)必须从 content.json 原样复制,禁止手动修改
v2.0.7
- Improved scripts/sync.js to enhance knowledge base synchronization reliability.
- No user-facing features or interface changes.
v2.0.6
- Improved scripts/search.js (content not shown; check commit for details)
- No changes to public documentation or interfaces
- Version bump to 2.0.6
v2.0.5
- Improved formatting and structure in SKILL.md for clarity and consistency.
- No functional or behavioral changes to core scripts; only documentation updated.
- Agent deployment steps, file paths, and command usage instructions are now clearer.
- No user-facing features were altered.
v2.0.4
- Updated scripts/send-message.js (details not shown).
- No user-facing changes documented in SKILL.md.
- Internal update; usage and setup instructions remain unchanged.
v2.0.3
- Improved scripts/sync.js for more robust or efficient knowledge base syncing.
- No changes to user-facing features or configuration steps.
- Documentation and deployment instructions remain unchanged.
v2.0.2
- Minor adjustments to scripts/sync.js.
- No changes to feature set or user-facing behavior.
v2.0.1
- Internal improvements in scripts/send-message.js.
- No user-facing changes or documentation updates.
v2.0.0
No file changes detected in this version. No updates or modifications have been made.
v1.4.18
- Improved mention (@人) handling in both search.js and send-message.js scripts
- Enhanced stability and parsing logic when extracting and sending content with AT 标签 (mention tags)
- Minor code quality and maintainability updates in scripts
v1.4.17
- Updated scripts/search.js (details not shown).
- No user-visible changes documented in SKILL.md; documentation remains unchanged.
- Maintains the core functionality and guidelines for deployment and usage.
v1.4.16
- Improved `scripts/search.js` to better extract AT tag context during search.
- No changes to setup, core functionality, or skill usage.
v1.4.15
- 新增 scripts/search.js 脚本,支持 AT 标签上下文检索。
- 文件结构文档中加入了 search.js 并简要说明功能。
- 其余 Skill 说明和用法未变化。
v1.4.14
- Documentation updates in SKILL.md: no behavioral or logic changes to code.
- No functional changes; usage, commands, and deployment remain the same.
元数据
常见问题
百科虾 是什么?
蜗牛公司百科虾技能包。为员工解答公司相关问题(制度、福利、流程、组织架构等)。当用户询问公司相关问题时触发。知识库没有的问题一律不答,不编造,不联网搜索。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 244 次。
如何安装 百科虾?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install walter-baikexia」即可一键安装,无需额外配置。
百科虾 是免费的吗?
是的,百科虾 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
百科虾 支持哪些平台?
百科虾 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 百科虾?
由 beyondbright(@beyondbright)开发并维护,当前版本 v2.2.1。
推荐 Skills