将编码任务委派给后台智能编程代理,自动完成开发与修改工作
该技能材料显示其本质是一个开源的 prompt-only 编排说明,用于指导宿主如何调用外部编码代理;自身未声明密钥、远程端点或内置执行逻辑。整体风险较低,但文档内容会引导宿主启动后台代码代理与本地命令,因此在实际使用时仍应关注宿主侧执行边界。
材料明确标注“无”密钥/环境变量,README 也未要求配置 API token 或长期凭证;未见直接凭证收集、存储或外发设计。需注意若宿主实际调用 Codex/Claude Code/OpenCode,其各自凭证管理属于外部工具范围,不是该 skill 自身声明的一部分。
已声明无远程端点,材料中未指定固定外发主机或第三方数据接收方。README 提到 GitHub issue/PR、通知路由与消息发送,但更像对外部工作流的使用说明;就该 skill 本身而言,未见内置网络传输目标。
客观检查项为 prompt-only,说明该 skill 本身更像操作指引而非可执行组件。虽然 README 大量描述通过 bash、pty、background 启动 Codex/Claude/OpenCode 等后台 worker,但这些是对宿主/外部代理的调用建议,不代表该 skill 自身已获得本机执行权限。
材料未声明该 skill 直接读写本地文件、仓库或系统资源的能力,也未申请额外目录/设备权限。README 虽建议在仓库目录、临时文件和隔离 checkout 中运行外部 worker,但这是外部执行流程说明;就 skill 自身可见权限而言,未见过度授权。
来源为 GitHub 开源仓库,且社区采用度极高(约 37.7 万 star),这些都是显著的降风险因素;材料也未见闭源二进制下载、可疑安装脚本或不明分发源。需留意许可证未声明、维护状态未知,后续可补充核验,但基于当前证据仍偏低风险。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "coding-agent" 技能: 1. 下载 https://raw.githubusercontent.com/openclaw/openclaw/main/skills/coding-agent/SKILL.md 2. 保存为 ~/.claude/skills/coding-agent/SKILL.md 3. 装好后重载技能,告诉我可以用了
请把“用户资料导出为 CSV”功能委派给后台 coding-agent 完成。技术栈是 Node.js + Express,要求新增导出接口、字段映射、权限校验和单元测试,并在完成后汇总改动文件与运行方式。
返回已完成的功能实现结果,包括代码改动说明、涉及文件、测试情况与后续操作建议。
请委派 coding-agent 重构这个 Python 支付模块,目标是拆分过长函数、补充类型注解、移除重复逻辑,并确保现有 API 行为不变。请输出重构说明、风险点和建议验证步骤。
得到结构更清晰的重构方案与代码结果,并附带兼容性说明和验证建议。
请将这个 Django 接口的 500 报错修复任务交给 coding-agent。根据报错日志定位问题,完成修复,并补充回归测试与简短变更说明。不要只分析,请直接完成代码修改方案。
输出可执行的修复结果,说明问题原因、修复方式、测试覆盖与可能影响范围。
Use for background feature builds, PR reviews, large refactors, and issue-to-PR loops. Do not use for simple edits, read-only lookup, ACP thread-bound work, or any run inside ~/.openclaw, $OPENCLAW_STATE_DIR, or active OpenClaw state dirs.
background:true.pty:true.claude --permission-mode bypassPermissions --print.openclaw message send.process; do not kill slow workers without cause.~/Projects/openclaw; use an isolated checkout.Append this shape to every worker prompt with real values:
Notification route:
- channel: <notifyChannel>
- target: <notifyTarget>
- account: <notifyAccount or omit>
- reply_to: <notifyReplyTo or omit>
- thread_id: <notifyThreadId or omit>
When finished, send exactly one completion or failure message using:
openclaw message send --channel <channel> --target '<target>' --message '<brief result>'
Add --account, --reply-to, or --thread-id only when present above.
Do not use openclaw system event or heartbeat.
If no trustworthy route exists, say completion auto-notify is unavailable.
Write the worker prompt to a temp file first. This avoids shell quoting bugs when the required notification block contains quotes or newlines.
PROMPT=$(mktemp -t openclaw-worker-prompt.XXXXXX)
cat >"$PROMPT" <<'EOF'
Task.
<notification block>
EOF
printf 'prompt file: %s\n' "$PROMPT"
Use $PROMPT when launching from the same shell/session. If using a separate tool call, substitute the printed path.
Codex:
bash pty:true background:true workdir:/path/repo command:"codex exec - < \"$PROMPT\""
Claude Code:
bash background:true workdir:/path/repo command:"claude --permission-mode bypassPermissions --print < \"$PROMPT\""
OpenCode:
bash pty:true background:true workdir:/path/repo command:"opencode run < \"$PROMPT\""
sessionId immediately.process; cancel through Task Registry if mirrored there.Codex needs a trusted git repo:
SCRATCH=$(mktemp -d)
git -C "$SCRATCH" init
PROMPT=$(mktemp -t openclaw-worker-prompt.XXXXXX)
cat >"$PROMPT" <<'EOF'
Build X.
<notification block>
EOF
printf 'prompt file: %s\n' "$PROMPT"
bash pty:true background:true workdir:$SCRATCH command:"codex exec - < \"$PROMPT\""
list: running/recent sessions.poll: status.log: output.submit: send input + Enter.write: raw stdin.paste: paste text.kill: terminate.sessionId.用 songsee CLI 从音频生成频谱图与特征面板可视化,便于分析与展示。
连接 Discord 驱动的 OpenClaw 会话,直接与智能代理实时交流协作。
帮助维护者分诊、清理并解决 GitHub 中的 OpenClaw 密钥泄露告警。
帮助开发与运维团队快速分诊安全通告、草稿和 GHSA 报告并给出可信依据。
帮助定位 OpenClaw 测试中的内存增长、堆泄漏与 OOM 根因
基于问题或 PR 列表深度审查代码,只修复高确定性的小型 OpenClaw 缺陷。
将代码调研、修改与验证任务委派给 Claude Code 并管理后台执行。
提供面向 Claude Code 的 TypeScript 代理式编码脚手架,内置子代理流程与质量校验。
在终端中理解代码库,并用自然语言加速编码、解释代码和处理 Git 流程。
提供面向 Claude Code 的生产级开发工作流与多代理协作方案
让 Codex 协同本地 Claude Code 分工完成工程开发、审查与自动化任务。
让 Claude Code 调用 OpenAI 专家子代理,完成并行协作与低成本验证式开发。