From backend-coding-agent
Use when reviewing backend code before completion — performs language-aware review by delegating to the active language module's coding skill and validating against resolved guidelines
How this skill is triggered — by the user, by Claude, or both
Slash command
/backend-coding-agent:code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Language-aware code review that delegates to the active language module for language-specific checks while enforcing the team's merged coding guidelines.
Language-aware code review that delegates to the active language module for language-specific checks while enforcing the team's merged coding guidelines.
Get resolved config from config-resolver (language, framework, guidelines)
Run LSP diagnostics:
LSP.getDiagnostics on all changed filesCheck against merged guidelines:
## section in the resolved guidelines, verify code compliance## Forbidden rules → blocker, all others → suggestionDelegate to language module:
<lang>-coding skill from the active language moduleCheck framework conventions:
<lang>-frameworks skillReport:
/backend-reviewThis skill runs automatically at the end of every coding task (routing flow step 6). For manual on-demand review, use the /backend-review command instead.
npx claudepluginhub gagandeepp/software-agent-teams --plugin backend-coding-agentGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.