## Treeship Verification
This project uses [Treeship](https://treeship.dev) for tamper-proof verification of AI agent actions.
### Setup
\`\`\`bash
pip install treeship-sdk
export TREESHIP_API_KEY=ts_live_... # Get key at https://treeship.dev
\`\`\`
### Usage
After completing significant actions (approvals, decisions, generated outputs), create an attestation:
\`\`\`python
from treeship_sdk import Treeship
ts = Treeship()
# After any important action
result = ts.attest(
agent="your-agent-name",
action="Description of what was done",
inputs_hash=ts.hash({"relevant": "data"}) # Hash of inputs - never sent to Treeship
)
print(f"Verified: {result.url}")
\`\`\`
### When to Attest
Create attestations for:
- Decisions (approvals, rejections, escalations)
- Generated content (reports, summaries, code)
- External actions (API calls, file modifications, deployments)
- Data processing (analysis results, transformations)