Write production-ready code with clean architecture, proper error handling, and pragmatic trade-offs between shipping fast and building right.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install software-engineer或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install software-engineer⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/software-engineer/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: Software Engineer slug: software-engineer version: 1.0.0 homepage: https://clawic.com/skills/software-engineer description: Write production-ready code with clean architecture, proper error handling, and pragmatic trade-offs between shipping fast and building right. metadata: {"clawdbot":{"emoji":"👨💻","requires":{"bins":[]},"os":["linux","darwin","win32"]}} ---
Agent needs to write, review, or refactor code. Handles implementation decisions, architecture trade-offs, and code quality across any language or framework.
| Topic | File | |-------|------| | Code patterns | patterns.md | | Architecture decisions | architecture.md | | Testing practices | testing.md |
Every code block must:
// TODO: implement❌ catch (e) {}
❌ catch (e) { console.log(e) }
✅ catch (e) { logger.error('context', { error: e, input }); throw new DomainError(...) }
| Layer | Contains | Never Contains | |-------|----------|----------------| | Handler/Controller | HTTP/CLI parsing, validation | Business logic, SQL | | Service/Domain | Business rules, orchestration | Infrastructure details | | Repository/Adapter | Data access, external APIs | Business decisions |
When making architectural choices, state:
Example: "Using SQLite for simplicity. Trade-off: no concurrent writes. Revisit if >1 write/sec needed."
Before delivering any code:
Senior code reads like prose:
The best code is boring:
| Trap | Consequence | Prevention | |------|-------------|------------| | Inventing APIs | Code doesn't compile | Verify method exists in docs first | | Over-engineering | 3 hours instead of 30 min | Ask: "Do I have 3 concrete cases?" | | Ignoring context | Suggests wrong stack | Read existing files before suggesting | | Copy-paste without understanding | Hidden bugs surface later | Explain what the code does | | Empty error handling | Silent failures in production | Always log + type + rethrow | | Premature abstraction | Complexity without benefit | YAGNI until proven otherwise |
Critical paths (do it right):
Experimental paths (ship fast, iterate):
Test for critical path: "Can this wake me at 3am or lose money?"
This skill does NOT:
All code suggestions are generated in context of the conversation.
安装 Software Engineer 后,可以对 AI 说这些话来触发它
Help me get started with Software Engineer
Explains what Software Engineer does, walks through the setup, and runs a quick demo based on your current project
Use Software Engineer to write production-ready code with clean architecture, proper error h...
Invokes Software Engineer with the right parameters and returns the result directly in the conversation
What can I do with Software Engineer in my developer & devops workflow?
Lists the top use cases for Software Engineer, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/software-engineer/ 目录(个人级,所有项目可用),或 .claude/skills/software-engineer/(项目级)。重启 AI 客户端后,用 /software-engineer 主动调用,或让 AI 根据上下文自动发现并使用。
Software Engineer 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Software Engineer 可免费安装使用。请查阅仓库了解许可证信息。
Write production-ready code with clean architecture, proper error handling, and pragmatic trade-offs between shipping fast and building right.
Software Engineer 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Software Engineer
Identifies repetitive steps in your workflow and sets up Software Engineer to handle them automatically