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 skills add Vibe-Marketer/plugins-and-skills --skill configure-pluginsgit clone --depth 1 https://github.com/Vibe-Marketer/plugins-and-skillsWrote 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/vibe-marketer/plugins-and-skills/configure-plugins)<a href="https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/configure-plugins"><img src="https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/configure-plugins.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.00101 | $0.01710 |
| Opus 5 | $0.00051 | $0.00855 |
| Sonnet 5 | $0.00020 | $0.00342 |
| Haiku 4.5 | $0.00010 | $0.00171 |
Grade B, and why
configure-plugins scanned grade B 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 7d 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.
- Settings files should be readable by user only (`chmod 600`) How it starts
The opening of the file, as written. The whole thing — 237 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<quick_start>
- Create
.claude/plugin-name.local.mdin the project root - Add YAML frontmatter with configuration fields
- Optionally add markdown body for prompts or context
- Read settings from hooks, commands, or agents
- Add
.claude/*.local.mdto.gitignore</quick_start>
<essential_principles>
- Settings files are per-project (not global) -- each project can have different configuration
- Settings files are user-local (not committed) -- always gitignored
- Changes to settings require Claude Code restart -- hooks load at session start
- Always provide sensible defaults when the settings file doesn't exist </essential_principles>
---
enabled: true
validation_level: standard # strict | standard | lenient
max_retries: 3
allowed_extensions: [".js", ".ts", ".tsx"]
---
# Additional Context
This markdown body is available as supplementary content.
It can contain task descriptions, prompts, or instructions.
</step_1_design_schema>
<step_2_create_file>
Create the settings file at .claude/plugin-name.local.md:
Naming rules:
- Use
.claude/directory - Match the plugin name exactly
- Use
.local.mdsuffix (signals user-local, non-committed file)
Add to .gitignore:
.claude/*.local.md
.claude/*.local.json
</step_2_create_file>
<step_3_read_settings> From hooks (bash scripts):
#!/bin/bash
set -euo pipefail
STATE_FILE=".claude/my-plugin.local.md"
# Quick exit if not configured
if [[ ! -f "$STATE_FILE" ]]; then
exit 0 # Use defaults, skip hook logic
fi
# Extract frontmatter (between --- markers)
FRONTMATTER=$(sed -n '/^---$/,/^---$/{ /^---$/d; p; }' "$STATE_FILE")
# Read individual fields
ENABLED=$(echo "$FRONTMATTER" | grep '^enabled:' | sed 's/enabled: *//' | sed 's/^"\(.*\)"$/\1/')
MODE=$(echo "$FRONTMATTER" | grep '^validation_level:' | sed 's/validation_level: *//')
# Check if enabled
if [[ "$ENABLED" != "true" ]]; then
exit 0
fi
# Extract markdown body (after second ---)
BODY=$(awk '/^---$/{i++; next} i>=2' "$STATE_FILE")
From commands:
Steps:
1. Check if settings exist at .claude/my-plugin.local.md
2. Read configuration using Read tool
3. Parse YAML frontmatter to extract settings
4. Apply settings to processing logic
From agents:
Check for plugin settings at .claude/my-plugin.local.md.
If present, parse YAML frontmatter and adapt behavior accordingly.
</step_3_read_settings>
<step_4_validate> Validate settings values in hook scripts:
# Validate boolean
if [[ "$ENABLED" != "true" && "$ENABLED" != "false" ]]; then
ENABLED=true # Default
fi
# Validate numeric range
if ! [[ "$MAX" =~ ^[0-9]+$ ]] || [[ $MAX -lt 1 ]] || [[ $MAX -gt 100 ]]; then
MAX=10 # Default
fi
# Validate enum
case "$MODE" in
strict|standard|lenient) ;; # Valid
*) MODE=standard ;; # Default
esac
</step_4_validate>
<common_patterns> <temporarily_active_hooks> Use settings to enable/disable hooks without editing hooks.json:
# In hook script
STATE_FILE=".claude/security-scan.local.md"
if [[ ! -f "$STATE_FILE" ]]; then exit 0; fi
FRONTMATTER=$(sed -n '/^---$/,/^---$/{ /^---$/d; p; }' "$STATE_FILE")
ENABLED=$(echo "$FRONTMATTER" | grep '^enabled:' | sed 's/enabled: *//')
if [[ "$ENABLED" != "true" ]]; then exit 0; fi
# Hook logic only runs when enabled
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.
- 7d ago First seen · 237 lines · 101 tokens per session scan B b5a8ca919c99
configure-plugins is a skill published in the GitHub repository Vibe-Marketer/plugins-and-skills (2 stars, last pushed 6mo ago), licensed MIT. It adds 101 tokens to every session and 1,710 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
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…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
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…