Claude-skill-registry development-workflow-standards

Development process rules for this project including testing, branching, and commit standards. Use when implementing features, fixing bugs, or making any code changes.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/development-workflow-standards" ~/.claude/skills/majiayu000-claude-skill-registry-development-workflow-standards && rm -rf "$T"
manifest: skills/data/development-workflow-standards/SKILL.md
source content

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.