agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when validating code quality after modifications. Runs sniper agent in isolated forked context for clean, fast validation.
$ npx -y skills add fusengine/agents --skill sniper-check --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/sniper-checkContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when validating code quality after modifications. Runs sniper agent in isolated forked context for clean, fast validation.
name: sniper-check description: Use when validating code quality after modifications. Runs sniper agent in isolated forked context for clean, fast validation. context: fork agent: fuse-ai-pilot:sniper user-invocable: true argument-hint: "[file-or-directory]"
<objective> Sniper Check runs the full sniper agent 6-phase code-quality workflow (parallel explore-codebase + research-expert, Grep-based impact analysis, linter error detection, minimal correction, re-verification to zero errors) in an isolated forked context, so only the final validation report returns to the parent conversation -- nothing of the investigation itself pollutes it. Use it after any code modification, on a specific file, a directory, or the whole project. </objective>
**Target:** $ARGUMENTS
Quick code quality validation using the sniper agent in an isolated forked context. Executes the full 6-phase workflow without polluting the main conversation context.
| Feature | Detail | |---------|--------| | **Context** | Forked (isolated sub-agent) | | **Agent** | sniper (Sonnet) | | **Phases** | 6-phase code-quality workflow | | **Result** | Only final report returns to parent |
---
| Scenario | Use | |----------|-----| | After code modifications | `/sniper-check src/` | | Validate specific file | `/sniper-check path/to/file.ts` | | Full project check | `/sniper-check .` | | After refactoring | `/sniper-check src/components/` |
---
Execute the mandatory 6-phase `code-quality` workflow:
1. **PHASE 1+2 (PARALLEL)**: Launch both in parallel:
2. **PHASE 3**: Grep all usages → Impact analysis 3. **PHASE 4**: Run linters → Detect errors 4. **PHASE 5**: Apply corrections → Minimal changes 5. **PHASE 6**: Re-run linters → Zero errors
**CRITICAL**: Phases 1+2 must run in PARALLEL (two Task calls in one message).
---
| Rule | Reason | |------|--------| | Never skip phases 1+2 | Documentation-backed fixes only | | Always run phases in order | Dependencies between phases | | Zero linter errors | Non-negotiable exit criteria | | Minimal changes only | Smallest fix necessary |
---
Return a validation report with:
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
Use before a root-cause, done/verified claim, irreversible action, or 2nd-time fix reaches the owner (APEX or plain conversation); also fires at every…
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional…
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).