Metadata-Version: 2.4
Name: talocode-auditlane
Version: 0.1.0
Summary: Local-first evidence-based security audit review packets.
Author: Talocode
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Talocode AuditLane
`talocode-auditlane` creates local evidence-based security audit review packets. It maps likely entry points and never exploits targets, publishes findings, or changes code automatically.
## Why It Exists
Agents can investigate code paths in parallel, but a material finding needs reproducible evidence and human review. AuditLane keeps that evidence in a local JSON report.
## Install
```bash
pip install talocode-auditlane
```
## Quickstart
```python
from auditlane.cli import main
import sys
sys.argv = ["auditlane", "report", "."]
main()
```
The CLI writes `.auditlane/report.json` with likely entry points and an empty finding list ready for evidence-backed review.
## CLI
```bash
auditlane report .
```
## Auth And Hosted Capability
Use `TALOCODE_API_KEY` and `TALOCODE_BASE_URL=https://api.talocode.site` only for future hosted capabilities. Local use needs no credentials.
Planned API namespace: `/v1/auditlane/*`. No hosted routes are currently available and local AuditLane never performs automatic exploitation or remediation.
## API Surface
The Python package currently provides the `auditlane` CLI for local report generation. The TypeScript SDK provides `createAudit`, `addFinding`, and `writeReport` for programmatic workflows.
## Related Packages
| Package | Install |
| --- | --- |
| AuditLane CLI and SDK | `npm i @talocode/auditlane` |
| AuditLane MCP | `npm i -g @talocode/auditlane-mcp` |
| AuditLane Python | `pip install talocode-auditlane` (this package) |

## Talocode ecosystem
| Product | Package |
| --- | --- |
| [AuditLane](https://github.com/talocode/auditlane) | `pip install talocode-auditlane` (this package) |
| [Tera](https://github.com/talocode/tera) | `pip install talocode-tera` |
| [Codra](https://github.com/talocode/codra) | `pip install talocode-codra` |
| [XSearchLane](https://github.com/talocode/xsearchlane) | `npm i @talocode/xsearchlane` |
| [ClipLane](https://github.com/talocode/cliplane) | `npm i @talocode/cliplane-cli` |

More: [github.com/talocode](https://github.com/talocode) · [talocode.site](https://talocode.site) · [docs.talocode.site](https://docs.talocode.site)

MIT © Talocode
