with one click
code-developer
软件工程与代码开发中枢,创建市面上不存在的功能时使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
软件工程与代码开发中枢,创建市面上不存在的功能时使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
应用界面与自动化操作中枢。
互联网信息获取与外部检索中枢。
个人知识与文件整理中枢。
管理skill功能,包括在线搜索新的skills,应用skill,升级skill,创建skill
Security-first skill vetting for AI agents. Use before installing any skill from ClawdHub, GitHub, or other sources. Checks for red flags, permission scope, and suspicious patterns.
| name | code-developer |
| description | 软件工程与代码开发中枢,创建市面上不存在的功能时使用。 |
本模块是所有代码编写、工程修改与软件测试的顶层入口。当任务目标不是使用现有软件,而是创造新的逻辑、修复系统 Bug、开发新功能或编写独立脚本时,应进入此模块。
read_file, write_file, edit_file, exec_command)完成闭环。在进行代码开发时,必须严格遵守以下执行顺序:
communicate_with_upstream 向上游发起确认。得到肯定答复后方可动手。exec_command 执行代码或运行单元测试进行验证。Tradeoff: These guidelines bias toward caution over speed. For trivial tasks, use judgment.
Don't assume. Don't hide confusion. Surface tradeoffs.
communicate_with_upstream.Minimum code that solves the problem. Nothing speculative.
Touch only what you must. Clean up only your own mess.
When using edit_file or write_file:
Define success criteria. Loop until verified.
Transform tasks into verifiable goals and strictly use exec_command to verify:
For multi-step tasks, state a brief plan:
1. [Step] → verify: [exec_command check]
2. [Step] → verify: [exec_command check]