skills-toolkit

skills-toolkit is a skill for Claude Code from YoungLeadersDotTech/young-leaders-tech-marketplace. It costs 46 tokens per session (1,612 once invoked), scanned A, original, MIT.

A toolkit for creating and checking Claude Code skills and agents. It uses a deterministic script, meaning the checks follow fixed rules rather than relying on a self-assessed review.

In plain words
What is it for?
Writing new SKILL.md files or agent files, running the repository’s validation script, and fixing the issues it reports.
Why use it?
It replaces subjective quality reports with repeatable validation results. This helps catch problems before a skill or agent is added to the marketplace.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the skills-toolkit plugin — 5 skills, 4 agents shipped together

Good fit Writing new SKILL.md files or agent files, running the repository’s validation script, and fixing the issues it reports.

Compare 6 skills from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add YoungLeadersDotTech/young-leaders-tech-marketplace
Claude Code
/plugin install skills-toolkit

Made for: Claude Code.

Or install skills-toolkit, the plugin that ships this one along with the rest of its 5 skills, 4 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 skills-toolkit

README.md
[![agentmods](https://agentmods.dev/badge/skills/youngleadersdottech/young-leaders-tech-marketplace/skills-toolkit/github.svg)](https://agentmods.dev/skills/youngleadersdottech/young-leaders-tech-marketplace/skills-toolkit)
Your own site
<a href="https://agentmods.dev/skills/youngleadersdottech/young-leaders-tech-marketplace/skills-toolkit"><img src="https://agentmods.dev/badge/skills/youngleadersdottech/young-leaders-tech-marketplace/skills-toolkit/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.

agentmods 80×15 button for skills-toolkit

Your own site · 80×15
<a href="https://agentmods.dev/skills/youngleadersdottech/young-leaders-tech-marketplace/skills-toolkit"><img src="https://agentmods.dev/badge/skills/youngleadersdottech/young-leaders-tech-marketplace/skills-toolkit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,612 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00046 $0.01612
Opus 5 $0.00023 $0.00806
Sonnet 5 $0.00009 $0.00322
Haiku 4.5 $0.00005 $0.00161

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

Security

Grade A, and why

skills-toolkit 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/validate_skills.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

plugins/skills-toolkit/skills/skills-toolkit/SKILL.md · 140 lines

How it starts

The opening of the file, as written. The whole thing — 140 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skills Toolkit

Author and validate SKILL.md files and agent .md files for this marketplace. Replaces the old skill-creator-agent, skill-validator-agent, agent-author, and agent-validator prose-based agents (retired 2026-07-12) and their 5 command wrappers.

When to use

  • "create a skill", "new SKILL.md", "add an agent"
  • "validate this skill", "check this agent"
  • Before opening a PR that adds or changes a skill/agent in this marketplace

Design principle

The old agents asked the model to self-score a description 0-100 against a rubric, simulate PII regex mentally, and print a "6-Phase Validation" report that had drifted from its own real step count. None of that is verifiable. This skill instead:

  1. Runs scripts/validate_skills.py - a real script, not a prompt
  2. Relays its findings verbatim
  3. Never invents a PASS/FAIL verdict beyond what the script's exit code says

Task* protocol

TaskCreate "Gather requirements"          -> mark in_progress immediately
TaskCreate "Draft SKILL.md content"       -> blocked_by Gather requirements
TaskCreate "Run validate_skills.py"       -> blocked_by Draft SKILL.md content
TaskCreate "Fix findings, re-run if FAIL" -> blocked_by Run validate_skills.py
TaskCreate "Write file, confirm with user" -> blocked_by Fix findings, re-run if FAIL

Creating a new skill

  1. Gather the skill's shape via AskUserQuestion rather than open prose - at minimum, name (kebab-case), one-line purpose, and the tool set. Example block (adapt options to context):
    {
      "questions": [
        {
          "question": "What tools does this skill need?",
          "header": "Tool set",
          "multiSelect": true,
          "options": [
            {"label": "Read/Write/Edit", "description": "Reads and writes files directly"},
            {"label": "Bash", "description": "Runs shell commands or scripts"},
            {"label": "AskUserQuestion", "description": "Needs to ask the user structured questions mid-run"},
            {"label": "Task* set", "description": "Tracks multi-step work with TaskCreate/TaskUpdate/TaskGet/TaskList"}
          ]
        }
      ]
    }
    
    For open-ended fields (skill name, one-line purpose, WHEN/WHEN NOT to trigger) that don't reduce to a short option list, ask directly in prose - AskUserQuestion free-text entry covers this. See references/askuserquestion-protocol.md for the full shape and when prose-only is fine.
  2. Draft frontmatter:
    ---
    name: <kebab-case-name>
    description: <WHEN it triggers>. <WHEN NOT>. Keep under 250 chars total.
    allowed-tools:
      - Read
      - ...
    version: 1.0.0
    ---
    
  3. Draft the body: a ## When to use section, a workflow, and a ## Task* protocol block if the skill does multi-step work with TaskCreate/TaskUpdate in its allowed-tools.
  4. Write the file to plugins/<plugin>/skills/<name>/SKILL.md.
  5. Run validation (below) before telling the user it's done.

Read the full file on GitHub · 140 lines

Files

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.

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. 12d ago First seen · 140 lines · 46 tokens per session scan A 3e85373257b3

Subscribe to this mod's changes

skills-toolkit is a skill published in the GitHub repository YoungLeadersDotTech/young-leaders-tech-marketplace (10 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 1,612 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

sweet-index

Use when (re)indexing a Sweet Search project. Runs the full-profile indexer with GPU model prewarming (CoreML cascade on M3+, candle Metal on M1/M2, ORT CPU elsewhere), kills ORT CPU models during indexing to avoid memory contention, and rewarms them for query readiness on completion. Incremental runs under 20 files…

mrsladoje/sweet-search · 83 tokens

crypto-skill-creator

Step-by-step guide for creating enriched CryptoSkills agent skills. Use when building new protocol skills, contributing to the directory, or understanding the enriched skill pattern. Covers SKILL.md structure, YAML frontmatter, examples, docs, resources, templates, marketplace registration, and validation. Triggers…

aomi-labs/skills · 85 tokens

fix-ci-train

Batch-fix the CI on every open pull request whose required checks are red — CI only, no review, no merge. From a GitHub PRs URL (or the current repo), enumerate every open PR with failing required checks, fetch each PR's failing-check logs, consolidate a per-PR CI-fix checklist, dispatch a team of parallel fixer…

big-emotion/agent-atelier · 234 tokens

issue-train

Batch-process every open GitHub issue in a list — triage, detect existing PR linkage, detect silent fixes in already-merged PRs, close issues that are no longer pertinent, then plan + build + open one PR per remaining actionable issue with Closes.

big-emotion/agent-atelier · 57 tokens

project-standard-spec

Spec maintainer for Big Emotion Project Standard. Reads Confluence (Requirements / Decisions / Architecture) as the source of truth, helps you investigate a problem, structures the reflection, and produces drafts — Pending REQ/DEC/ARCH sections on Confluence + matching Jira tickets in the Jira project configured in…

big-emotion/agent-atelier · 105 tokens

blueprint

Extract a complete specs/ directory from any frontend codebase. Covers all 12 axes needed to rebuild or migrate a frontend app. Produces 80% quality on first pass, refined to 95% through guided iteration.

big-emotion/agent-atelier · 0 tokens