Source-available local AI runtime and CLI for AFKBOT
Project description
AFKBOT
AFKBOT is a source-available local AI runtime and CLI for chat-driven workflows, tool calling, automations, and profile-scoped agent environments.
Documentation lives at afkbot.io/docs. The project site is afkbot.io. Use the docs site for setup, configuration, MCP, automations, and command reference.
What AFKBOT does
- Runs local chat sessions with tool access, planning, and configurable reasoning.
- Supports multiple LLM providers in setup/profile runtime (
openrouter,openai,claude,moonshot,deepseek,xai,qwen, andcustom). - Provides a CLI-first workflow for setup, chat, health checks, and runtime control.
- Supports profile-scoped configuration, secrets, permissions, and tool exposure.
- Includes browser, web, app, MCP, automation, and channel integration surfaces.
- Exposes a local runtime and API layer for longer-running workflows.
License Model
- AFKBOT source code is available under the
Sustainable Use License 1.0. - Personal use, non-commercial use, and internal business use are allowed.
- Forking and modifying AFKBOT are allowed, but redistribution must stay free of charge and non-commercial.
- You may not sell AFKBOT, sell copies of AFKBOT, resell the source code, or offer AFKBOT as a paid hosted or white-label service without separate permission.
- The repository license does not grant any trademark rights to the AFKBOT name, logo, or branding.
Requirements
- Python 3.12 or newer for manual source installs
uvrecommended for local development- SQLite is the default runtime database for AFKBOT
- The hosted installers bootstrap
uv, install AFKBOT as an isolated uv tool, and keep runtime state outside the app source tree
Install
Hosted installer for macOS/Linux:
curl -fsSL https://afkbot.io/install.sh | bash
# open a new terminal after install
afk setup
afk doctor
afk chat
Hosted installer for Windows PowerShell:
powershell -c "irm https://afkbot.io/install.ps1 | iex"
# open a new terminal after install
afk setup
afk doctor
afk chat
Local installer from a source checkout:
bash scripts/install.sh --repo-url "file://$PWD"
# open a new terminal after install
afk setup
afk doctor
afk chat
Common installer flags:
# installer and setup prompts in Russian
curl -fsSL https://afkbot.io/install.sh | bash -s -- --lang ru
# install from a specific Git ref
curl -fsSL https://afkbot.io/install.sh | bash -s -- --git-ref v1.0.10
# install from a local checkout
bash scripts/install.sh --repo-url "file://$PWD"
# show actions without mutating the machine
bash scripts/install.sh --dry-run
# skip bootstrap-only setup seeding during install
bash scripts/install.sh --skip-setup
What the installer does:
- bootstraps
uvinto the user-local bin directory if needed - installs AFKBOT as an isolated
uv tool - updates shell integration so
afkis available in new terminals - seeds the runtime root with bootstrap-only setup metadata
- remembers the install source so
afk updatecan refresh the same source later
The installer is idempotent. Rerun it to refresh the installed tool in place, or use afk update.
First Run
For normal usage, the first-run flow is:
afk setup
afk doctor
afk chat
afk setupconfigures the default profile, provider, policy, locale, and runtime defaultsafk setupalso asks whetherafk chatshould check for AFKBOT updates before opening chatafk doctorprints the effective runtime/chat ports and checks local readinessafk chatis the main entrypoint for real work
If update notices are enabled in setup, interactive afk chat checks for a newer AFKBOT build before opening the session and asks:
YesNoRemind in a week
No continues into chat immediately and does not save a permanent skip. Remind in a week suppresses all update prompts for seven days. If you disable update notices in setup, chat will not ask at startup.
The runtime chooses and persists a non-default local port automatically for fresh installs, so use afk doctor when you need the actual runtime_port or api_port.
Manual local source setup with uv:
uv sync --extra dev
uv run afk setup
uv run afk doctor
uv run afk chat
Manual local source setup with pip:
python3.12 -m venv .venv
source .venv/bin/activate
pip install -e .[dev]
afk setup
afk doctor
afk chat
Local Runtime
AFKBOT uses one local SQLite database by default for runtime state, semantic memory, and chat metadata:
export AFKBOT_DB_URL='sqlite+aiosqlite:///./afkbot.db'
Start the local runtime/API:
uv run afk start
uv run afk doctor
# doctor prints the effective runtime_port and api_port for this install
Webhook trigger example:
curl -X POST http://127.0.0.1:<runtime_port>/v1/automations/<profile_id>/webhook/<token> \
-H 'Content-Type: application/json' \
-d '{"event_id":"manual-test-1"}'
Useful commands:
uv run afk version
uv run afk doctor
uv run afk setup
uv run afk chat --message "Summarize this project"
uv run afk automation list --profile default
uv run afk plugin list
uv run afk mcp list
uv run afk profile show default
uv run afk update
Plugins
AFKBOT supports installable embedded plugins that extend the local platform with:
- API routers
- static web apps
- tool factories
- skill directories
- app registrars
- optional startup and shutdown hooks
Current curated plugins:
afkbotui: unified AFKBOT web workspace for automations today and future operator surfaces
Typical operator flow:
uv run afk plugin list
uv run afk plugin install
uv run afk plugin inspect afkbotui
uv run afk plugin config-get afkbotui
uv run afk plugin update afkbotui
afk plugin install now works as a small wizard:
- it shows curated plugins that are not installed yet
- today the curated list contains only
afkbotui - the last option is a custom GitHub source, where you can paste a GitHub URL or
github:owner/repo@ref
You can still install directly without the wizard:
uv run afk plugin install github:afkbot-io/afkbotuiplugin@main
Direct afk plugin install <source> also still accepts a local path when you want to install a plugin from a checkout on disk.
The current curated external plugin is AFKBOT UI. Today it provides the web workspace for automations and is intended to expand into the main operator surface for Task Flow, subagents, MCP, AI settings, and profile management. The older kanban-specific example is no longer the curated plugin path. After installation and afk start, it mounts:
- API:
/v1/plugins/afkbotui/... - UI:
/plugins/afkbotui
Plugin install state lives under the AFKBOT runtime root in /plugins/... and is treated as local machine state, not repository content.
Channels Quickstart
AFKBOT can attach chat transports to a profile for inbound routing and operator workflows. Use the docs site for the full command reference; the examples below cover the common setup paths.
Telegram bot polling channel:
# guided wizard; omit channel_id to let AFKBOT suggest one
afk channel telegram add
# fully explicit example
afk channel telegram add support-bot --profile default --credential-profile support-bot
afk channel telegram status
afk channel telegram show support-bot
Telethon user-account channel:
# guided wizard; omit channel_id to let AFKBOT suggest one
afk channel telethon add
# fully explicit example
afk channel telethon add personal-user --profile default --credential-profile personal-user
afk channel telethon status --probe
afk channel telethon show personal-user
Notes:
- Interactive channel setup explains required credentials inline: Telegram bot token comes from
@BotFather; Telethonapi_idandapi_hashcome frommy.telegram.org. - If you skip the Telethon session string during setup, finish login later with
afk channel telethon authorize <channel_id>. - Interactive prompt language follows this order: explicit
--langor--ru, then the project's savedprompt_language, then the current system locale.
MCP Quickstart
AFKBOT supports profile-local MCP configuration plus runtime MCP tool discovery.
Manual CLI flow:
# connect one MCP endpoint URL to the default profile
afk mcp connect https://example.com/mcp --profile default --secret-ref mcp_example_token
# inspect the saved config
afk mcp get example --profile default
# validate effective MCP files for the profile
afk mcp validate --profile default
# list all saved MCP servers, including disabled entries
afk mcp list --profile default --show-disabled
You can still use the explicit form:
afk mcp add --profile default --url https://example.com/mcp --secret-ref mcp_example_token
Chat-driven flow:
Connect this MCP endpoint to my default profile: https://example.com/mcp
Show me what was saved and validate it.
Notes:
- Use the actual MCP endpoint URL, not a generic product homepage.
afk mcpandmcp.profile.*manage profile config.mcp.tools.listandmcp.tools.callare the runtime bridge used after a compatible remote MCP server is configured and exposed.- If the MCP server needs auth, store only refs in MCP config such as
secret_refsorenv_refs; do not hardcode plaintext secrets into MCP JSON.
Managed-install maintenance:
afk update
bash scripts/uninstall.sh --yes
afk update
powershell -ExecutionPolicy Bypass -File .\scripts\uninstall.ps1 -Yes
Hosted installers use uv tool install under the hood. Advanced equivalents:
uv tool install --python 3.12 --reinstall https://github.com/afkbot-io/afkbotio/archive/main.tar.gz
afk update
uv tool uninstall afkbotio
Configuration
- Environment-based configuration examples live in
.env.example. - Setup/provider selection supports OpenRouter, OpenAI, Claude, Moonshot (Kimi), DeepSeek, xAI, Qwen, and custom OpenAI-compatible endpoints.
- Runtime secrets should be configured through
afk setup,afk profile, or credential commands, not committed into the repository. - Manual source setups use a local SQLite database and a local AFKBOT runtime.
- New installs create the current SQLite schema directly; no legacy migration chain is required.
- Full setup guidance and user documentation are published at afkbot.io/docs.
Development
Install the development environment and run the standard checks:
uv sync --extra dev
uv run ruff check afkbot tests
uv run mypy afkbot tests
uv run pytest -q
PyPI Release
The project builds clean Python distributions and passes twine check:
uv build
uvx twine check dist/*
For a safe dry run, upload to TestPyPI first:
uvx twine upload --repository testpypi dist/*
This repository also includes a GitHub Actions publish workflow prepared for trusted publishing:
workflow_dispatch: builds distributions and publishes totestpypipushonv*tags: builds distributions, attaches them to the GitHub release, and publishes topypi
Before using the workflow, create matching trusted publishing environments in PyPI:
testpypiforhttps://test.pypi.org/p/afkbotiopypiforhttps://pypi.org/project/afkbotio/
License
AFKBOT is distributed under the Sustainable Use License 1.0.
- See
LICENSEfor the full license text. - See
LICENSE_FAQ.mdfor practical allowed/not-allowed examples. - See
COMMERCIAL_LICENSE.mdfor commercial-use guidance. - See
TRADEMARKS.mdfor brand and name usage rules.
Project details
Release history Release notifications | RSS feed
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 afkbotio-1.0.10.tar.gz.
File metadata
- Download URL: afkbotio-1.0.10.tar.gz
- Upload date:
- Size: 743.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8185f4e2c0711eaf3978401b94b0bce86a150f9734b4ab4d26e450392289ce93
|
|
| MD5 |
5791811238de22f380c05da806a99fc9
|
|
| BLAKE2b-256 |
d0beb053cf1e581518d692c6bb5511a547b04ca1808b5958bc4b6388837ca70c
|
File details
Details for the file afkbotio-1.0.10-py3-none-any.whl.
File metadata
- Download URL: afkbotio-1.0.10-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
444c4ea2f12286d74a2942b7f87534d333299601e1fbeae575fc3cb301e383cd
|
|
| MD5 |
f641bc9bf607ed19f7435b23af5cbdc6
|
|
| BLAKE2b-256 |
8088bd4c899b80f26d801dc8c5039a65e46041cd1a78f97e8fb6952f321237fb
|