configure-plugins

configure-plugins is a skill for Claude Code from Vibe-Marketer/plugins-and-skills. It costs 101 tokens per session (1,710 once invoked), scanned B, original, MIT.

A setup guide for configurable Claude Code plugins using project-local settings files.

In plain words
What is it for?
Use it to define settings, defaults, hooks, commands, or agents that read configuration from a gitignored .local.md file.
Why use it?
It lets each project control plugin behavior without committing personal settings to the repository.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the create-plugins plugin — 12 skills, 6 commands, 9 agents shipped together

Good fit Use it to define settings, defaults, hooks, commands, or agents that read configuration from a gitignored .local.md file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vibe-marketer/plugins-and-skills/configure-plugins
Install

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.

Any agent
npx skills add Vibe-Marketer/plugins-and-skills --skill configure-plugins
Clone the repo
git clone --depth 1 https://github.com/Vibe-Marketer/plugins-and-skills

Made for: Claude Code.

Or install create-plugins, the plugin that ships this one along with the rest of its 12 skills, 6 commands, 9 agents.

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 configure-plugins

README.md
[![agentmods](https://agentmods.dev/badge/skills/vibe-marketer/plugins-and-skills/configure-plugins.svg)](https://agentmods.dev/skills/vibe-marketer/plugins-and-skills/configure-plugins)
Your own site
<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>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,710 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00101 $0.01710
Opus 5 $0.00051 $0.00855
Sonnet 5 $0.00020 $0.00342
Haiku 4.5 $0.00010 $0.00171

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

Security

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`)
create-plugins/skills/configure-plugins/SKILL.md · 237 lines

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>

  1. Create .claude/plugin-name.local.md in the project root
  2. Add YAML frontmatter with configuration fields
  3. Optionally add markdown body for prompts or context
  4. Read settings from hooks, commands, or agents
  5. Add .claude/*.local.md to .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.md suffix (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

Read the full file on GitHub · 237 lines

Files

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.

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. 7d ago First seen · 237 lines · 101 tokens per session scan B b5a8ca919c99

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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…

vercel/next.js · 170 tokens

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…

vercel/next.js · 103 tokens

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…

microsoft/vscode · 72 tokens