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/thomaspinder/impulso/agents-mdgit clone --depth 1 https://github.com/thomaspinder/ImpulsoWhat 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.02175 | $0.02175 |
| Opus 5 | $0.01087 | $0.01087 |
| Sonnet 5 | $0.00435 | $0.00435 |
| Haiku 4.5 | $0.00217 | $0.00217 |
Grade A, and why
Impulso 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 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.
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 — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file provides guidance to Codex (Codex.ai/code) when working with code in this repository.
Project Overview
Impulso is a Python library for Bayesian Vector Autoregression (VAR). Early stage (v0.0.12), requires Python >=3.11.
Commands
# Install dependencies and prek hooks
make install
# Run all code quality checks (lock file, pre-commit, type checking)
make check
# Run tests with coverage
make test
# Run a single test
uv run python -m pytest tests/test_foo.py::test_foo -v
# Run only fast tests (skip MCMC sampling)
uv run python -m pytest -m "not slow" -v
# Type check only
uv run ty check
# Lint/format only
uv run ruff check . && uv run ruff format .
# Build the Sphinx/MyST-NB docs (executes + caches notebooks; full MCMC)
make docs
# Build docs in smoke mode, warnings-as-errors (fast MCMC; the PR CI gate)
make docs-ci
# Serve the built docs locally on :8000
make docs-serve
# Check external links resolve (no notebook execution)
make docs-linkcheck
# Multi-version test (Python 3.11-3.14)
uv run tox
Architecture
- Source:
src/impulso/— library code, built as a wheel via Hatchling - Tests:
tests/— pytest with--cov, 90% coverage target (codecov.yaml) - Docs:
docs/— Sphinx + MyST-NB with the shibuya theme (docs/conf.py). Tutorials are jupytext py:percent notebooks (docs/tutorials/*.py, read vianb_custom_formats); the API reference is autodoc/autosummary from docstrings. Link-preview (Open Graph) tags come from sphinxext-opengraph; a page opts into a customog:imagevia MyST front matter in its first markdown cell.
Core Pipeline
The library follows an immutable pipeline where each stage produces the next:
VARData → VAR.fit() → FittedVAR → .set_identification_strategy() → IdentifiedVAR
VARData(data.py): Validated, frozen Pydantic model holding endogenous/exogenous arrays + DatetimeIndex. Constructorfrom_df()for DataFrame input.VAR(spec.py): Model specification (lags, prior). Calling.fit(data, sampler)builds a PyMC model, samples, and returnsFittedVAR.FittedVAR(fitted.py): Reduced-form posterior. Provides.forecast(steps)→ForecastResultand.set_identification_strategy(scheme)→IdentifiedVAR.IdentifiedVAR(identified.py): Structural VAR. Provides.impulse_response()→IRFResult,.fevd()→FEVDResult,.historical_decomposition()→HistoricalDecompositionResult.
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 · 154 lines · 2,175 tokens per session scan A 3246bdfe8460
Impulso AGENTS.md is an instructions file published in the GitHub repository thomaspinder/Impulso (23 stars, last pushed 8d ago), licensed MIT. It adds 2,175 tokens to every session, about $0.0109 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
arcadedb CLAUDE.md
Instructions for ArcadeData/arcadedb, covering claude.md, project overview, response formatting, project instructions and build and development commands.
AutoTS AGENTS.md
Instructions for winedarksea/AutoTS, covering autots agent overview, general code guidelines, small files & single responsibility, hyper-descriptive naming and high-signal comments.
barkley-reference-architecture CLAUDE.md
Claude Code instructions for labs-barkley/barkley-reference-architecture, covering claude.md — barkley reference architecture, what this repo is, before touching any code, non-negotiable framing — read this first and what belongs here — and what doesn't.
art-python AGENTS.md
AGENTS.md instructions for davidesg/art-python, covering agents.md — operating the atsw suite as an ai agent, the suite, core philosophy: evidence vs criterion, two modes and non-negotiable rules.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).