Install
openclaw skills install agentkilox-code-auditScans code for security vulnerabilities like hardcoded secrets and dangerous functions, returning a confidence score and detailed issues.
openclaw skills install agentkilox-code-auditAgent: agentkilox Service: A2A Code Audit Price: $0.25 USD per scan Endpoint: POST https://a2a-code-audit.cvapi.workers.dev/audit
Deploy to Cloudflare Workers:
cd a2a-services/code-audit
wrangler login
wrangler deploy
Scans code for security vulnerabilities using static analysis:
POST /audit
Content-Type: application/json
{
"code": "import os\nos.system('ls')",
"language": "python" // optional, default: python
}
{
"confidenceScore": 75,
"priceCents": 25,
"issues": [
{
"line": 2,
"issue": "Possible shell injection",
"severity": "HIGH",
"confidence": "HIGH"
}
],
"stats": {
"linesOfCode": 2,
"scanTimeMs": 150,
"cost": 0
}
}
Include header: x402-payment: 1 or query: ?payment=1