Skip to content

开发者 Skill 推荐

开发者使用 OpenClaw 时,建议先安装少量高频 Skill,把代码阅读、Issue/PR、浏览器验证、命令执行和数据库排查跑通。下面给出的是可在 ClawHub 搜索到的具体名称和安装名。

安装前先确认

ClawHub 上的 Skill 会持续更新。安装前建议先执行 openclaw skills info <安装名>,确认发布者、权限说明和最近更新时间。

推荐 Skill

推荐名称安装名适合场景权限建议
Githubgithub查看 Issue、PR、CI、提交记录,生成变更说明先只读,写入 PR / Issue 前确认
Agent Browseragent-browser-clawdbot打开页面、操作浏览器、做前端验证和截图先用于本地或测试环境
claw-shellclaw-shell在受控会话里执行构建、测试、脚本命令禁止默认执行删除、重置、迁移数据
Database Operationsdatabase-operations设计表结构、优化 SQL、排查索引和 N+1 问题生产库只读,危险 SQL 人工确认
Linearlinear管理 Linear issue、项目、周期和团队任务写入状态、负责人、优先级前确认
JIRAjira查询 Jira 工单、Sprint、状态流转和评论写操作需要确认
PDF Text Extractorpdf-text-extractor从 PDF 中抽取文本、处理资料和报告不处理敏感文档或先脱敏
Tavily AI Searchtavily查官方文档、技术资料、近期信息并附来源需要 Tavily API Key,要求来源链接

安装示例

先搜索确认:

bash
openclaw skills search "github"
openclaw skills info github

安装常用开发组合:

bash
openclaw skills install github
openclaw skills install agent-browser-clawdbot
openclaw skills install claw-shell
openclaw skills install database-operations

查看已安装 Skill:

bash
openclaw skills list
openclaw skills check

推荐安装顺序

  1. 先安装 github,把代码协作和 PR 流程跑通。
  2. 前端或网页项目再安装 agent-browser-clawdbot
  3. 本地测试稳定后,再启用 claw-shell
  4. 需要处理数据库、工单或项目管理时,再安装 database-operationslinearjira

典型工作流

代码审查:

text
Read this PR diff, list issues by risk, and include file and line references.

前端验证:

text
Open the local page, check mobile and desktop layouts, capture screenshots, and list reproducible issues.

测试修复:

text
Run the relevant tests, locate the failure cause, and only modify code directly related to the failure.

数据库排查:

text
Inspect this table's indexes and slow-query risks in read-only mode. Do not modify data.

安全建议

  • 对生产仓库默认只读
  • Shell Skill 不要默认允许删除、重置、迁移数据
  • 数据库 Skill 使用只读账号
  • 写入代码前先让 Agent 给出修改范围
  • 对外部 ClawHub Skill 先阅读 SKILL.md

适合的模型

开发者场景建议优先使用代码和推理能力较强的模型,例如:

text
xikapi/gpt-5.4
xikapi/YOUR_MODEL_ID
xikapi/YOUR_MODEL_ID

参考链接