create

create is a command for Claude Code from danielraffel/generous-corp-marketplace. It costs 11 tokens per session (7,667 once invoked), scanned B, original, MIT.

A command that starts a new JUCE audio-plugin project from a starter template. JUCE is a framework for building audio software that runs on multiple operating systems.

In plain words
What is it for?
Use it to create a named plugin project, optionally add Visage GPU-based interface support, and optionally create a GitHub repository.
Why use it?
It checks the development setup and guides project creation, so you do not have to configure the starter project manually.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/username/Code/....

Part of the juce-dev plugin — 3 skills, 10 commands shipped together

Install

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.

Claude Code
/plugin marketplace add danielraffel/generous-corp-marketplace
Claude Code
/plugin install juce-dev

Made for: Claude Code.

Or install juce-dev, the plugin that ships this one along with the rest of its 3 skills, 10 commands.

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

agentmods badge for create

README.md
[![agentmods](https://agentmods.dev/badge/commands/danielraffel/generous-corp-marketplace/create.svg)](https://agentmods.dev/commands/danielraffel/generous-corp-marketplace/create)
Your own site
<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>
Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 7,667 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.1 $0.00011 $0.07667
Opus 5 $0.00005 $0.03834
Sonnet 5 $0.00002 $0.01533
Haiku 4.5 $0.00001 $0.00767

Measured 6d ago against content hash e6480a168d41, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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)
plugins/juce-dev/commands/create.md · 813 lines

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

Read the full file on GitHub · 813 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. 6d ago First seen · 813 lines · 11 tokens per session scan B e6480a168d41

Subscribe to this mod's changes

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.