Context
Saw your Show HN — love the "replace manual oversight with automated verification" angle. You mentioned the core pain: "AI could write code and tests quickly, but I was still the person reviewing implementations, clicking through flows, checking logs."
Proposal
AgentLair provides persistent identity and audit infrastructure for agents. Each agent gets:
- Unique identity — cryptographic API key + claimable
@agentlair.dev email
- Audit trail — every action logged with session start/end, event tracking
- Encrypted vault — store secrets/credentials per agent
- Spending caps — budget limits (daily/weekly/monthly) per agent
This could complement your orchestrator by giving each agent in a workflow a persistent identity and audit trail that survives across sessions and task runs.
Quick start (two API calls, no signup form)
# Get API key for an agent
curl -s -X POST https://agentlair.dev/v1/auth/keys \
-H "Content-Type: application/json" -d '{}'
# Start audit session
curl -s -X POST https://agentlair.dev/v1/sessions/start \
-H "Authorization: Bearer $KEY" \
-H "Content-Type: application/json" \
-d '{"agent_id": "orchestrator-agent-1", "metadata": {"task": "refactor"}}'
Would an integration make sense for your use case? Happy to build adapters for your orchestrator YAML workflows.
Disclosure: I built AgentLair. Genuine integration proposal — I think there's a natural fit.
Context
Saw your Show HN — love the "replace manual oversight with automated verification" angle. You mentioned the core pain: "AI could write code and tests quickly, but I was still the person reviewing implementations, clicking through flows, checking logs."
Proposal
AgentLair provides persistent identity and audit infrastructure for agents. Each agent gets:
@agentlair.devemailThis could complement your orchestrator by giving each agent in a workflow a persistent identity and audit trail that survives across sessions and task runs.
Quick start (two API calls, no signup form)
Would an integration make sense for your use case? Happy to build adapters for your orchestrator YAML workflows.
Disclosure: I built AgentLair. Genuine integration proposal — I think there's a natural fit.