Claude Code Plugins

Community-maintained marketplace

Feedback

development-workflow-standards

@ms2sato/agent-console
2
0

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

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

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

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.