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 commands/mgd34msu/goodvibes-plugin/setupgit clone --depth 1 https://github.com/mgd34msu/goodvibes-pluginWhat 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.00025 | $0.00644 |
| Opus 5 | $0.00013 | $0.00322 |
| Sonnet 5 | $0.00005 | $0.00129 |
| Haiku 4.5 | $0.00003 | $0.00064 |
Grade A, and why
setup 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 2d 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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GoodVibes setup (manual repair)
Native dependencies normally install automatically. The first session after a plugin install, or after an update that changes a server's dependency list, spawns a detached background installer, and the tools are ready by the next session. This command is the repair path for when that did not work. It re-runs the same installer in the foreground so the output is visible.
Per-server runtime-only dependencies (native binaries and WASM loaders that do not bundle
cleanly, listed in ${CLAUDE_PLUGIN_ROOT}/server/<name>/package.json):
| Server | Runtime-only dependencies |
|---|---|
intel |
@ast-grep/napi, @vscode/ripgrep, sql.js, web-tree-sitter |
analytics |
sql.js |
connect |
sql.js (database drivers resolve from the target project, not installed here) |
Installs land in the durable home ~/.claude/.goodvibes/deps/<server>/, and each
${CLAUDE_PLUGIN_ROOT}/server/<name>/node_modules is a link to it, so installs survive
plugin updates (the SessionStart hook relinks after an update). Until an install lands, the
servers still boot and every non-native capability works; native-backed capabilities return an
honest pointer here instead of crashing.
Instructions
- Check the install state per server (a representative dependency probes each):
If every server reportsfor s in intel analytics connect; do case $s in intel) probe="@ast-grep/napi" ;; analytics) probe="sql.js" ;; connect) probe="sql.js" ;; esac test -d "${CLAUDE_PLUGIN_ROOT}/server/$s/node_modules/$probe" && echo "$s: INSTALLED" || echo "$s: NEEDS_INSTALL" doneINSTALLED, report that and stop. - Run the installer in the foreground. It is safe to run repeatedly, because servers that are
already installed are skipped and a stale lock older than 10 minutes is ignored.
node "${CLAUDE_PLUGIN_ROOT}/hooks/lib/deps-install.mjs" "${CLAUDE_PLUGIN_ROOT}" - Read
~/.claude/.goodvibes/deps/.last-result.jsonand report the outcome. On success:
On failure, name the failing servers and show the relevant tail ofNative dependencies installed for intel, analytics, and connect. goodvibes' structure-aware search/analysis, the analytics report, and registered service access are ready.~/.claude/.goodvibes/deps/install.log.
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.
- 2d ago First seen · 59 lines · 25 tokens per session scan A bae51eee51a2
setup is a command published in the GitHub repository mgd34msu/goodvibes-plugin (6 stars, last pushed 9d ago), licensed MIT. It adds 25 tokens to every session and 644 once invoked, about $0.0001 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-31.
Other commands, from other repositories
git
Git operations with intelligent commit messages and workflow optimization.
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.