Use Cases and Recipes
Use this page when you know what you want AgentOS to do, but you are not sure which feature guide to read first.
First Successful Run
Goal: install AgentOS, configure one provider, and send a real message.
agentos onboard
agentos gateway run
Then open:
http://127.0.0.1:18791/control/
If you prefer the terminal:
agentos chat
Read next:
Reduce Model Cost
Goal: keep simple work on cheaper models and reserve stronger models for hard turns.
agentos configure router --router recommended
agentos cost --by-model
Use diagnostics when you want to inspect routing and runtime behavior:
agentos diagnostics on
Read next:
Work With Large Tool Results
Goal: let the agent inspect logs, pages, tables, search results, or diffs without flooding the model context.
Start with a bounded workspace run:
agentos agent \
--workspace /path/to/project \
--workspace-strict \
-m "Inspect the latest logs and summarize the actionable failures"
If the turn seems too slow or expensive:
agentos cost
agentos diagnostics on
Read next:
Build a Repeatable Workflow
Goal: turn recurring work into reusable skills.
Find an existing skill:
agentos skills search report
agentos skills view <skill-name>
Read next:
Remember Useful Context
Goal: preserve preferences, project notes, or reusable task context so future turns can find them.
agentos memory status
agentos memory search "project preference"
agentos memory list
Inspect a stored memory file:
agentos memory show <path>
Read next:
Connect a Messaging Channel
Goal: use AgentOS from a supported messaging surface while keeping the gateway as the local control point.
agentos channels types
agentos channels describe telegram
agentos channels add telegram --name personal
agentos gateway restart
agentos channels status personal --json
Read next:
Schedule Recurring Work
Goal: ask AgentOS to run a recurring task without manually opening a chat.
agentos cron add \
--every 1h \
--text "Summarize important project updates" \
--name hourly-project-check
Inspect jobs and runs:
agentos cron list
agentos cron status <job-id>
agentos cron runs <job-id>
Read next:
Publish a User-Visible Artifact
Goal: ask the agent to produce a file, report, slide deck, HTML page, image, or media asset that you can inspect and share.
agentos agent -m "Create a short HTML report from the current notes"
agentos sessions export <session-key>
Read next:
Recover From a Bad Run
Goal: understand what happened, reduce risk, and continue safely.
agentos doctor
agentos gateway status
agentos sessions show <session-key>
agentos cost
If a tool was denied or the agent had too much access:
agentos sandbox status
agentos agent --permissions restricted -m "Read only"
Read next: