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 tdimino/claude-code-minoan --skill skill-togglegit clone --depth 1 https://github.com/tdimino/claude-code-minoanWrote 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/tdimino/claude-code-minoan/skill-toggle)<a href="https://agentmods.dev/skills/tdimino/claude-code-minoan/skill-toggle"><img src="https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/skill-toggle/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/tdimino/claude-code-minoan/skill-toggle"><img src="https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/skill-toggle.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 5 findings, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Agent Snooping · line 45 Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
- medium Agent Snooping · line 47 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 52 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Agent Snooping · line 67 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium Rogue Agent · line 67 Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00045 | $0.00966 |
| Opus 5 | $0.00023 | $0.00483 |
| Sonnet 5 | $0.00009 | $0.00193 |
| Haiku 4.5 | $0.00005 | $0.00097 |
Grade B, and why
skill-toggle 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 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
**Plugin skills**: The `enabledPlugins` object in `~/.claude/settings.json` is toggled. Accepts both plugin names (`compound-engineering`) and namespaced skill names (`compound-engineering:deepen-plan`)—the skill suffix How it starts
The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill Toggle
Manage personal skills and plugin skills from one CLI.
Usage
python3 ~/.claude/skills/skill-toggle/scripts/skill_toggle.py <command> [args]
Commands
| Command | Action |
|---|---|
list |
Show all skills with status (enabled/disabled), source, description |
list --enabled |
Only enabled skills |
list --disabled |
Only disabled skills |
list --plugins |
Only plugin skills |
disable <name> [name...] |
Disable one or more skills (personal: moves to disabled/, plugin: flips settings.json) |
enable <name> [name...] |
Enable one or more skills (reverse of disable) |
status <name> |
Show details for a specific skill |
search <query> |
Fuzzy match across all skill names and descriptions |
clean |
Move orphan directories (no SKILL.md), zip files, and stale .sh scripts to disabled/orphans/ |
collection list |
Show all collections with skill/plugin counts |
collection create <name> <skills...> |
Define a new collection from explicit skill list |
collection save <name> |
Snapshot all currently-enabled skills as a collection |
collection show <name> |
List skills in a collection with current enabled/disabled status |
collection on <name> |
Enable all skills in the collection |
collection off <name> |
Disable all skills in the collection |
collection delete <name> |
Remove a collection definition |
collection add <name> <skills...> |
Add skills to existing collection |
collection remove <name> <skills...> |
Remove skills from existing collection |
How It Works
Personal skills: Moved between ~/.claude/skills/<name>/ (enabled) and ~/.claude/skills/disabled/<name>/ (disabled). The disabled/INDEX.md is auto-regenerated after every operation.
Plugin skills: The enabledPlugins object in ~/.claude/settings.json is toggled. Accepts both plugin names (compound-engineering) and namespaced skill names (compound-engineering:deepen-plan)—the skill suffix is stripped and the entire plugin is toggled either way.
What ships with it
2 files 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.
- 8d ago First seen · 82 lines · 45 tokens per session scan B 332f63cad60b
skill-toggle is a skill published in the GitHub repository tdimino/claude-code-minoan (41 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 966 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
manager
A session-to-GitHub tracker that creates, updates, and reads issues across repositories, including their labels, parent epics, and project-board placement.
weekly-retro
A structured weekly retrospective for a one-person business run with AI agents. It gathers evidence from code, project tools, and canonical business files, then records findings and outcomes.
art-director
Orchestrate iterative visual style searches with branch prompts, decision graphs, feedback loops, and final direction selection.
corp-doctor
A guided maintenance and setup tool for a Personal Corp system, meaning a business workflow built from AI agents, department repositories, and shared rules. It checks what exists before making changes.
html-draft
Use when user wants a standalone HTML diagram in flat engineering blueprint style — architecture diagrams, system flows, technical spec sheets, component maps. Generates one HTML file using Tailwind v4 (browser CDN) for layout and D3 v7 (CDN) for SVG diagrams. User-invoked only — do NOT auto-trigger. Triggers on…
idea
Use when capturing ONE new idea the user voices and wants recorded — "save this idea", "I have an idea", "log this idea", "/idea", "idea: ...". Creates a provenance-tracked folder (one folder per idea) in your ideas repo, dedups against an index, optionally mirrors to a GitHub Project view filtered by label:idea. NOT…