This release is a pre-release and may not be stable for production use.
AtBots
Pydantic AI, already set up. AtBots is a thin layer over Pydantic AI that ships with tasks, skills, and memory wired together, as a library and a CLI.
pip install atbots
AtBots is a general-purpose agent package. It is not a sidecar, an extraction worker, or the intelligence layer for any other product.
The three pillars
| Pillar | What it gives you |
|---|---|
| Tasks | Named, reusable units of work with declared inputs and typed results. Run them from code or the CLI; inspect what ran. |
| Skills | SKILL.md directories the agent discovers and applies on demand. Extend the agent by writing documents, not code. |
| Memory | A pluggable provider interface. A local default works out of the box; any backend that implements the interface is equally supported. |
Thin layer, on purpose
AtBots contributes defaults and wiring — instructions, toolsets, skill loading, memory binding, model routing, a CLI. Pydantic AI keeps the agent loop, model calls, tool dispatch, and structured output.
That means:
- The underlying Pydantic AI
Agentis reachable; use any upstream feature directly. - Your existing Pydantic AI tools, toolsets, and model objects work as-is — no adapters.
- If AtBots wraps something Pydantic AI already does well, that's a bug.
Models
Ollama is the default when no remote provider is configured, so local work needs no vendor. OpenAI-compatible providers are first-class and require an explicit endpoint and credentials — installing AtBots never downloads a large model or creates an API key on your behalf. Switching providers is a configuration change; tasks, skills, and tools are untouched.
Configuring memory
Memory is a port, not a vendor. Core atbots depends on no third-party
memory product. It defines a provider interface — store and recall, sync and
async — and ships a local default so a fresh install works immediately.
Point it anywhere by satisfying that interface:
- the built-in default — local, no account, no external service;
- mem0, AtMem, or another hosted or self-hosted memory service;
- a vector store you already run;
- your own class, if none of the above fit.
Swapping backends changes configuration only. Your task, skill, and tool code does not change. Backends that need an extra dependency install as extras and fail with a clear message naming the missing package if it isn't present.
Spec-driven development
This repository uses GitHub Spec Kit. Product behavior is specified first; implementation follows those artifacts.
| Artifact | Path |
|---|---|
| Constitution | .specify/memory/constitution.md |
| Feature spec | specs/002-general-purpose-agent/spec.md |
Grok Build skills live in .grok/skills/. From the project
directory:
/speckit-constitution— project principles (ratified, v3.0.0)/speckit-specify— what to build/speckit-clarify— optional quality gate/speckit-plan— how to build it/speckit-checklist— optional requirements review/speckit-tasks— implementation breakdown/speckit-analyze— optional consistency report/speckit-implement— execute remaining tasks/speckit-converge— close gaps against spec, plan, and tasks
The git extension creates numbered feature branches (002-…). Active feature
state is .specify/feature.json, not the checked-out
branch alone.
Requires the Specify CLI (uv tool install specify-cli). Integration: Grok
Build (specify init --here --integration grok).
Development
python -m pip install -e ".[dev]"
python -m pytest -q
License
AtBots is licensed under the Apache License 2.0. It permits commercial and internal enterprise use, modification, and distribution, subject to the license terms. Apache-2.0 also provides an explicit contributor patent grant and does not require an organization to publish private changes merely because it runs the software as a service.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file atbots-0.1.0a1.tar.gz.
File metadata
- Download URL: atbots-0.1.0a1.tar.gz
- Upload date:
- Size: 26.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9b921eb0b72b4d656e5fbec625b04ff733ac62b187c443ad692ce5e02072737
|
|
| MD5 |
bcd1d97854fc74e382d0057417f26bae
|
|
| BLAKE2b-256 |
a739ce1bb2ecf968711d3d3f40d3faee03e7b6faf6713a55cc8edddbf639010b
|
File details
Details for the file atbots-0.1.0a1-py3-none-any.whl.
File metadata
- Download URL: atbots-0.1.0a1-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0afb760ac278c2f2668ac98d64aa35a3c8ab294d4fd0ac2ec17bd3932d8e4290
|
|
| MD5 |
cdcbd7c91269a5a17ce471f4b9d3b661
|
|
| BLAKE2b-256 |
bd2b16c61c8d617258310b4152d511abe2c5cc1793db19cfc3bf4d9c9555b852
|