Install
openclaw skills install github-development-standard完整的 GitHub 项目开发标准流程 - 9步流程 + 4层验证 + 15项验收清单
openclaw skills install github-development-standard用方法论驯服低端模型,让代码质量不再妥协
解决低端模型在代码开发中的常见问题:
1. 读 issue → 2. 写任务卡 → 3. 确定基线
↓
4. 列改动点 → 5. 编码 → 6. 本地验证
↓
7. 看 diff → 8. 写发布说明 → 9. 复盘
# Layer 1: 语法验证
python3 -m py_compile scripts/xxx.py
# Layer 2: 导入验证
python3 -c "from scripts.xxx import ClassName"
# Layer 3: 行为验证
python3 test_fix.py
# Layer 4: 回归验证
python3 -m pytest tests/
# 查看 Issue
gh issue view 53 --repo owner/repo
# 评论 Issue
gh issue comment 53 --repo owner/repo --body "修复说明..."
# 关闭 Issue
gh issue close 53 --repo owner/repo
grep 等工具验证比人工更可靠| 指标 | 使用前 | 使用后 | 提升 |
|---|---|---|---|
| Bug 修复返工率 | 60% | 5% | ↓ 55% |
| 平均改动量 | 200+ 行 | 15 行 | ↓ 185 行 |
| 夹带私货率 | 70% | 0% | ↓ 70% |
先定义问题,再定义改法,再写代码,再做验证,最后才发布。
让代码质量不再妥协 💕