skill-creator

skill-creator is a command for Claude Code, Cursor from vanessamarely/ai-playbook-reposito. It costs 0 tokens per session (724 once invoked), scanned A, original, MIT.

A command for scaffolding a new Cursor rule or command from a defined procedure. Cursor rules provide reusable instructions for an AI coding assistant, while commands are procedures invoked explicitly by name.

In plain words
What is it for?
Creating or validating files in .cursor/rules/ or .cursor/commands/ for automated coding procedures.
Why use it?
It checks naming, uniqueness, scope, and whether the requested automation should be passive or explicitly invoked. It is intended for agent instructions rather than human-facing documentation.

Command for Claude CodeCursor

Written for Cursor and Claude Code: installed under .cursor/, but also a Claude Code command (commands/*.md). Also seen: mentions Cursor.

Good fit Creating or validating files in .cursor/rules/ or .cursor/commands/ for automated coding procedures.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/vanessamarely/ai-playbook-reposito/skill-creator
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.

Clone the repo
git clone --depth 1 https://github.com/vanessamarely/ai-playbook-reposito

Made for: Claude Code, Cursor.

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 skill-creator

README.md
[![agentmods](https://agentmods.dev/badge/commands/vanessamarely/ai-playbook-reposito/skill-creator/github.svg)](https://agentmods.dev/commands/vanessamarely/ai-playbook-reposito/skill-creator)
Your own site
<a href="https://agentmods.dev/commands/vanessamarely/ai-playbook-reposito/skill-creator"><img src="https://agentmods.dev/badge/commands/vanessamarely/ai-playbook-reposito/skill-creator/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 skill-creator

Your own site · 80×15
<a href="https://agentmods.dev/commands/vanessamarely/ai-playbook-reposito/skill-creator"><img src="https://agentmods.dev/badge/commands/vanessamarely/ai-playbook-reposito/skill-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 724 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.00000 $0.00724
Opus 5 $0.00000 $0.00362
Sonnet 5 $0.00000 $0.00145
Haiku 4.5 $0.00000 $0.00072

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

Security

Grade A, and why

skill-creator 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 10d 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.

ai-playbook/.cursor/commands/skill-creator.md · 38 lines

How it starts

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

Skill Creator

Scaffold a new Cursor rule or command that follows this playbook's conventions — proper structure, and agent-oriented procedural instructions. Use when the user wants to add a new automated procedure, convert prose documentation into a rule/command, or validate an existing one. Not for human-facing README files, changelogs, or general project documentation.

Inputs

  • Name (lowercase, numbers, hyphens only).
  • Purpose and scope.
  • Target procedures and decision points.
  • Whether it should be a rule (passive, auto-loaded context) or a command (explicit /name invocation).

Outputs

  • A new .cursor/rules/<name>.mdc or .cursor/commands/<name>.md file.

Procedure

  1. Validate the name — lowercase letters, numbers, and hyphens only (^[a-z0-9-]+$); must match the filename; must be unique within .cursor/rules/ and .cursor/commands/. Reject and give an example if invalid.
  2. Decide rule vs. command:
    • Rule (.cursor/rules/<name>.mdc) — passive context that should apply automatically. Choose alwaysApply: true for policies that always matter, globs: "<pattern>" for file-type-triggered guidance, or a strong description with neither for "Agent Requested" (loaded when relevant to the task at hand).
    • Command (.cursor/commands/<name>.md) — an explicit, one-off invokable action. No frontmatter needed.
  3. Write the frontmatter (rules only): description (action-oriented, third person, under ~200 characters, no first/second-person pronouns), plus globs or alwaysApply as decided in step 2.
  4. Write the purpose — one paragraph: what it accomplishes, when it should apply/be invoked, and explicit scope boundaries (what it does NOT do).
  5. Write inputs — parameter name, type, description, default if applicable.
  6. Write outputs — files created/modified, commands to run, data returned.
  7. Write the procedure — numbered, deterministic steps in third-person imperative ("Validate", "Generate", "Verify"), with explicit if/else branches where behavior differs.
  8. Write error handling — failure mode, how it's detected, the remediation step.
  9. Keep it single-file — Cursor has no native folder of bundled scripts/references/assets like some other tools. Inline the essential guidance directly in the .mdc/.md file; condense verbose examples rather than splitting into a supporting-files tree.
  10. Keep it focused — if the file is growing unwieldy, split into a narrower rule/command rather than adding a references folder that Cursor won't auto-load.
  11. Validate metadata — name format, description length, no first/second-person pronouns ("I", "you", "we").

Read the full file on GitHub · 38 lines

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. 10d ago First seen · 38 lines · 0 tokens per session scan A 41971dbd3558

Subscribe to this mod's changes

skill-creator is a command published in the GitHub repository vanessamarely/ai-playbook-reposito (2 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 724 tokens. 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.