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/vladkesler/initrunner/example_toolsgit clone --depth 1 https://github.com/vladkesler/initrunnerWhat 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.04948 |
| Opus 5 | $0.00000 | $0.02474 |
| Sonnet 5 | $0.00000 | $0.00990 |
| Haiku 4.5 | $0.00000 | $0.00495 |
Grade C, and why
example_tools scanned grade C with 2 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 2d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
> `allowed_commands` is an allowlist — only these binaries can be invoked. `require_confirmation: false` is safe here because the commands are read-only status checks. For write operations, keep the default `true`. The s Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- curl How it starts
The opening of the file, as written. The whole thing — 544 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tool Examples — Practical Cookbook
This guide shows how to configure each built-in tool type using real examples from examples/roles/. For the full configuration reference (all fields, defaults, types), see tools.md. For writing custom tools and plugins, see tool_creation.md.
Each section shows the relevant YAML snippet, explains key configuration choices, and links to the complete example file.
HTTP Tool — Uptime Monitoring
Make GET requests to a base URL and check endpoint health.
tools:
- http:
base_url: https://api.example.com
allowed_methods:
- GET
headers:
Accept: application/json
allowed_methods: [GET]restricts the agent to read-only requests — it cannot POST, PUT, or DELETE. Thebase_urlis prepended to every path the agent passes tohttp_request().
- Full example:
examples/roles/uptime-monitor.yaml - Reference: tools.md — HTTP Tool
Slack Tool — Alert Notifications
Post messages to Slack channels via an incoming webhook.
tools:
- slack:
webhook_url: "${SLACK_WEBHOOK_URL}"
default_channel: "#ops-alerts"
username: Uptime Monitor
icon_emoji: ":satellite:"
webhook_urluses${VAR}syntax — the env var is resolved at runtime. This keeps secrets out of version control.default_channel,username, andicon_emojiset the appearance of posted messages.
- Full example:
examples/roles/uptime-monitor.yaml
SQL Tool — Database Queries
Query a SQLite database with engine-level write protection.
tools:
- sql:
database: ./sample.db
read_only: true
max_rows: 100
read_only: trueenablesPRAGMA query_only=ONat the SQLite engine level — no regex filtering, the engine itself rejects writes.max_rowscaps result sets to prevent large outputs from consuming context window.
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.
- 2d ago First seen · 544 lines · 0 tokens per session scan C b8abe955c4bc
example_tools is an agent published in the GitHub repository vladkesler/initrunner (41 stars, last pushed 4d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 4,948 tokens. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
unittest-generator
Use this agent when you need to create unit tests for your code in unittest.TestCase format, organized in a tests folder with concept-based subfolders. Examples: Context: User has just written a new authentication module and needs comprehensive unit tests. user: 'I just finished writing my user authentication…
harness-radar
Weekly movement briefing on the AI agent harness space — what climbed, what entered the radar, what died — from the best-of-Agent-Harnesses dataset, which rescores itself every week. Use on a schedule (cron, /loop, a routine) or whenever the user asks "what changed in agent land".
ecosystem-doc-bridge-corpus-scanner
Status: human guide. Owner: Emerson Braun. Reviewed: 2026-08-14.
ecosystem-doc-bridge-handoff-author
Status: human guide. Owner: Emerson Braun. Reviewed: 2026-08-14.
content-newsletter-author
Status: human guide. Owner: Emerson Braun. Reviewed: 2026-08-14.
ecosystem-registry-eval-author
Status: human guide. Owner: Emerson Braun. Reviewed: 2026-08-14.