@tailored-ai/cli
v0.1.9
Published
Tailored AI CLI — lightweight, modular AI agent framework optimized for local LLMs. `tai` command.
Maintainers
Readme
@tailored-ai/cli - tai
Tailored AI is a modular framework for running personal agents. The tai
command starts the local HTTP API and bundled web UI, runs one-shot prompts,
manages sessions/projects/plugins, and opens the TUI setup/editor.
npm install -g @tailored-ai/cliQuick start
# 1. create ~/.tailored-ai/config.yaml
tai init
# 2. start HTTP API + bundled UI + enabled channels/cron/autopilot
tai
# one-shot
tai -m "Summarise today's standup"
# pick a named agent
tai -a coder -m "Add a /healthz route to the server"
# list configured agents, recent sessions, registered projects
tai --list-agents
tai --list-sessions
tai project list
# install external plugins into the TAI plugin home
tai plugin install @tailored-ai/google-tools
tai plugin listMinimal config.yaml
providers:
openai_compatible:
baseUrl: http://localhost:11434/v1
defaultModel: qwen3:8b # any model your local server has pulled
# openai:
# apiKey: ${OPENAI_API_KEY}
# defaultModel: gpt-4o
# anthropic:
# apiKey: ${ANTHROPIC_API_KEY}
# defaultModel: claude-sonnet-4-6
agent:
defaultProvider: openai_compatible
plugins: []
agents:
default:
instructions: "You are a helpful assistant."
tools: [read, write, web_fetch, memory]
tools:
read: { enabled: true }
write: { enabled: true }
web_fetch: { enabled: true }
memory: { enabled: true }A fully annotated reference is at config.example.yaml.
What ships
taiserver mode with HTTP API, bundled web UI, enabled channels, cron, and autopilottai -m,tai -a,tai -s,--jsonfor one-shot and scripted runstai init/tai editsetup and configuration TUItai project init/list— register and switch between repostai plugin install/list/remove/upgrade— install npm, git, tarball, and local plugins into<TAI_HOME>/plugins/tai --list-agents,--list-sessionsfor quick inspection- Setup wizard that probes your provider and discovers available models
Architecture
The CLI is a thin wrapper around @tailored-ai/core and
@tailored-ai/server. See
docs/architecture.md
for the full picture.
License
MIT.
