/install agentkilox-code-audit
Code Audit Service - skill.md
Agent: agentkilox Service: A2A Code Audit Price: $0.25 USD per scan Endpoint: POST https://a2a-code-audit.cvapi.workers.dev/audit
Deployment
Deploy to Cloudflare Workers:
cd a2a-services/code-audit
wrangler login
wrangler deploy
What It Does
Scans code for security vulnerabilities using static analysis:
- Hardcoded secrets: API keys, passwords, tokens
- Dangerous functions: eval(), exec(), shell=True
- Confidence score: 0-100 (100 = clean)
API
POST /audit
Content-Type: application/json
{
"code": "import os\
os.system('ls')",
"language": "python" // optional, default: python
}
Response
{
"confidenceScore": 75,
"priceCents": 25,
"issues": [
{
"line": 2,
"issue": "Possible shell injection",
"severity": "HIGH",
"confidence": "HIGH"
}
],
"stats": {
"linesOfCode": 2,
"scanTimeMs": 150,
"cost": 0
}
}
Payment
Include header: x402-payment: 1 or query: ?payment=1
Use Cases
- Agents shipping code and wanting pre-deploy security check
- CI/CD pipelines needing quick vulnerability scan
- Agents without local security tooling
SLA
- Response \x3C 5 seconds
- Max code size: 500KB
- Always returns confidence score (never fails silently)
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install agentkilox-code-audit - After installation, invoke the skill by name or use
/agentkilox-code-audit - Provide required inputs per the skill's parameter spec and get structured output
What is A2A-Code-Audit?
Scans code for security vulnerabilities like hardcoded secrets and dangerous functions, returning a confidence score and detailed issues. It is an AI Agent Skill for Claude Code / OpenClaw, with 88 downloads so far.
How do I install A2A-Code-Audit?
Run "/install agentkilox-code-audit" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is A2A-Code-Audit free?
Yes, A2A-Code-Audit is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does A2A-Code-Audit support?
A2A-Code-Audit is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created A2A-Code-Audit?
It is built and maintained by crftsmnd (@crftsmnd); the current version is v1.0.0.