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 instructions/agentjido/jido/agents-mdgit clone --depth 1 https://github.com/agentjido/jidoWhat 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.00480 | $0.00480 |
| Opus 5 | $0.00240 | $0.00240 |
| Sonnet 5 | $0.00096 | $0.00096 |
| Haiku 4.5 | $0.00048 | $0.00048 |
Grade A, and why
jido AGENTS.md 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 today.
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.
What it actually says
AGENTS.md - Jido Guide
Intent
Build reliable agent systems by separating pure decision logic from runtime side-effect execution.
Runtime Baseline
- Elixir
~> 1.18 - OTP
27+(release QA baseline)
Commands
mix test(default alias excludes:flaky)mix test --include flaky(full suite)mix test --cover(coverage gate)mix qormix quality(format --check-formatted,compile --warnings-as-errors,credo,dialyzer)mix docs(local docs)
Architecture Snapshot
Jido.Agent: pure agent module with immutable state andcmd/2Jido.AgentServer: GenServer runtime for directives, lifecycle, and message flowJido.Agent.Directive.*: typed effect descriptors (Emit,SpawnAgent,StopChild, etc.)Jido.Agent.StateOp.*: internal state transition operations applied by strategy layer- Plugins/sensors provide capability composition without coupling core agent logic
Standards
- Keep
cmd/2pure: same input => same{agent, directives}output - Keep directives for external effects only; do not rely on directives for state mutation
- Use Zoi-first schemas for new agent/plugin/signal contracts
- Preserve tagged tuple and structured error contracts at public boundaries
- Keep cross-agent communication on signals/directives, not ad-hoc process messages
Testing and QA
- Prefer pure agent tests first, then AgentServer/runtime integration tests
- Use helpers from
test/AGENTS.md(JidoTest.Case,JidoTest.Eventually) for async assertions - Avoid
Process.sleep/1in tests; assert eventual state/event behavior
Release Hygiene
- Keep semver ranges stable (
~> 2.0for Jido ecosystem peers) - Use Conventional Commits
- Do not modify
CHANGELOG.md; release notes are generated from Git history during release, so keep changes focused on proper Conventional Commits.
References
README.mdusage-rules.mdguides/test/AGENTS.md- https://hexdocs.pm/jido
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.
- today Changed · -14 lines · -150 tokens per session e54d0021b3ff
- 3d ago First seen · 61 lines · 630 tokens per session scan A b8b9f924af06
jido AGENTS.md is an instructions file published in the GitHub repository agentjido/jido (1,828 stars, last pushed today), licensed Apache-2.0. It adds 480 tokens to every session, about $0.0024 per session on Opus 5. 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-30.
Other instructions, from other repositories
agent-framework copilot-instructions.md
Instructions for microsoft/agent-framework, covering github copilot instructions, repository structure and architectural decision records (adrs).
agent-framework python.instructions.md
Instructions for microsoft/agent-framework: See AGENTS.md for project structure and package documentation. Detailed conventions are in the agent skills under .github/skills/.
swarmclaw CLAUDE.md
Instructions for swarmclawai/swarmclaw, covering claude.md, keeping instructions in sync, dev server, code quality and architecture.
squads-cli AGENTS.md
Instructions for agents-squads/squads-cli, covering agent instructions, specs — read before non-trivial changes, what this is, repository structure and build and test.
swarmauri-sdk AGENTS.md
Instructions for swarmauri/swarmauri-sdk, covering contribution guide and swarmauri & tigrbl package requirements.
jidoka AGENTS.md
Instructions for agentjido/jidoka, covering agents.md - jidoka, intent, working rules, commands and release hygiene.