command-creator

command-creator is a skill for Claude Code, Codex from jdrhyne/agent-skills. It costs 66 tokens per session (1,740 once invoked), scanned A, original, MIT.

A guide for creating Claude Code slash commands: reusable workflows started with a command such as /review.

In plain words
What is it for?
Create project-level or personal commands for code reviews, pull-request workflows, repeated fixes, documentation, or delegating work to other agents.
Why use it?
It helps turn repeated multi-step work into a consistent command instead of rewriting the same instructions each time.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/jdrhyne/agent-skills/command-creator
Any agent
npx skills add jdrhyne/agent-skills --skill command-creator
Clone the repo
git clone --depth 1 https://github.com/jdrhyne/agent-skills

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/jdrhyne/agent-skills/command-creator.svg)](https://agentmods.dev/skills/jdrhyne/agent-skills/command-creator)
Your own site
<a href="https://agentmods.dev/skills/jdrhyne/agent-skills/command-creator"><img src="https://agentmods.dev/badge/skills/jdrhyne/agent-skills/command-creator.svg" alt="Measured on agentmods" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,740 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00066 $0.01740
Opus 5 $0.00033 $0.00870
Sonnet 5 $0.00013 $0.00348
Haiku 4.5 $0.00007 $0.00174

Measured 5d ago against content hash 0eb5c5bcba94, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

command-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 5d 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.

codex/command-creator/SKILL.md · 221 lines

How it starts

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

Command Creator

This skill guides the creation of Claude Code slash commands - reusable workflows that can be invoked with /command-name in Claude Code conversations.

About Slash Commands

Slash commands are markdown files stored in .claude/commands/ (project-level) or ~/.claude/commands/ (global/user-level) that get expanded into prompts when invoked. They're ideal for:

  • Repetitive workflows (code review, PR submission, CI fixing)
  • Multi-step processes that need consistency
  • Agent delegation patterns
  • Project-specific automation

When to Use This Skill

Invoke this skill when users:

  • Ask to "create a command" or "make a slash command"
  • Want to automate a repetitive workflow
  • Need to document a consistent process for reuse
  • Say "I keep doing X, can we make a command for it?"
  • Want to create project-specific or global commands

Bundled Resources

This skill includes reference documentation for detailed guidance:

  • patterns.md in this skill's references folder - Command patterns (workflow automation, iterative fixing, agent delegation, simple execution)
  • examples.md in this skill's references folder - Real command examples with full source (submit-stack, ensure-ci, create-implementation-plan)
  • best-practices.md in this skill's references folder - Quality checklist, common pitfalls, writing guidelines, template structure

Load these references as needed when creating commands to understand patterns, see examples, or ensure quality.

Safety Boundaries

  • Do not create or overwrite commands outside the user-chosen project or global commands directory.
  • Do not include destructive steps, hidden network calls, or irreversible operations unless the user asked for them explicitly.
  • Do not assume a command should be global when the project directory is the safer default.
  • Do not read unrelated files for context when the command can be built from the request and this skill's bundled guides.

Command Structure Overview

Read the full file on GitHub · 221 lines

Files

What ships with it

4 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. 5d ago First seen · 221 lines · 66 tokens per session scan A 0eb5c5bcba94

Subscribe to this mod's changes

command-creator is a skill published in the GitHub repository jdrhyne/agent-skills (241 stars, last pushed 6d ago), licensed MIT. It adds 66 tokens to every session and 1,740 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

pillow

Manipulate images locally using Python and PIL/Pillow. Use when the user asks to resize, crop, rotate, flip, filter, enhance, combine, overlay, watermark, add text to, convert, compress, create, or edit images locally. Also use for thumbnails, borders, color adjustments, transparency, animated GIFs, or extracting…

openbotx/openbotx · 74 tokens

skill-creator

Create or update OpenBotX skills. Use when users want to create a new skill, modify an existing one, or need guidance on skill structure, frontmatter, bundled resources, or best practices. Also use when the user says "turn this into a skill" or wants to capture a workflow as a reusable skill.

openbotx/openbotx · 68 tokens

http-client

Make HTTP requests (GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS) to APIs and web services. Use when the user needs to call a REST API, fetch data from an endpoint, send form data, upload files, download files, or test HTTP services.

openbotx/openbotx · 59 tokens

browser

Automate browser interactions for web scraping, testing, and navigation. Use when the user needs to visit a webpage, interact with UI elements, take screenshots, or extract content from rendered pages.

openbotx/openbotx · 40 tokens

twitter

Post tweets on Twitter/X. Use when the user wants to tweet, post on X, create threads, or share content on Twitter. Requires the "twitter" auth profile configured in httpclient.

openbotx/openbotx · 41 tokens

cron

Schedule reminders, recurring tasks, and one-time events. Use when the user asks to be reminded of something, schedule a periodic check, set an alarm, or automate a task at a specific time or interval.

openbotx/openbotx · 44 tokens