Creates a new slash command (skill) that users can invoke with /name. Use when asked to add a command, automate a repeatable workflow step, or expose a task as a /name shortcut.
How this skill is triggered — by the user, by Claude, or both
Slash command
/project-init-workflow:add_command <command-name> <what it does>When to use
Use when the user says "add a /command", "make a shortcut for X", or "I want to run this with a slash command".
<command-name> <what it does>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Claude Code specific**: this skill manages Claude Code configuration
Claude Code specific: this skill manages Claude Code configuration (settings.json wiring). Other agents do not consume what it produces.
Slash commands in this project live in .claude/skills/<name>/SKILL.md. Each skill is a markdown file with YAML frontmatter.
Create .claude/skills/<name>/SKILL.md where <name> is the command name (lowercase, hyphen-separated).
---
name: <name>
description: <What it does and when to use it. Third person. Include trigger keywords.>
when_to_use: <Extra trigger context — action phrases the user might say.>
argument-hint: "<expected arguments>"
allowed-tools: Bash Read Write # tools pre-approved while this skill is active
model: sonnet # optional model override
effort: medium # low | medium | high | xhigh | max
disable-model-invocation: true # true = user-only; Claude won't auto-invoke
user-invocable: false # false = Claude-only background knowledge
context: fork # fork = runs in isolated subagent
---
Not all fields are required — only include what changes the default behaviour.
Run this command to <what it does>.
## Steps
1. <step one — prefer shell commands over prose>
2. <step two>
## Rules
- <constraint if any>
$ARGUMENTS expands to the full argument string. Use $1, $2 for positional args.
disable-model-invocation: true so only the user can invoke themuser-invocable: false so Claude loads them automaticallynpx claudepluginhub vytcepas/project-init --plugin project-init-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.