From vanta
Fix a failing Vanta compliance test by generating code changes and opening a pull request
npx claudepluginhub vantainc/vanta-mcp-plugin --plugin vantatest ID or Vanta test URLFix the failing Vanta test specified in $ARGUMENTS. ## Steps 1. **Parse the test ID.** If `$ARGUMENTS` is a URL (e.g., `https://app.vanta.com/c/<slug>/tests/<testId>`), extract the test ID from the path. If it's a plain string, use it directly as the test ID. 2. **Get remediation context.** Call `getAgentRemediationPrompt` with the test ID and follow instructions. 3. **Follow the returned prompt.** The `getAgentRemediationPrompt` response contains a system prompt and user message with test-specific remediation intelligence. Follow these instructions to scan the local repository and gener...
Fix the failing Vanta test specified in $ARGUMENTS.
$ARGUMENTS is a URL (e.g., https://app.vanta.com/c/<slug>/tests/<testId>), extract the test ID from the path. If it's a plain string, use it directly as the test ID.getAgentRemediationPrompt with the test ID and follow instructions.getAgentRemediationPrompt response contains a system prompt and user message with test-specific remediation intelligence. Follow these instructions to scan the local repository and generate the fix.tests to fetch the failing tests list, fuzzy-match against the provided ID, and present the closest matches. "I couldn't find a test called [id]. Did you mean one of these?" Never dead-end.$ARGUMENTS doesn't match a test ID, call tests and filter by keyword. If one match, proceed. If multiple, show candidates with entity counts and ask which one. If none, show the full failing tests list.