@talocode/verifylane
v0.1.0
Published
Deterministic verification for AI-generated code — secrets, security heuristics, diff review, and agent output checks
Maintainers
Readme
VerifyLane
Deterministic verification for AI-generated code and agent output — secrets, security heuristics, quality markers, unified diffs, and step acceptance checks. No LLM required.
Part of Talocode. Hosted at /v1/verifylane/*.
| | |
|--|--|
| npm | npm install @talocode/verifylane |
| Cloud | https://api.talocode.site/v1/verifylane/* |
| Auth | TALOCODE_API_KEY |
| Repo | https://github.com/talocode/verifylane |
Why VerifyLane?
Generation is fast; verification is the bottleneck. Agents ship subtle bugs and secrets. VerifyLane applies deterministic rules so you do not ask one model to fact-check another.
Install
npm install @talocode/verifylane
# local engine / CLI
npx verifylane code --file ./src/app.tsSDK (local engine)
import { verifyCode, verifyDiff, verifyAgentOutput } from '@talocode/verifylane'
const r = verifyCode({ text: source })
if (!r.ok) console.error(r.findings)
const d = verifyDiff({ diff: unifiedDiff })
const a = verifyAgentOutput({ text: agentReply })Cloud client
import { VerifyLaneClient } from '@talocode/verifylane'
const v = new VerifyLaneClient({ apiKey: process.env.TALOCODE_API_KEY })
await v.code({ text: source })
await v.diff({ diff })
await v.agentOutput({ text: reply })Routes / credits
| Path | Credits | |------|---------| | POST /v1/verifylane/secrets | 3 | | POST /v1/verifylane/security | 5 | | POST /v1/verifylane/quality | 3 | | POST /v1/verifylane/code | 8 | | POST /v1/verifylane/diff | 8 | | POST /v1/verifylane/agent-output | 5 |
CLI
verifylane secrets --file app.ts
verifylane security --file app.ts
verifylane code --file app.ts
verifylane diff --file change.patch
verifylane pricingTalocode ecosystem
| Project | What it is | |---------|------------| | VerifyLane | Deterministic verification for agent code | | TraceLane | Agent run / span tracing | | HandoffLane | Schema handoff validation | | StyleLane | Repo constitution / taste packs | | SearchLane | Agent web search & research | | Tera | AI chat / writing / coding API | | Codra | Coding agent | | StackLane | Cloud keys, credits, spend caps | | GateLane | MCP gateway | | Agent Browser | Browser automation |
More: github.com/talocode · talocode.site · docs.talocode.site
License
MIT © Talocode
