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/vm)<a href="https://agentmods.dev/commands/danielraffel/generous-corp-marketplace/vm"><img src="https://agentmods.dev/badge/commands/danielraffel/generous-corp-marketplace/vm.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.00008 | $0.01259 |
| Opus 5 | $0.00004 | $0.00629 |
| Sonnet 5 | $0.00002 | $0.00252 |
| Haiku 4.5 | $0.00001 | $0.00126 |
Grade A, and why
vm 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 8d 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 — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
JUCE Dev VM Management
Configure and manage SSH-accessible VMs for cross-platform build testing.
Usage
/juce-dev:vm add <name> <ssh-alias> <platform> # Add a VM
/juce-dev:vm remove <name> # Remove a VM
/juce-dev:vm list # List all VMs
/juce-dev:vm test [name] # Test VM connectivity
Arguments
add <name> <ssh-alias> <platform>: Register a new VMname: Friendly name (e.g., "win11", "ubuntu24", "win10-arm64")ssh-alias: SSH config alias (e.g., "win" forssh win)platform: One ofwindows,linux,macos
remove <name>: Remove a registered VMlist: Show all registered VMs and their statustest [name]: Test SSH connectivity (all VMs if no name given)
Examples
/juce-dev:vm add win11 win windows
/juce-dev:vm add ubuntu24 linux linux
/juce-dev:vm add win10-arm win-arm windows
/juce-dev:vm list
/juce-dev:vm test win11
/juce-dev:vm remove ubuntu24
Implementation
Storage
VM configs are stored in .claude/juce-dev.local.md in the project root.
YAML frontmatter format:
---
vms:
win11:
ssh: win
platform: windows
project_path: C:\Users\daniel\Code\JUCE-Plugin-Starter
shell: powershell
ubuntu24:
ssh: linux
platform: linux
project_path: /home/daniel/Code/JUCE-Plugin-Starter
shell: bash
---
Action: add
- Parse
$ARGUMENTSfor name, ssh-alias, platform. - If any are missing, use AskUserQuestion:
question: "What SSH alias connects to this VM? (e.g., 'win' if you use 'ssh win')" header: "SSH Alias" - Verify SSH connectivity:
ssh -o ConnectTimeout=5 <ssh-alias> "echo connected" 2>&1 - If connected, detect the remote home/project directory:
# Windows ssh <ssh-alias> "echo %USERPROFILE%" # Linux/macOS ssh <ssh-alias> "echo $HOME" - Ask where the project should live on the VM:
question: "Where should projects live on this VM?" header: "Project Path" options: - label: "{detected_home}/Code" description: "Standard location" - label: "Other" description: "Specify a custom path" - Write/update
.claude/juce-dev.local.mdwith the new VM entry. - Confirm:
VM 'win11' added: - SSH: ssh win - Platform: windows - Project path: C:\Users\daniel\Code - Shell: powershell
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.
- 8d ago First seen · 168 lines · 8 tokens per session scan A a8f2e81e4c3f
vm is a command published in the GitHub repository danielraffel/generous-corp-marketplace (11 stars, last pushed 9d ago), licensed MIT. It adds 8 tokens to every session and 1,259 once invoked, about $0.0000 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 commands, from other repositories
qa-changes
This skill should be used when the user asks to "QA a pull request", "test PR changes", "verify a PR works", "functionally test changes", or when an automated workflow triggers QA validation of code changes. Provides a structured methodology for setting up the environment, exercising changed behavior, and reporting…
verify
Run repository verification using the verification-loop skill.
test-coverage
Analyze test coverage and identify the highest-value gaps to fill.
tdd
A command that follows test-driven development (TDD), a method where you write tests before the code they check. It moves through writing a failing test, adding the smallest implementation, and then improving the code.
check-dev
Type-check a Z specification with fuzz.
laravel-playwright
E2E Playwright patterns; use the laravel:e2e-playwright skill exactly as written.