Impulso AGENTS.md

A set of repository instructions for Impulso, a Python library for Bayesian Vector Autoregression, a statistical method for modeling several changing time series together. It lists development, testing, documentation, and compatibility commands.

In plain words
What is it for?
Installing dependencies, running tests and coverage, checking types and formatting, building Sphinx documentation, checking links, and testing across Python 3.11 through 3.14.
Why use it?
It tells agents how to check library changes across supported Python versions and how to handle documentation that runs notebook examples.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/thomaspinder/impulso/agents-md
Clone the repo
git clone --depth 1 https://github.com/thomaspinder/Impulso

Made for: Codex, OpenCode.

Per session 2,175 This file is loaded in full into every session.
When invoked 2,175 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 3246bdfe8460, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 154 lines

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 via nb_custom_formats); the API reference is autodoc/autosummary from docstrings. Link-preview (Open Graph) tags come from sphinxext-opengraph; a page opts into a custom og:image via 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. Constructor from_df() for DataFrame input.
  • VAR (spec.py): Model specification (lags, prior). Calling .fit(data, sampler) builds a PyMC model, samples, and returns FittedVAR.
  • FittedVAR (fitted.py): Reduced-form posterior. Provides .forecast(steps)ForecastResult and .set_identification_strategy(scheme)IdentifiedVAR.
  • IdentifiedVAR (identified.py): Structural VAR. Provides .impulse_response()IRFResult, .fevd()FEVDResult, .historical_decomposition()HistoricalDecompositionResult.

Read the full file on GitHub · 154 lines

Changes

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.

  1. 2d ago First seen · 154 lines · 2,175 tokens per session scan A 3246bdfe8460

Subscribe to this mod's changes

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.

Related

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.

ArcadeData/arcadedb · 2,966 tokens

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.

winedarksea/AutoTS · 846 tokens

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.

labs-barkley/barkley-reference-architecture · 845 tokens

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.

davidesg/art-python · 901 tokens

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.

github/spec-kit · 7,104 tokens

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).

microsoft/vscode · 6,785 tokens