fix-diff
Apply a code-level fix for a finding from /vantage:scan-diff's commit/PR/MR scan — modifies the target repository's source code
Apply code-level fixes for ALL validated findings, one at a time — modifies the target repository's source code
> /plugin marketplace add tinoimammp/vantage-security-agent > /plugin install vantage@vantage
How it fires
How this command gets triggered: by you, by Claude, or both.
/fixContext preview
What this command does when you run it.
Apply code-level fixes for ALL validated findings, one at a time — modifies the target repository's source code
description: Apply code-level fixes for ALL validated findings, one at a time — modifies the target repository's source code argument-hint: "[repository path, defaults to current working directory]" allowed-tools: Task, Read, Glob, Grep
**This command modifies source code in the current repository.** Unlike every scan command, this is destructive by design — review the result with `git diff` before committing.
Fix every validated finding against `$ARGUMENTS` (default: current working directory).
1. Read `./.vantage/artifacts/findings/validated-findings.json`. Build the list of `validated[]` entries that do **not** already have a `./.vantage/artifacts/fixes/<id>.md` record.
record), say so and stop — do not fabricate work. 2. Sort the remaining list by severity: Critical → High → Medium → Low → Info. 3. Dispatch `fix-agent` via Task **sequentially, one finding at a time — never in parallel**. Multiple fixes may touch the same file, and concurrent edits to one file would corrupt it; process the list one Task call at a time, waiting for each to finish (and its `artifacts/fixes/<id>.md` to be written) before starting the next. 4. If one finding is `not_auto_fixable`, log it and continue to the next — don't stop the whole batch for one skip. 5. Append each result to `./.vantage/artifacts/run-log.md`.
When done, report a summary table: how many fixed, how many `not_auto_fixable` (with reasons), and which files were touched overall. Remind the user that `fix-agent` never runs a build or test suite — they must review the diff (`git diff`) and run their own tests before committing.
AI SAST framework for web & mobile apps, shipped as a Claude Code plugin. Agents read your source code and produce a validated, evidence-backed vulnerability report — no running the app, no network requests.
Repo: tinoimammp/vantage-security-agent
Apply a code-level fix for a finding from /vantage:scan-diff's commit/PR/MR scan — modifies the target repository's source code
Apply a code-level fix for one validated finding by id (e.g. F-001) — modifies the target repository's source code
Scan only the changed files in a single commit or PR/MR for newly introduced vulnerabilities (fast incremental check, not a full pipeline run)
Run the full mobile SAST pipeline (phases 01-06) against this repository — Android, iOS, React Native, or Flutter
Run the full web SAST pipeline (phases 01-06) against this repository