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 skills/thomaspinder/impulso/impulso-workflownpx skills add thomaspinder/Impulso --skill impulso-workflowgit clone --depth 1 https://github.com/thomaspinder/ImpulsoWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/thomaspinder/impulso/impulso-workflow)<a href="https://agentmods.dev/skills/thomaspinder/impulso/impulso-workflow"><img src="https://agentmods.dev/badge/skills/thomaspinder/impulso/impulso-workflow.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00162 | $0.01564 |
| Opus 5 | $0.00081 | $0.00782 |
| Sonnet 5 | $0.00032 | $0.00313 |
| Haiku 4.5 | $0.00016 | $0.00156 |
Grade A, and why
impulso-audit 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 4d 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 — 129 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Impulso Codebase Audit
Full-scope audit of a Bayesian Vector Autoregressive (VAR) and structural VAR library. Run against a local checkout.
Workflow
Execute phases 1–7 in order. Each phase gathers findings. Phase 8 compiles the report.
Phase 1: Repository Discovery
Understand the repo before auditing. Read these files (skip missing ones):
pyproject.toml
setup.cfg / setup.py (if present)
.github/workflows/*.yml
.pre-commit-config.yaml
uv.lock (first 50 lines)
Makefile / justfile (if present)
Record:
- Python version constraints (requires-python)
- Dependency list and version pins
- Dev/test dependency groups
- Build backend (hatchling, setuptools, etc.)
- uv workspace configuration if any
- Linter/formatter config (ruff, mypy, ty, etc.)
Phase 2: Code Standards Audit
Read references/code-standards.md for the full checklist, then scan the source tree.
For each .py file under the main package directory:
- Sample files proportionally — read ALL files in small packages (<30 files), or ~40% in larger ones, prioritising core modules (spec, data, fitted, identified, priors, samplers, results).
- Check against each item in the checklist, including the Probabilistic Programming / Domain-Specific and Protocols and Extensibility sections.
- Record concrete findings with file paths and line numbers where possible.
Phase 3: Pydantic Usage Audit
Read references/pydantic-checklist.md for the full checklist, then audit all Pydantic models.
- Use the Grep tool to find all
BaseModelsubclasses: patternclass \w+\(BaseModel\)insrc/impulso/. - For each model, check against the checklist items: model_config consistency, Field constraints, validator patterns, serialization, arbitrary_types_allowed usage, v2 feature adoption, and performance.
- Pay special attention to:
- Whether a shared base model class would reduce
model_configduplication - Whether
arbitrary_types_allowedis justified for each model - Whether
model_construct()is used in internal code paths that build models from already-validated data - Whether
@computed_fieldcould replace any manual@propertydefinitions
- Whether a shared base model class would reduce
- Record concrete findings with file paths and line numbers.
What ships with it
6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 4d ago First seen · 129 lines · 162 tokens per session scan A a91ea0407919
impulso-audit is a skill published in the GitHub repository thomaspinder/Impulso (23 stars, last pushed 4d ago), licensed MIT. It adds 162 tokens to every session and 1,564 once invoked, about $0.0008 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 skills, from other repositories
agent-framework-azure-ai-py
Build persistent agents on Azure AI Foundry using the Microsoft Agent Framework Python SDK.
python-feature-lifecycle
Guidance for package and feature lifecycle in the Agent Framework Python codebase, including stage meanings, feature-stage decorators, feature enums, and how to move APIs from one stage to the next.
python-development
Coding standards, conventions, and patterns for developing Python code in the Agent Framework repository. Use this when writing or modifying Python source files in the python/ directory.
import-prom-rule
Bulk import of a Prometheus alert rule YAML file (create a whole set of rules at once). Dedicated to handling a remote URL or local YAML text, automatically parsing the three formats groups / a plain rules array / a single rule. ⚠️ Do not use this skill for single-rule creation — when the user describes a single alert…
dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications.
python-code-reviewer
Review Python OpenInference instrumentation code for correctness and completeness. Use this skill when reviewing a Python instrumentor package — whether it's a new instrumentor, a PR that modifies one, or when the user asks to audit/review/check an existing instrumentor's code quality. Trigger on phrases like "review…