https://github.com/friday-platform/agent-sdk
Friday Agent SDK
https://github.com/friday-platform/agent-sdk
Last synced: 2 months ago
JSON representation
Friday Agent SDK
- Host: GitHub
- URL: https://github.com/friday-platform/agent-sdk
- Owner: friday-platform
- Created: 2026-04-07T15:31:45.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-29T04:03:31.000Z (2 months ago)
- Last Synced: 2026-04-29T06:12:21.825Z (2 months ago)
- Language: Python
- Size: 39.3 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: agents.md
Awesome Lists containing this project
README
# Friday Agent SDK
[](https://github.com/friday-platform/agent-sdk/actions/workflows/ci.yml)
[](https://pypi.org/project/friday-agent-sdk/)
[](https://pypi.org/project/friday-agent-sdk/)
[](LICENSE)
> **Status: alpha — APIs may change.** Pin an exact version in production and
> read the [CHANGELOG](CHANGELOG.md) before upgrading.
Write AI agents in Python (and soon other languages) that run inside the
[Friday platform](https://github.com/friday-platform/friday-studio). The host
manages credentials and routes LLM, HTTP, and MCP calls on the agent's behalf,
so your agent code stays a pure Python function — no provider SDKs, no key
plumbing.
**Requirements** (the SDK is not standalone):
- Python 3.12+
- A running [Friday daemon](https://github.com/friday-platform/friday-studio)
(provides the `atlas` CLI and the host runtime)
- An LLM provider key (Anthropic, OpenAI, or Google) configured in the daemon's
`.env` — agents never see it directly
- **SDK reference & guides:** [`packages/python/README.md`](packages/python/README.md)
and [`packages/python/docs/`](packages/python/docs/)
- **Examples:** [`packages/python/examples/`](packages/python/examples/) — 10
runnable agents from minimal to production-grade
- **Friday platform docs:** https://docs.hellofriday.ai/
- **Daemon & `atlas` CLI:** [friday-platform/friday-studio](https://github.com/friday-platform/friday-studio)
## Repository layout
This is a monorepo. The product is the Python package under
[`packages/python/`](packages/python/); the TypeScript root is dev tooling
([Vite+](https://vite.plus/)) for running checks across the workspace.
## Quick start
```bash
pip install friday-agent-sdk
```
Then see [`packages/python/README.md`](packages/python/README.md) to write
and run your first agent.
## Contributing
Please read [CONTRIBUTING.md](CONTRIBUTING.md). Security issues: see
[SECURITY.md](SECURITY.md).
## License
[MIT](LICENSE)