Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/choria-io/fisk-ai/modelsgit clone --depth 1 https://github.com/choria-io/fisk-aiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/choria-io/fisk-ai/models)<a href="https://agentmods.dev/agents/choria-io/fisk-ai/models"><img src="https://agentmods.dev/badge/agents/choria-io/fisk-ai/models.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.01010 |
| Opus 5 | $0.00000 | $0.00505 |
| Sonnet 5 | $0.00000 | $0.00202 |
| Haiku 4.5 | $0.00000 | $0.00101 |
Grade A, and why
models scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.
+++ title = "Model settings" description = "which model runs the agent, what a run may spend, and whether it reasons" toc = true weight = 20 +++
The agent.yaml sets which model runs the agent, the budget a run may spend, and whether the model exposes its
reasoning. The Basic agent example shows these together. The full set of configuration fields is in
the configuration reference.
Model
llm.model selects the model and is required. It accepts any model identifier the Anthropic API accepts:
llm:
model: claude-sonnet-5
Larger models reason better on complex, long-horizon tasks; smaller models like Haiku are faster and cheaper for narrow
ones. When the agent exposes ten or more tools it relies on the model's server-side tool search, which recent models
support and older ones (Claude Opus 4.1 and earlier and local models) do not. Set llm.no_tool_search to send every tool
directly on an endpoint that does not implement tool search; when a large tool set cannot use it the run warns that all
tools are being sent directly. The configuration reference lists the known models and their trade-offs.
Budget
llm.budget limits the agent loop so it cannot run without end:
llm:
budget:
max_tokens: 500000
max_iterations: 50
call_timeout: 120s
| Setting | Description |
|---|---|
max_tokens |
tokens a whole conversation may process, default 500000 |
max_iterations |
agent loop iterations one turn may take, default 50 |
call_timeout |
per-call timeout as a duration string, default 120s |
The two caps have different scopes. max_iterations applies to a single turn, and
every turn of a conversation gets the same allowance. max_tokens applies to the whole
conversation, so every turn draws on one allowance. Start a new conversation to get a
fresh one.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 97 lines · 0 tokens per session scan A af3f45c38380
models is an agent published in the GitHub repository choria-io/fisk-ai (5 stars, last pushed 3d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,010 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.