Prevent Silent Failures and Infinite API Burn in Your LLM Agents
The Autonomous Agentic Security-as-a-Service platform that intercepts Pull Requests, parses code with Tree‑sitter AST queries, and generates mathematically sound Finite State Machine patches via GCP Vertex AI (Gemini Flash).
Built by Miguel Ocampo · Automaton369 LLC · v1.0 · June 2026
Probabilistic control flows shipped into deterministic business logic
The modern AI development cycle has created a dangerous paradox: generative AI systems accelerate development while flooding production with agent frameworks that look correct in demos but fail catastrophically in edge cases.
An LLM called in a ReAct loop doesn't guarantee a valid JSON response. It doesn't guarantee termination. Developers handling this with bare try { } catch(e) {} blocks aren't writing error handling — they're writing error concealment. The agent continues with corrupted state, invisible to operators until it causes financial damage.
An AI agent that swallows a malformed LLM response and continues executing is not a resilient system. It is a system that has learned to propagate corruption silently — every subsequent decision is premised on bad data.
The ASaaS Execution Pipeline
From developer push to self-remediated pull request. A secure serverless loop on GCP — zero operator intervention required.
GitHub Webhook
GitHub App fires on PR open or sync. Bun.js verifies HMAC-SHA256 headers and forwards to GCP Pub/Sub within the GitHub 10s timeout — the CPU throttling trap is sidestepped by decoupling.
AST Parsing
Downloads full file content from HEAD commit — not the diff (Tree-sitter fails on diffs). Parses Python/JS/TS into semantic trees via web-tree-sitter (WASM). PR diff is used only to filter captures to changed lines.
Hash Table Check
Pre-classifies captures against 8 major frameworks (OpenAI, Anthropic, AutoGen, LangGraph, LangChain, Agency Swarm, Hermes, CrewAI). Known patterns resolve in <10ms — no Vertex AI call.
Vertex AI Patch
Extracts vulnerable function to an isolated temp file, generates test harness. Invokes Gemini Flash at temperature=0.0 with strict JSON schema — zero hallucination.
PR + BigQuery
Patch posted as a GitHub PR inline code suggestion with a Mermaid FSM flowchart (before/after states). Every event streamed to BigQuery for SOC2 compliance and XPRIZE evidence.
Experience Autonomous Remediation
Select an agentic vulnerability below, review the Tree‑sitter S-expression query that flagged it, then trigger the Vertex AI structured patch engine to refactor it live.
Matched S-Expression AST Query
((while_statement
condition: (identifier) @cond
body: (block
(expression_statement
(call
function: (attribute
attribute: (identifier) @meth
(#match? @meth "^(run|invoke|chat|stream)$")))))) @burn_loop_py)
Remediate Vulnerability
Run the full ZeroSilence ASaaS pipeline. Bun.js reads the AST, checks the hash table, extracts the function to a temp file, and invokes Vertex AI at temperature=0.0 for a deterministic Automatos FSM patch.
The Price of Vibe Coding
LLMs run at massive generation speed inside loop contexts. A single JSON parse failure can trigger thousands of runaway API calls within minutes — silently draining your entire budget overnight.
API Burn Risk Calculator
Framework-Specific Hash Table
Pre-classified vulnerability signatures across 8 major agentic frameworks. Known patterns resolve in <10ms — no Vertex AI roundtrip needed. Reduces API spend by up to 70% at scale.
- Unbounded
while True+ completions.create - No
max_tokensparameter set - Bare
except:swallowing errors silently
messages.createloop with no iter cap- No stop condition on tool-use loop
- Missing error escalation path
- AgentExecutor with no
max_iterations - Unvalidated tool input schemas
- Memory without signing or TTL
- Graph nodes without cycle detection
- State updates without schema guard
- Missing
recursion_limitparameter
- AssistantAgent with no max reply limit
- GroupChat with no speaker selector guard
- Code executor without sandboxing
- Task with no max execution timeout
- Crew kickoff with no iteration boundary
- Tool result passed raw to LLM
- Agent
run()with no depth check - Thread forwarding without HMAC auth
- Missing kill switch mechanism
- Orchestrator loop without FSM guard
- Inter-agent messages unsigned
- Dynamic tool loaded from unverified URL
When a captured AST node matches a known hash table signature, the Automatos patch is applied instantly — no Vertex AI roundtrip required. Sub-10ms resolution vs. ~1.5s LLM call. Reduces cost and latency by up to 70% at production scan volume.
Full ASI Vulnerability Taxonomy
ZeroSilence detects all 10 vulnerability classes in the OWASP ASI framework. Click any card to see the AST detection indicator.
Agent Goal Hijacking
Indirect instructions via tool results override the agent's core multi-step plan.
Tool Misuse & SSRF
Agent calls tools with attacker-controlled arguments — Path Traversal, SSRF, shell injection vectors.
Identity & Privilege Abuse
Ambient admin credentials used by confused deputies instead of scoped, short-lived JWT tokens.
Agentic Supply Chain
Agent connects to compromised or malicious MCP servers and unverified dynamic tools.
Unexpected Code Execution
LLM output passed directly to eval() or subprocess(shell=True).
Memory & Context Poisoning
False beliefs written into unverified, unsigned persistent agent memory to bias future sessions.
Insecure Inter-Agent Comm.
Agents orchestrating without HMAC signatures or nonces, enabling spoofing and replay attacks.
Cascading Failures
Unbounded loops and missing circuit breakers cause unlimited API consumption and financial damage.
Human-Agent Trust Exploit
Users claiming fake authority ("I am the CEO") or agents tricking operators via fake urgency.
Rogue Agents
Lack of kill switches allows self-modifying agents to persist and amplify behavioral drift over time.
Evidence & GTM Strategy
Every scan event, AST result, and AI patch is streamed to GCP BigQuery as verifiable product evidence for the $2M prize pool. Deadline: Aug 17, 2026.
Submission Evidence Checklist
90-Day GTM Execution Window
Protect Your Agent Infrastructure
From independent builders to venture-backed enterprises processing millions of agent steps daily.
Developer
Side projects and local experiments.
- 5 GitHub Repository Scans / mo
- Core Tree‑sitter ASI Queries
- Hash Table Cache Access
- No Automated Vertex AI Patches
Startup Guard
Continuous inline code defense & AI remediation for active teams.
- UNLIMITED Pull Request Scans
- Automatos FSM patches via Vertex AI
- 1-Click GitHub PR + Mermaid FSM flowchart
- BigQuery Audit Log + SOC2 Evidence
- Full 8-Framework Hash Table Rules
Enterprise
Deep inter-procedural static analysis & dynamic sandboxing for security teams.
- All Startup Shield features
- Custom proprietary Tree‑sitter rules
- Dynamic sandbox execution checks
- Dedicated GCP security tenant hosting
Action Complete
Automatos pattern applied successfully.