agentic-security:security-fix-finding

Remediate a security finding via the MCP pipeline synthesize_fix, verify_fix, and apply_fix.

73|15|Updated May 6, 2026
One-click install
npx skills add https://github.com/Clear-Capabilities/agentic-security --skill agentic-security-security-fix-finding
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agentic-security:security-fix-finding
Source: https://github.com/Clear-Capabilities/agentic-security/tree/main/skills/security-fix-finding
Command: npx skills add https://github.com/Clear-Capabilities/agentic-security --skill agentic-security-security-fix-finding

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill enables automated remediation of a specific security finding by orchestrating the deterministic MCP toolchain to apply a patch without manual edits.

Core Features & Use Cases

  • Deterministic remediation path: synthesize_fix → verify_fix → apply_fix
  • Safe patching workflow: validates patch against current code state and runs project tests after apply
  • Scoped remediation: targets a single finding identified by id or stableId and respects existence checks in last-scan.json

Quick Start

Patch a specific finding by running the MCP pipeline: synthesize_fix → verify_fix → apply_fix.

Frequently Asked Questions about agentic-security:security-fix-finding

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I patch a security scanner finding deterministically?

To patch a security finding deterministically, this skill orchestrates an MCP pipeline that synthesizes, verifies, and applies the fix to the exact code location referenced by a finding id.

What is the MCP pipeline sequence for security finding remediation?

The security remediation pipeline follows a strict synthesize_fix, verify_fix, and apply_fix sequence to ensure patches are validated and tested before being applied to the codebase.

Can I apply a security patch without running verification first?

No, applying a security patch without verification is blocked by a strict no-Edit policy, ensuring every synthesized fix passes the verification stage before modifying your code.

How do I remediate a specific vulnerability identified during triage?

You can remediate a specific vulnerability by referencing its stableId or id, which the skill validates against last-scan.json before targeting and patching that exact finding.

Does the automated patch workflow run tests after applying the fix?

Yes, the safe patching workflow validates the patch against the current code state and runs your project tests after applying the fix to ensure no regressions were introduced.

What happens if the referenced finding id does not exist in last-scan.json?

If the finding id does not exist in last-scan.json, the scoped remediation process halts because the skill enforces existence checks to confirm the finding before attempting any patch synthesis.