Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add danielraffel/generous-corp-marketplace/plugin install juce-devWrote 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/commands/danielraffel/generous-corp-marketplace/create)<a href="https://agentmods.dev/commands/danielraffel/generous-corp-marketplace/create"><img src="https://agentmods.dev/badge/commands/danielraffel/generous-corp-marketplace/create.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.1 | $0.00011 | $0.07667 |
| Opus 5 | $0.00005 | $0.03834 |
| Sonnet 5 | $0.00002 | $0.01533 |
| Haiku 4.5 | $0.00001 | $0.00767 |
Grade B, and why
create scanned grade B with 2 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 6d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo apt-get update Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
bash <(curl -fsSL https://raw.githubusercontent.com/danielraffel/JUCE-Plugin-Starter/main/scripts/dependencies.sh) How it starts
The opening of the file, as written. The whole thing — 813 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create JUCE Plugin Project
Create a new JUCE audio plugin project from the JUCE-Plugin-Starter template. This replaces the interactive init_plugin_project.sh script with a streamlined workflow.
Arguments
<plugin-name>: Name of the plugin (e.g., "My Cool Synth"). Required — ask if not provided.--visage: Pre-select Visage GPU UI integration--no-github: Skip GitHub repository creation
Implementation
Follow these 5 stages in order. Do NOT skip stages or combine prompts across stages.
Stage 0: Check Environment
Detect the platform by running uname -s (returns "Darwin" on macOS, "MINGW*"/"MSYS*"/"CYGWIN*" on Git Bash for Windows, or check $env:OS in PowerShell).
macOS:
Check for required development tools:
| Tool | Check Command | Required? |
|---|---|---|
| Xcode CLT | xcode-select -p |
Yes |
| Homebrew | command -v brew |
Yes |
| CMake | command -v cmake |
Yes |
| gh CLI | command -v gh |
Only if GitHub repo desired |
If any required tools are missing, show:
question: "Some development tools are missing. Install them now?"
header: "Setup"
options:
- label: "Install missing tools (Recommended)"
description: "Runs the JUCE-Plugin-Starter dependencies script to install: {list of missing tools}"
- label: "Skip — I'll install them myself"
description: "You'll need these before you can build"
If "Install missing tools":
bash <(curl -fsSL https://raw.githubusercontent.com/danielraffel/JUCE-Plugin-Starter/main/scripts/dependencies.sh)
After the script runs, re-check that tools are now available. If Homebrew was just installed, the user may need to add it to their PATH.
Windows:
Check for required development tools:
| Tool | Check Command | Required? |
|---|---|---|
| Visual Studio / Build Tools | Check for cl.exe in VS paths or vswhere.exe |
Yes |
| CMake | where cmake or Get-Command cmake |
Yes |
| Ninja | where ninja or Get-Command ninja |
Yes |
| Git | where git or Get-Command git |
Yes |
| gh CLI | where gh |
Only if GitHub repo desired |
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.
- 6d ago First seen · 813 lines · 11 tokens per session scan B e6480a168d41
create is a command published in the GitHub repository danielraffel/generous-corp-marketplace (11 stars, last pushed 7d ago), licensed MIT. It adds 11 tokens to every session and 7,667 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
constitution
Create or update the project constitution from interactive or provided principle inputs.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.