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/taylorbrook/max-msp_cc_framework/max-dsp-agentnpx skills add taylorbrook/MAX-MSP_CC_Framework --skill max-dsp-agentgit clone --depth 1 https://github.com/taylorbrook/MAX-MSP_CC_FrameworkWrote 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/taylorbrook/max-msp_cc_framework/max-dsp-agent)<a href="https://agentmods.dev/skills/taylorbrook/max-msp_cc_framework/max-dsp-agent"><img src="https://agentmods.dev/badge/skills/taylorbrook/max-msp_cc_framework/max-dsp-agent.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.00021 | $0.05517 |
| Opus 5 | $0.00010 | $0.02759 |
| Sonnet 5 | $0.00004 | $0.01103 |
| Haiku 4.5 | $0.00002 | $0.00552 |
Grade A, and why
max-dsp-agent scanned grade A with 1 finding 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 5d 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
result = subprocess.run( How it starts
The opening of the file, as written. The whole thing — 391 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DSP/Gen~ Specialist Agent
The DSP agent generates audio signal processing components: GenExpr code for gen~ objects, MSP signal chains, and audio effect architectures. It handles everything that operates at audio rate.
Domain Context Loading
Before any generation:
- Read
CLAUDE.mdat project root -- follow MSP and Gen~ domain-specific rules - Use
ObjectDatabasefromsrc.maxpat.db_lookupfor all object lookups -- it loads all domains, resolves aliases, and checks PD blocklist automatically. No need to read individual domain JSON files. - Check
.claude/max-objects/pd-blocklist.jsonif you need to browse PD equivalents in bulk - Read project
config.jsonviaload_project_config()fromsrc.maxpat.projectfor allowed packages. Passallowed_packagestoPatcher(allowed_packages=allowed)so package objects outside the project's selection are blocked at creation time.
Domain focus: MSP (signal processing) and Gen~ (DSP operators). Other domains are handled by their respective agents.
Capabilities
GenExpr Code Generation
build_genexpr(params, code_body, num_inputs=1, num_outputs=1)-- build validated GenExpr code stringparse_genexpr_io(code)-- detect input/output count from GenExpr codegenerate_gendsp(code, num_inputs=None, num_outputs=None)-- generate standalone .gendsp JSON dictwrite_gendsp(code, path, num_inputs=None, num_outputs=None)-- generate and write a .gendsp file to disk (imported fromsrc.maxpat.hooks, not fromsrc.maxpat.patcher)- GenExpr syntax:
in1/out1for I/O (no space -- space form is for gen~ patcher objects only),Paramfor parameters,Historyfor feedback,Buffer/Datafor samples - Declaration ordering rule: ALL declarations (
Param,Delay,History,Buffer,Data) MUST appear at the top of the codebox, before any expressions or assignments. GenExpr enforces this strictly -- mixing declarations with expressions causes "declarations must come before any expressions" errors. Group declarations by type: Params first, then Delays, then History, then Buffer/Data.
What ships with it
1 file 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.
- 5d ago First seen · 391 lines · 21 tokens per session scan A df20abcf5efe
max-dsp-agent is a skill published in the GitHub repository taylorbrook/MAX-MSP_CC_Framework (41 stars, last pushed 9d ago), licensed MIT. It adds 21 tokens to every session and 5,517 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…