skill-creator

skill-creator is a skill for Claude Code, Codex from medy-gribkov/arcana. It costs 30 tokens per session (4,164 once invoked), scanned A, original, Apache-2.0.

A guide for creating or updating Claude skills, which are instruction packages that give an AI coding assistant specialized workflows and knowledge.

In plain words
What is it for?
Use it to create skill files, add references or scripts, improve existing skills, and extend Claude's development capabilities.
Why use it?
It provides a repeatable structure for turning domain expertise, tools, and scripts into reusable assistant instructions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions subagents; names the AskUserQuestion tool.

Good fit Use it to create skill files, add references or scripts, improve existing skills, and extend Claude's development capabilities.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/medy-gribkov/arcana/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.

Any agent
npx skills add medy-gribkov/arcana --skill skill-creator
Clone the repo
git clone --depth 1 https://github.com/medy-gribkov/arcana

Made for: Claude Code, Codex.

Its marketplace also offers this one on its own, as the plugin skill-creator/plugin install skill-creator after adding the marketplace above.

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/skills/medy-gribkov/arcana/skill-creator/github.svg)](https://agentmods.dev/skills/medy-gribkov/arcana/skill-creator)
Your own site
<a href="https://agentmods.dev/skills/medy-gribkov/arcana/skill-creator"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/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/skills/medy-gribkov/arcana/skill-creator"><img src="https://agentmods.dev/badge/skills/medy-gribkov/arcana/skill-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,164 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.00030 $0.04164
Opus 5 $0.00015 $0.02082
Sonnet 5 $0.00006 $0.00833
Haiku 4.5 $0.00003 $0.00416

Measured 9d ago against content hash eeaae6367819, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 9d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/encoding_utils.py, scripts/init_skill.py, scripts/package_skill.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.

skills/skill-creator/SKILL.md · 322 lines

How it starts

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

Skill Creator

This skill provides guidance for creating effective skills.

About Skills

Skills are modular, self-contained packages that extend Claude's capabilities by providing specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific domains or tasks—they transform Claude from a general-purpose agent into a specialized agent equipped with procedural knowledge that no model can fully possess.

IMPORTANT:

  • Skills are not documentation, they are practical instructions for Claude Code to use the tools, packages, plugins or APIs to achieve the tasks.
  • Each skill teaches Claude how to perform a specific development task, not what a tool does.
  • Claude Code can activate multiple skills automatically to achieve the user's request.

What Skills Provide

  1. Specialized workflows - Multi-step procedures for specific domains
  2. Tool integrations - Instructions for working with specific file formats or APIs
  3. Domain expertise - Company-specific knowledge, schemas, business logic
  4. Bundled resources - Scripts, references, and assets for complex and repetitive tasks

Anatomy of a Skill

Every skill consists of a required SKILL.md file and optional bundled resources:

.claude/skills/
└── skill-name/
    ├── SKILL.md (required)
    │   ├── YAML frontmatter metadata (required)
    │   │   ├── name: (required)
    │   │   ├── description: (required)
    │   │   ├── license: (optional)
    │   │   └── version: (optional)
    │   └── Markdown instructions (required)
    └── Bundled Resources (optional)
        ├── scripts/          - Executable code (Python/Bash/etc.)
        ├── references/       - Documentation intended to be loaded into context as needed
        └── assets/           - Files used in output (templates, icons, fonts, etc.)
Requirements (IMPORTANT)
  • Skill should be combined into specific topics, for example: cloudflare, cloudflare-r2, cloudflare-workers, docker, gcloud should be combined into devops
  • SKILL.md should be less than 150 lines and include the references of related markdown files and scripts.
  • Each script or referenced markdown file should be also less than 150 lines, remember that you can always split them into multiple files (progressive disclosure principle).
  • Descriptions in metadata of SKILL.md files should be both concise (less than 200 characters) and still contains enough usecases of the references and scripts, this will help skills can be activated automatically during the implementation process of Claude Code.
  • Referenced markdowns:
    • Sacrifice grammar for the sake of concision when writing these files.
    • Can reference other markdown files or scripts as well.
  • Referenced scripts:
    • Prefer nodejs or python scripts instead of bash script, because bash scripts are not well-supported on Windows.
    • If you're going to write python scripts, make sure you have requirements.txt
    • Make sure scripts respect .env file follow this order: process.env > $HOME/.claude/skills/${SKILL}/.env (global) > $HOME/.claude/skills/.env (global) > $HOME/.claude/.env (global) > ./.claude/skills/${SKILL}/.env (cwd) > ./.claude/skills/.env (cwd) > ./.claude/.env (cwd)
    • Create .env.example files to show the required environment variables.
    • Always write tests for these scripts.

Read the full file on GitHub · 322 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. 9d ago First seen · 322 lines · 30 tokens per session scan A eeaae6367819

Subscribe to this mod's changes

skill-creator is a skill published in the GitHub repository medy-gribkov/arcana (1 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 30 tokens to every session and 4,164 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-09-03.