Install
openclaw skills install @gomboc-ai/gomboc-security-communityAutomatically scans and generates deterministic, merge-ready code fixes for infrastructure, app code, and configs using Gomboc.ai's Open Remediation Language.
openclaw skills install @gomboc-ai/gomboc-security-communityDeterministic, merge-ready code fixes powered by ORL (Open Remediation Language).
Source: This skill wraps the official Gomboc.ai Community Edition code remediation engine.
Official Documentation: https://docs.gomboc.ai
Community Discussions: https://github.com/Gomboc-AI/gomboc-ai-feedback/discussions
GitHub App: https://github.com/apps/gomboc-ai-community
External API Dependency:
Token Scope & Security (Least Privilege):
Shipped Files:
SKILL.md — This documentationREADME.md — Quick start guideSECURITY.md — Security auditscripts/cli-wrapper.py — Python CLI wrapperscripts/docker-compose.yml — MCP server configurationexamples/vulnerable.tf — Example vulnerable codereferences/ — Integration guidesLicense: MIT (see LICENSE.md)
Gomboc.ai Community Edition automatically scans and fixes code issues across your entire codebase — infrastructure, applications, configurations, and more — using a deterministic remediation engine (no hallucinations). Unlike traditional scanners that generate alerts, Gomboc delivers merge-ready pull requests that clear your code issues backlogs. This skill wraps Gomboc's power into agent workflows, CLI tools, and CI/CD pipelines, making it the perfect complement to agentic coding.
Gomboc's Open Remediation Language (ORL) engine operates through a multi-stage deterministic process:
Policy Definition → Code Analysis → Deterministic Fix Generation → PR Delivery
Key difference: While generative AI is probabilistic (helpful for reasoning but unpredictable), Gomboc's ORL provides deterministic remediation — predictable, repeatable, and auditable.
ORL supports remediation across multiple languages and code types via syntax-tree matching (Tree-sitter):
Infrastructure as Code
Configuration Files
Code Languages
Cloud Providers
Policy Coverage
Full language list: docker run --rm gombocai/orl language
# Sign up at https://app.gomboc.ai (free, Community Edition)
# Generate Personal Access Token in Settings
export GOMBOC_PAT="gpt_your_token"
python scripts/cli-wrapper.py scan --path ./src
python scripts/cli-wrapper.py fix --path ./src
python scripts/cli-wrapper.py remediate --path ./src --commit
✅ Deterministic AI — Same fix every time, no hallucinations ✅ 94%+ Accuracy — Merge-ready fixes users actually accept ✅ Free Forever — Community Edition of Gomboc.ai ✅ Production-Ready — Battle-tested implementation ✅ Secure by Design — No token leaking, proper error handling ✅ Agent-Friendly — Perfect for autonomous code improvement loops
Detect issues in your codebase
gomboc scan path:./terraform
gomboc scan path:./src policy:aws-cis format:markdown
Generate merge-ready fixes
gomboc fix path:./terraform format:pull_request
gomboc fix path:./src format:json
Apply fixes directly to code
gomboc remediate path:./src commit:true
gomboc remediate path:./terraform commit:true push:true
Manage authentication
gomboc config --show-token
Gomboc solves the determinism problem in AI-driven code improvement:
The Agent Workflow:
This creates a feedback loop where agents learn and improve continuously.
Gomboc integrates into your workflow through multiple paths:
Fastest way to try Gomboc interactively:
# Install: Gomboc VS Code Extension
# Set: GOMBOC_PAT in extension settings
# Run: Gomboc: Scan current file
# Review: Problems panel → Apply Fix
Run the MCP server for agent integration:
docker-compose -f scripts/docker-compose.yml up
# Server runs on http://localhost:3100
# Or: docker run -p 3100:3100 -e GOMBOC_PAT='your_token' gombocai/mcp:latest
Agents interact with Gomboc via MCP protocol:
@gomboc scan path:./src
@gomboc fix path:./src format:pull_request
@gomboc remediate path:./code commit:true
See references/mcp-integration.md for details.
Use the Python CLI for local scanning:
export GOMBOC_PAT="your_token"
python scripts/cli-wrapper.py scan --path ./src --format markdown
python scripts/cli-wrapper.py fix --path ./src --format pull_request
python scripts/cli-wrapper.py remediate --path ./src --commit
See references/setup.md for detailed instructions.
Install Gomboc GitHub App for automatic PRs:
Automate continuous remediation in pipelines:
- uses: gomboc-action@v1
with:
path: ./terraform
auto-fix: true
policy: default
See references/github-action.md for configuration.
All configuration is via environment variables:
| Variable | Purpose | Required | Example |
|---|---|---|---|
GOMBOC_PAT | Personal Access Token | Yes | gpt_abc123... |
GOMBOC_MCP_URL | MCP server URL | No | http://localhost:3100 |
GOMBOC_POLICY | Remediation policy | No | default or aws-cis |
This skill has been:
See SECURITY.md for complete audit details.
ORL is the deterministic execution engine that powers Gomboc fixes:
See: https://docs.gomboc.ai/orl
references/setup.mdreferences/mcp-integration.mdreferences/github-action.mdSECURITY.mdCHANGELOG.mdMIT License — See LICENSE file
Ready to remediate? Start with the Quick Start section above, then explore integration methods that fit your workflow.