Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.goklab/guardvibe

NPM · GUARDVIBE · SCANNED AUG 3

Deterministic security layer your AI can't be. 462 rules, 39 tools, CLI + doctor + host audit.

Available components

+30 this week 75 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency97
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Cryptographically verified build provenance (signed, bound to goklab/guardvibe). View diagnostics → Pass
  • Clear OSI-approved license (Apache-2.0).Pass
  • Actively maintained (last published 10 days ago).Pass
  • Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability71
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 4998 tokens (~128/item across 39 items; 39 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · guardvibe

# add to Claude Code
claude mcp add goklab-guardvibe -- npx -y guardvibe
# add to Codex CLI
codex mcp add goklab-guardvibe -- npx -y guardvibe
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "goklab-guardvibe": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "guardvibe"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add goklab-guardvibe --command npx --arg -y --arg guardvibe
# ~/.hermes/config.yaml
mcp_servers:
  goklab-guardvibe:
    command: "npx"
    args: ["-y", "guardvibe"]
// mcp.json
{
  "mcpServers": {
    "goklab-guardvibe": {
      "command": "npx",
      "args": [
        "-y",
        "guardvibe"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +55
    • Install scripts: unverified → pass security
    • Provenance: unverified → pass security
    • Known CVEs: unverified → partial security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • The attested source repository moved: goklab/guardvibe security
    • Security disclosure: unverified → fail functional
    • Schema quality: unverified → excellent functional
    • Tool coverage: unverified → 100 functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Licence: Apache-2.0 functional
  • 2 Aug 26 +15
    • Malware scan: unverified → pass security
    • Security disclosure: fail → unverified functional
  • 1 Aug 26 −15
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 31 Jul 26 −25
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 45

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/[email protected]

Provenance verified

Ecosystem: npm · Outcome: verified

Reason: verified

Source repo:
goklab/guardvibe
Certificate issuer:
https://token.actions.githubusercontent.com
Certificate SAN:
https://github.com/goklab/guardvibe/.github/workflows/publish.yml@refs/tags/v3.31.0
Rekor log index:
2227710827
Predicate type:
https://slsa.dev/provenance/v1
Subject digest:
sha512:56e080160925dd7625d5fb91109542681c7e455d73a1380ca890366537d61a3656bb95023a4a14f8d56c83b13dad48bbaa81757b736e46f7f643e3d66
Discovery method:
attestation_endpoint
Dependencies 96 packages

96 packages in the resolved dependency tree · 95 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 39 exposed · ~4,998 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
analyze_cross_file_dataflow ~139

Track user input flowing across module boundaries — detects injection vulnerabilities spanning multiple files. Pass files array with file contents. For single-file analysis, use analyze_dataflow instead. Example: analyze_cross_file_dataflow({files: [{path: 'src/api.ts', content: '...'}, {path: 'src/db.ts', content: '...'}]})

NameTypeReqDescription
filesarrayList of files to analyze (ignored when path is provided)
formatstringOutput format
pathstringProject directory path. When provided, auto-discovers all JS/TS files — no need to pass file contents manually.

No output schema declared.

No examples provided.

analyze_dataflow ~89

Track user input (request body, URL params, form data) flowing into dangerous sinks (SQL queries, eval, file operations, redirects). Detects injection vulnerabilities that regex rules miss by following variable assignments through code.

NameTypeReqDescription
codestringyesCode to analyze for tainted data flows
formatstringOutput format
languagestringyesLanguage (JS/TS only)

No output schema declared.

No examples provided.

audit_config ~92

Audit application config files (next.config, middleware, .env, vercel.json) for cross-file security gaps: missing headers, unprotected routes, exposed secrets. NOT the same as guardvibe_doctor which checks AI host security (MCP configs, hooks). Example: audit_config({path: '.'})

NameTypeReqDescription
formatstringOutput format
pathstringyesProject root directory to audit

No output schema declared.

No examples provided.

audit_mcp_config ~96

Scan MCP configuration files (.claude/settings.json, .cursor/mcp.json, .vscode/mcp.json) for security issues: malicious hooks (CVE-2025-59536), suspicious MCP servers, overly permissive tool access, and shell injection patterns. Use this to verify MCP configurations are safe before use.

NameTypeReqDescription
formatstringOutput format
pathstringProject root directory to scan

No output schema declared.

No examples provided.

auth_coverage ~167

Analyze authentication coverage across Next.js App Router routes. Detects auth guards (Clerk, NextAuth, Supabase, custom) and reports protected vs unprotected routes. Pass files array with route file contents and middleware content. Example: auth_coverage({files: [{path: 'app/api/users/route.ts', content: '...'}], middleware: '...'})

NameTypeReqDescription
filesarrayRoute and page files from app/ directory (ignored when path is provided)
formatstringOutput format
middlewarestringContent of middleware.ts file (ignored when path is provided)
pathstringProject directory path. When provided, auto-discovers all route, page, layout, and middleware files — no need to pass file contents manually.

No output schema declared.

No examples provided.

check_code ~134

Analyze inline code for security vulnerabilities (OWASP Top 10, XSS, SQL injection, insecure patterns). Pass code as a string parameter. For scanning files on disk, use scan_file instead. Example: check_code({code: 'app.get(...)', language: 'javascript'})

NameTypeReqDescription
codestringyesThe code snippet to analyze
formatstringOutput format: markdown (human) or json (machine-readable for agents)
frameworkstringFramework context (e.g. express, nextjs, fastapi, react, django)
languagestringyesProgramming language of the code

No output schema declared.

No examples provided.

check_command ~111

Analyze a shell command for security risks before execution. Returns allow/ask/deny verdict with blast radius, safer alternatives, and context-aware risk assessment. Detects: destructive ops, git history rewrites, secret exposure, data exfiltration, deploy triggers, privilege escalation, database drops.

NameTypeReqDescription
branchstringCurrent git branch (for branch-specific risk)
commandstringyesShell command to analyze
cwdstringCurrent working directory
formatstringOutput format

No output schema declared.

No examples provided.

check_dependencies ~83

Check npm, PyPI, or Go packages for known security vulnerabilities (CVEs) using the OSV database. Use this before adding new dependencies or to audit existing ones.

NameTypeReqDescription
formatstringOutput format: markdown (human) or json (machine-readable for agents)
packagesarrayyesList of packages to check: [{name, version, ecosystem}]

No output schema declared.

No examples provided.

check_package_health ~91

Check npm packages for typosquat risk, maintenance status, adoption metrics, and deprecation. Use this before adding new dependencies to catch suspicious or risky packages.

NameTypeReqDescription
formatstringOutput format: markdown (human) or json (machine-readable for agents)
packagesarrayyesList of package names to check (e.g. ['lodash', 'expres', 'react-qeury'])

No output schema declared.

No examples provided.

check_project ~71

Scan multiple files for security vulnerabilities and generate a project-wide security report with a security score. Use this for comprehensive security audits.

NameTypeReqDescription
filesarrayyesList of files to scan: [{path, content}]
formatstringOutput format: markdown (human) or json (machine-readable for agents)

No output schema declared.

No examples provided.

compliance_report ~151

Map security findings to compliance controls (SOC2, PCI-DSS, HIPAA, GDPR, ISO27001, EUAIACT). Scans a directory and groups issues by control. Output includes a summary section at the top; for large projects, findings are truncated to top 50. Use mode=executive for C-level summary. Example: compliance_report({path: '.', framework: 'SOC2'})

NameTypeReqDescription
formatstringOutput format: markdown (human) or json (machine-readable for agents)
frameworkstringyesCompliance framework
modestringReport mode: full (detailed) or executive (C-level summary)
pathstringyesDirectory to scan

No output schema declared.

No examples provided.

deep_scan ~219

LLM-powered deep security analysis for vulnerabilities that pattern-matching cannot detect: IDOR, business logic flaws, race conditions, stale auth, mass assignment, privilege escalation. Defaults to Claude Haiku 4.5 (~cents per scan); pass `model: 'sonnet'` for deeper analysis at higher cost. Requires ANTHROPIC_API_KEY or OPENAI_API_KEY env var.

NameTypeReqDescription
codestringyesCode to analyze
contextstringAdditional context (e.g., 'This is a payment endpoint')
existingFindingsarrayAlready-detected findings to avoid duplicating
focusstringFocus area — narrows the prompt to a specific vulnerability class
formatstringOutput format
languagestringyesProgramming language
maxBytesintegerMax prompt size in bytes — caps cost. Code over this limit is truncated.
modelstringLLM model. haiku = fast & cheap (default), sonnet = deeper analysis

No output schema declared.

No examples provided.

explain_remediation ~114

Pass a GuardVibe rule ID (e.g. VG154) to get a detailed explanation: risk assessment, exploit scenario, minimum fix, secure alternative, and test strategy. Optionally pass the affected code snippet for context-aware guidance. Example: explain_remediation({rule_id: 'VG402'})

NameTypeReqDescription
codestringAffected code snippet for context
formatstringOutput format
rule_idstringyesGuardVibe rule ID (e.g. VG001, VG402)

No output schema declared.

No examples provided.

export_sarif ~55

Scan a directory and export results in SARIF v2.1.0 format for CI/CD integration (GitHub, GitLab, Azure DevOps). Returns JSON string.

NameTypeReqDescription
pathstringyesDirectory to scan

No output schema declared.

No examples provided.

fix_code ~135

Pass vulnerable code as a string and get fix suggestions with before/after patches. Returns structured edit instructions (line numbers, severity, confidence). Use verify_fix afterwards to confirm the fix resolved the issue. Example: fix_code({code: '...', language: 'typescript'})

NameTypeReqDescription
codestringyesThe code snippet to analyze and fix
formatstringOutput format: json (for agent auto-fix) or markdown (human review)
frameworkstringFramework context (e.g. express, nextjs, fastapi, react, django)
languagestringyesProgramming language of the code

No output schema declared.

No examples provided.

full_audit ~147

Single command that runs ALL checks: code scan (429 rules), secret detection, dependency CVEs, config audit, taint analysis, and auth coverage. Returns PASS/FAIL/WARN verdict with deterministic hash. IMPORTANT: If verdict is FAIL or WARN, you MUST call remediation_plan next to get a section-by-section fix checklist — do NOT skip any section. After fixing, call verify_remediation to confirm ALL sections are addressed. Example: full_audit({path: '.'})

NameTypeReqDescription
formatstringOutput format
pathstringProject root directory
skipDepsbooleanSkip dependency vulnerability check
skipSecretsbooleanSkip secret scanning

No output schema declared.

No examples provided.

generate_policy ~84

Auto-detect project stack (Next.js, Supabase, Stripe, Clerk, Prisma, etc.) and generate tailored security policies. Outputs ready-to-use CSP headers, CORS configuration, Supabase RLS policies, rate limiting rules, and security headers based on detected frameworks.

NameTypeReqDescription
formatstringOutput format
pathstringyesProject root directory to scan

No output schema declared.

No examples provided.

get_security_docs ~100

Get security best practices and remediation guidance for a specific topic, framework, or vulnerability type. Covers OWASP Top 10, framework-specific hardening (Next.js, Supabase, Stripe), and secure coding patterns. Returns actionable guidance with code examples.

NameTypeReqDescription
topicstringyesSecurity topic to look up (e.g. "express authentication", "sql injection prevention", "nextjs csrf", "react xss", "owasp top 10")

No output schema declared.

No examples provided.

guardvibe_doctor ~160

Check AI host security: MCP configurations, hooks, base URL hijacking, environment variable exposure. NOT the same as audit_config which checks application config files (next.config, .env, headers). Use scope=project (default) for project-only, scope=host to include shell profiles and global AI configs. Example: guardvibe_doctor({scope: 'project'})

NameTypeReqDescription
formatstringOutput format: markdown (human) or json (machine-readable)
pathstringProject root directory
scopestringScan scope: project (default, .claude.json + .cursor/ + .vscode/ + .env), host (+ shell profiles + global MCP configs), full (+ home dir configs)

No output schema declared.

No examples provided.

policy_check ~88

Check project against compliance policies defined in .guardviberc. Use this in CI/CD pipelines to enforce security gates, or before releases to verify compliance requirements are met. Validates custom framework requirements, severity thresholds, required controls, and risk exceptions. Returns pass/fail status with detailed findings per control.

NameTypeReqDescription
formatstringOutput format
pathstringyesProject root directory

No output schema declared.

No examples provided.

remediation_plan ~119

Generate a mandatory section-by-section remediation plan from full_audit results. MUST be called after full_audit when verdict is FAIL or WARN. Returns ordered steps for ALL 6 sections (secrets, code, dependencies, config, taint, auth-coverage) with specific tool calls and actions. AI assistants MUST complete every section — skipping sections is not allowed. Example: remediation_plan({path: '.'})

NameTypeReqDescription
formatstringOutput format: json for agents (recommended), markdown for humans
pathstringProject root directory

No output schema declared.

No examples provided.

repo_security_posture ~68

Analyze a repository's overall security posture. Maps sensitive areas (auth, payments, PII, admin, API, infrastructure), identifies high-risk workflows, recommends guard mode, and lists priority fixes.

NameTypeReqDescription
formatstringOutput format
pathstringyesRepository root path

No output schema declared.

No examples provided.

review_pr ~139

Review a pull request for security issues. Scans only changed lines (diff-only mode) and produces output for GitHub Check Runs, PR comments, or inline annotations. Supports severity gating to block PRs.

NameTypeReqDescription
basestringBase branch to diff against
diff_onlybooleanOnly report findings in changed lines (true) or all findings in changed files (false)
fail_onstringBlock PR if findings at this severity or above exist
formatstringOutput: markdown (PR comment), json (structured), annotations (GitHub Check Runs)
pathstringRepository root path

No output schema declared.

No examples provided.

scan_changed_files ~145

Scan only files that have changed since a given git ref (branch, commit, or HEAD~N). Ideal for PR checks, pre-push hooks, and incremental CI. Diff-aware by default: returns only findings on newly-added lines (set diff_aware:false for whole changed files).

NameTypeReqDescription
basestringGit ref to diff against (e.g. 'main', 'HEAD~3', commit SHA)
diff_awarebooleanReport only newly-introduced findings on added lines (true, default) vs. all findings in changed files (false)
formatstringOutput format
pathstringRepository root path

No output schema declared.

No examples provided.

scan_config_change ~99

Compare before/after versions of a config file to detect security downgrades: CORS relaxation, CSP weakening, HSTS removal, debug mode, cookie flag changes, TLS disabling, new hardcoded secrets, removed security headers.

NameTypeReqDescription
afterstringyesNew config file content
beforestringyesPrevious config file content
file_pathstringConfig file path for context
formatstringOutput format

No output schema declared.

No examples provided.

scan_dependencies ~113

Parse a lockfile or manifest (package.json, package-lock.json, requirements.txt, go.mod) and check all dependencies for known CVEs via the OSV database. Reads the file directly. Use this after installing dependencies, during CI, or when auditing existing projects for vulnerable packages.

NameTypeReqDescription
formatstringOutput format: markdown (human) or json (machine-readable for agents)
manifest_pathstringyesPath to manifest file (e.g. 'package.json', 'requirements.txt', 'go.mod')

No output schema declared.

No examples provided.

scan_directory ~155

Scan all files in a directory on disk for security vulnerabilities. Pass a directory path — reads files from filesystem. Returns security score (A-F) and findings. Results may be truncated for large projects — check fileRanking in JSON output for top files. Example: scan_directory({path: './src'})

NameTypeReqDescription
baselinestringPath to a previous scan JSON output file for baseline comparison (new/fixed/unchanged findings)
excludearrayAdditional directories to exclude
formatstringOutput format: markdown (human) or json (machine-readable for agents)
pathstringyesDirectory path to scan (e.g. './src', '.')
recursivebooleanScan subdirectories

No output schema declared.

No examples provided.

scan_file ~135

Scan a single file on disk by path for security vulnerabilities. Pass a file path — the tool reads the file itself. For inline code snippets, use check_code instead. The 'agent' format returns the structured guardvibe.agent.v1 contract (finding + exact edit + confidence + verify step). Example: scan_file({file_path: 'src/api/route.ts', format: 'agent'})

NameTypeReqDescription
file_pathstringyesAbsolute or relative path to the file to scan
formatstringOutput format. 'agent' = machine-actionable guardvibe.agent.v1 (exact edits + confidence + verify)

No output schema declared.

No examples provided.

scan_hallucinated_packages ~222

Detect AI-hallucinated and slopsquatted packages in a repo — the supply-chain seam commodity SCA misses. OFFLINE (deterministic): flags phantom imports (a package imported in source but absent from every package.json — a classic LLM hallucination tell) and typosquats of popular packages. ONLINE (opt-in, default on; gracefully degrades offline): adds npm-registry truth — packages that return 404 (definitive hallucination) and brand-new low-download packages (slopsquat-registration pattern). Run on AI-generated code at PR time, before `npm install`. Pass online:false for a fully deterministic, air-gapped scan.

NameTypeReqDescription
formatstringOutput format: markdown (human) or json (guardvibe.slopscan.v1 for agents)
onlinebooleanQuery the npm registry for existence/age/downloads. false = deterministic offline-only (phantom imports + typosquats).
pathstringRepository root to scan (default current directory)

No output schema declared.

No examples provided.

scan_host_config ~118

Scan host environment for AI security issues: API base URL hijacking (CVE-2026-21852), credential exposure in shell profiles, .env file leaks, and environment variable sniffing. Checks .env files at project scope; add scope=host to also check shell profiles and global AI configs.

NameTypeReqDescription
formatstringOutput format
pathstringProject root directory
scopestringScan scope: project (.env files only), host (+ shell profiles, global configs), full (+ home dir)

No output schema declared.

No examples provided.

scan_secrets ~116

Scan files and directories for leaked secrets, API keys, tokens, and credentials. Detects high-entropy strings, known API key patterns (AWS, Stripe, OpenAI, GitHub, Supabase), exposed .env files, and missing .gitignore coverage. Returns findings with exact line numbers and remediation steps.

NameTypeReqDescription
formatstringOutput format: markdown (human) or json (machine-readable for agents)
pathstringyesFile or directory path to scan
recursivebooleanScan subdirectories

No output schema declared.

No examples provided.

scan_secrets_history ~92

Scan git history for leaked secrets. Finds secrets that were committed in the past — even if they were later removed. Marks each finding as 'active' (still in code) or 'removed' (in git history only, needs rotation).

NameTypeReqDescription
formatstringOutput format
max_commitsnumberMaximum number of commits to scan
pathstringyesRepository root path

No output schema declared.

No examples provided.

scan_staged ~115

Scan git-staged files for security vulnerabilities before committing. Run this before every commit to catch issues early. No input needed — automatically reads staged files. Diff-aware by default: reports only issues on newly-staged lines (set diff_aware:false for whole staged files).

NameTypeReqDescription
diff_awarebooleanReport only findings on newly-staged lines (true, default) vs. all lines in staged files (false)
formatstringOutput format: markdown (human) or json (machine-readable for agents)

No output schema declared.

No examples provided.

secure_prompt ~278

Shift-left security at the prompt level: analyze a raw coding prompt BEFORE any code is written and return a structured enhancement directive that embeds GuardVibe security requirements (auth checks, input validation, webhook signature verification, SQL injection prevention, secrets handling) into the prompt you are about to execute. Deterministic — no LLM, no network: triage verdict NO_MOD (prompt already specific and security-aware → proceed with the ORIGINAL prompt unchanged), LIGHT_MOD (inject missing security constraints only), or HEAVY_MOD (also surface clarifying questions — never invent answers to them). Detects stack (Next.js, Supabase, Clerk, Stripe, Prisma, Express, Hono...) and attack surfaces (auth, payments, file upload, user input, SQL, secrets, redirects) from the prompt text, matches them against GuardVibe's rule set, and returns verdict + intent summary + numbered [rule-id] requirements + rewrite directive. Call this with the user's prompt before generating code; prevents vulnerabilities before code generation instead of scanning after. Example: secure_prompt({raw_prompt: 'add login to my app'})

NameTypeReqDescription
contextstringKnown stack/framework context if the client has it (e.g. 'Next.js app router, Supabase, Stripe')
raw_promptstringyesThe user's original coding prompt, verbatim

No output schema declared.

No examples provided.

secure_this ~262

Close the loop on vulnerabilities in code: scan, apply only the fixes that VERIFIABLY land (each candidate edit is re-scanned and rolled back if it fails to resolve the issue or introduces a new one), and return the verified code plus a definition-of-done gate. Prefer this over fix_code+verify_fix when you want a guarantee the fix landed — not just a suggestion. Returns { status: clean|secured|partial|no_autofix, fixedCode, applied[], remaining[], definitionOfDone:{passed,message}, proofTest }. Write fixedCode to disk, then require definitionOfDone.passed before claiming the task complete; anything in remaining[] needs a manual fix. When fixes were applied, proofTest is a runnable regression test (GuardVibe-as-oracle) you can drop into the project to guard against regressions. Example: secure_this({code: '...', language: 'typescript'})

NameTypeReqDescription
codestringyesThe code to scan and secure
filePathstringFile path for context-aware analysis (the file is NOT written; apply fixedCode yourself)
frameworkstringFramework context (e.g. express, nextjs, react)
languagestringyesProgramming language of the code

No output schema declared.

No examples provided.

security_stats ~82

Show cumulative security statistics, grade trend, and vulnerability fix progress for this project. Use this to demonstrate the value of GuardVibe security scanning over time. Data is stored locally in .guardvibe/stats.json.

NameTypeReqDescription
formatstringOutput format
pathstringProject root path
periodstringTime period for stats

No output schema declared.

No examples provided.

security_workflow ~175

Get the recommended GuardVibe tool sequence for your current task. Returns which tools to call, in what order, and with what parameters. Use this when unsure which tool to use. Example: security_workflow({task: 'pre_commit'})

NameTypeReqDescription
taskstringyesCurrent task: writing_code (after edits), pre_commit (before commit), pr_review (reviewing PR), new_project (initial setup), fix_vulnerabilities (fixing known issues), compliance_mapping (audit again…

No output schema declared.

No examples provided.

verify_fix ~112

Verify that a specific security fix was applied correctly. Re-scans the updated code and checks if the target vulnerability (by rule ID) is resolved. Returns 'fixed', 'still_vulnerable', or 'new_issues' status with details.

NameTypeReqDescription
codestringyesUpdated code after applying the fix
filePathstringFile path for context-aware analysis
languagestringyesProgramming language
ruleIdstringyesRule ID to verify (e.g. VG402)

No output schema declared.

No examples provided.

verify_remediation ~127

Compare before/after audit results to verify ALL sections were addressed. MUST be called after completing remediation to confirm success. Runs a fresh audit and compares against the before snapshot. Explicitly flags skipped sections and refuses to return 'complete' status unless every section is addressed. Pass the before audit hash or let it re-run. Example: verify_remediation({path: '.', before_hash: 'abc123'})

NameTypeReqDescription
before_hashstringResult hash from the initial full_audit (for tracking)
formatstringOutput format
pathstringProject root directory

No output schema declared.

No examples provided.