Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
oakoss avatar

Meta Command Creator

  • 62 installs
  • 14 repo stars
  • Updated March 2, 2026
  • oakoss/agent-skills

Helps with ai & agent building tasks during AI-assisted development.

About

meta-command-creator is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • meta-command-creator
  • AI & Agent Building
  • AI-coding skill

Meta Command Creator by the numbers

  • 62 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #6,310 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oakoss/agent-skills --skill meta-command-creator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs62
repo stars14
Last updatedMarch 2, 2026
Repositoryoakoss/agent-skills

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Custom Slash Command Creator

Overview

Claude Code slash commands are markdown files with optional YAML frontmatter that create reusable /command workflows. Commands and skills are unified: .claude/commands/ files and .claude/skills/ directories both create slash commands. Skills are the recommended approach since they support additional features like supporting files, but single-file commands still work.

When to use: Repeatable prompts, team workflow standardization, guardrailed operations (deploy, commit), multi-phase tasks, dynamic context injection with bash output.

When NOT to use: Complex capabilities needing multiple files and scripts (use a full skill directory instead), one-off prompts, built-in commands that already exist (/compact, /help, /init).

Quick Reference

FeatureSyntax / LocationKey Points
Project command.claude/commands/name.mdShows "(project)" in /help
Project skill.claude/skills/name/SKILL.mdRecommended over commands, supports extra files
Personal command~/.claude/commands/name.mdAvailable across all projects
Personal skill~/.claude/skills/name/SKILL.mdAvailable across all projects
Plugin command<plugin>/skills/name/SKILL.mdNamespaced as plugin-name:skill-name
Subdirectory commands.claude/commands/git/commit.mdShows "(project:git)" in /help
All arguments$ARGUMENTSEntire argument string
Positional arguments$0, $1, $2 or $ARGUMENTS[0]Zero-based index
Bash injection` !git status `Runs before prompt is sent, output replaces placeholder
File reference@src/file.tsInlines file contents into prompt
Extended thinkingInclude "ultrathink" in contentTriggers deeper reasoning mode
Session ID${CLAUDE_SESSION_ID}Current session identifier for logging
Frontmatter descriptiondescription: What it doesRequired for /help listing and Skill tool
Tool restrictionsallowed-tools: Read, Grep, GlobLimits tools without per-use approval
Manual-only invocationdisable-model-invocation: truePrevents Claude from auto-triggering
Hide from menuuser-invocable: falseBackground knowledge only Claude loads
Argument hintargument-hint: [issue-number]Shown in autocomplete
Model overridemodel: claude-sonnet-4-20250514Specific model for this command
Subagent executioncontext: forkRuns in isolated context
Subagent typeagent: ExploreBuilt-in or custom agent when context: fork

Priority Order

When commands share the same name across levels, higher-priority locations win:

1. Enterprise (managed settings) 2. Personal (~/.claude/) 3. Project (.claude/)

Plugin commands use namespacing (plugin:name) so they never conflict. If a skill and a command share the same name, the skill takes precedence.

Common Mistakes

MistakeImpactCorrect Pattern
Adding name field in command filesIgnored for .md commandsName is inferred from filename
Missing description frontmatterInvisible in /help and Skill toolAlways include description
Using category or tags fieldsSilently ignoredUse subdirectories for organization
$ARGUMENTS without handling empty caseUnexpected behaviorCheck if empty and provide default
` !bash without allowed-tools`Commands fail to executeAdd allowed-tools: Bash(...) to frontmatter
Expecting project to override personalPersonal wins over projectPersonal commands take priority; rename to avoid conflicts
Using context: fork without a taskSubagent has no actionable workOnly fork skills with explicit step-by-step instructions
Overriding built-in command namesBuilt-ins cannot be overriddenUse different names (/my-help not /help)

Delegation

  • Command pattern discovery: Use Explore agent to find existing commands in .claude/commands/ or .claude/skills/
  • Complex workflow skills: For multi-file capabilities, create a full skill directory with SKILL.md and supporting files

References

  • Command anatomy: markdown structure, YAML frontmatter fields, file locations, and priority order
  • Arguments and references: $ARGUMENTS, positional args, bash injection, and file references
  • Templates: ready-to-use command templates for common patterns

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.