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/pass-agent/loomkin/agents-mdgit clone --depth 1 https://github.com/pass-agent/loomkinWhat 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.00686 | $0.00686 |
| Opus 5 | $0.00343 | $0.00343 |
| Sonnet 5 | $0.00137 | $0.00137 |
| Haiku 4.5 | $0.00069 | $0.00069 |
Grade A, and why
loomkin 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 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 — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Loomkin - AI Instructions
Read and follow CONTRIBUTING.md for all conventions, including commit message format, build commands, and code style.
Monorepo Layout
loomkin-server/— Elixir/Phoenix app (mix.exs, lib/, config/, priv/, test/, assets/)apps/— Client applications (desktop, mobile) — futurepackages/— Shared JS/TS libraries — futureservices/— Polyglot backend services — future
All mix commands must be run from the loomkin-server/ directory (or use make targets from root).
Key reminders:
- Commit subjects must be fully lowercase (no acronyms like UI or API — use
ui,api) - Run
cd loomkin-server && mix formatbefore committing - Run
cd loomkin-server && mix precommitto validate everything before pushing - Never run slow commands (e.g.
mix test,mix precommit,mix compile) without piping output to a/tmplog file (e.g.mix test 2>&1 | tee /tmp/mix_test.log). This avoids rerunning the entire command just to grep for a specific string — search the log file instead.
Authentication
- Always handle authentication flow at the router level with proper redirects
- Always be mindful of where to place routes.
phx.gen.authcreates multiple router plugs:- A plug
:fetch_current_scope_for_userthat is included in the default browser pipeline - A plug
:require_authenticated_userthat redirects to the log in page when the user is not authenticated - In both cases, a
@current_scopeis assigned to the Plug connection - A plug
redirect_if_user_is_authenticatedthat redirects to a default path in case the user is authenticated - useful for a registration page that should only be shown to unauthenticated users
- A plug
- Always let the user know in which router scopes and pipeline you are placing the route, AND SAY WHY
phx.gen.authassigns thecurrent_scopeassign - it does not assign acurrent_userassign- Always pass the assign
current_scopeto context modules as first argument. When performing queries, usecurrent_scope.userto filter the query results - To derive/access
current_userin templates, always use the@current_scope.user, never use@current_userin templates - Anytime you hit
current_scopeerrors or the logged in session isn't displaying the right content, always double check the router and ensure you are using the correct plug as described below
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 · 51 lines · 686 tokens per session scan A 8fad7c6f6d76
loomkin AGENTS.md is an instructions file published in the GitHub repository pass-agent/loomkin (179 stars, last pushed 3mo ago), licensed MIT. It adds 686 tokens to every session, about $0.0034 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
claude_code CLAUDE.md
Instructions for guess/claude_code, covering claude.md, project overview, common development commands, quality checks and testing.
lang_ex AGENTS.md
Instructions for freshaengineering/lang_ex, covering langex, commands, architecture, behaviours and key design decisions.
raxol CLAUDE.md
Instructions for DROOdotFOO/raxol, covering claude.md, essential commands, initial setup, building & compilation and testing.
elixir-lsp CLAUDE.md
Claude Code instructions for zircote/elixir-lsp, covering claude.md, project overview, setup, key files and conventions.
pi-elixir AGENTS.md
AGENTS.md instructions for elixir-vibe/pi-elixir, covering agent notes, planning, releases, local dogfooding and checks and integration tests.
lang_ex CLAUDE.md
Instructions for freshaengineering/lang_ex, a project described as: LangGraph for Elixir. Durable, human-in-the-loop LLM agents on the BEAM.