返回 Skill 列表
extension
分类: 开发与工程无需 API Key

development-workflow-standards

该项目的开发流程规则,包括测试、分支管理和提交标准。在实现功能、修复错误或进行任何代码更改时使用。

person作者: jakexiaohubgithub

Development Workflow Standards

Refer to development-workflow-standards.md for detailed rules.

Key Rules

  • Testing with code changes: Always update or add tests. Code without tests is incomplete.
  • TDD for bug fixes: Write a failing test first, then implement the fix.
  • GitHub-Flow: Always git fetch origin then branch from origin/main.
  • Conflict assessment: Before PR, check conflicts with latest main. If severe, propose re-implementation.
  • Never merge PRs: Merging is always the user's decision.
  • Verification: Run bun run test and bun run typecheck before completing changes.