NanoClaw, OpenClaw, and HermesAgent are lightweight Python agent runners in the agentr ecosystem. They don’t bundle credential management. Authsome fills that gap. The same patterns work for any Python-native agent runner.Documentation Index
Fetch the complete documentation index at: https://authsome.agentr.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Run under the proxy
Embedding the library
If you’re wiring authsome into a larger orchestrator and want explicit per-call control, call the library directly from your agent code:When to use which
| Use the proxy | Use the library |
|---|---|
| You want a single layer that catches every outbound call. | You want fine-grained control over which connection to use per agent. |
| You’re using third-party clients you can’t easily modify. | The agent is yours and you can pass tokens directly. |
| You need transparent injection for shell tools the agent spawns. | You don’t spawn shell tools. |
What’s next
Run agents with the proxy
The proxy injection model.
Python library
AuthService and the auth-layer API.