Stats
Actions
Tags
From backend-coding-agent
Run language-aware code review against team coding guidelines
How this command is triggered — by the user, by Claude, or both
Slash command
/backend-coding-agent:backend-reviewThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# /backend-review On-demand, language-aware code review for backend code. Reviews code against the team's coding guidelines and uses LSP diagnostics. ## Steps 1. **Set up repository (if not already cloned):** - Run the `backend-repo-setup` skill in **runtime mode**. - The skill reads the `repository` block from `.backend-agent.json`. - If no `repository` block is present, this step is a no-op. - If the block is present and `localPath` does not contain a `.git` directory, the skill clones the repository before proceeding. - On clone failure, the command halts here with a cl...
On-demand, language-aware code review for backend code. Reviews code against the team's coding guidelines and uses LSP diagnostics.
Set up repository (if not already cloned):
backend-repo-setup skill in runtime mode.repository block from .backend-agent.json.repository block is present, this step is a no-op.localPath does not contain a .git directory, the skill clones the repository before proceeding.Determine scope:
Resolve language and guidelines:
For each file in scope:
LSP.getDiagnostics)LSP.getReferences to check for broken referencesReview against guidelines:
Severity levels:
Output format:
## Backend Code Review
**Language:** <lang> | **Framework:** <framework> | **Guidelines:** <source>
### Blockers (X)
- `file.cs:42` — [Guideline: ## Error Handling] Using throw instead of Result<T> pattern
- `file.cs:87` — [LSP] CS0103: The name 'foo' does not exist in the current context
### Suggestions (X)
- `file.cs:15` — [Guideline: ## Naming] Method name `DoStuff` is not descriptive
### Nits (X)
- `file.cs:3` — [Guideline: ## Naming] Consider `IUserService` over `IUserSvc`
### LSP Diagnostics
- Zero errors ✅ | X errors found ❌
**Summary:** X blockers, Y suggestions, Z nits
npx claudepluginhub gagandeepp/software-agent-teams --plugin backend-coding-agent