claude-code-commands

Standardize Claude Code slash commands with ARGUMENTS handling and agent invocation.

73|16|Updated Nov 14, 2025
One-click install
npx skills add https://github.com/vasilyu1983/AI-Agents-public --skill claude-code-commands
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: claude-code-commands
Source: https://github.com/vasilyu1983/AI-Agents-public/tree/main/frameworks/claude-code-kit/framework/skills/claude-code-commands
Command: npx skills add https://github.com/vasilyu1983/AI-Agents-public --skill claude-code-commands

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Defines CLI-like slash commands for Claude Code workflows with structured arguments.

Core Features & Use Cases

  • Argument templates: Predefine common command patterns.
  • Validation: Type-safe argument parsing.
  • Templates: Reusable command templates for teams.

Quick Start

Create a slash command for "build-backend" with 3 required arguments.

Frequently Asked Questions about claude-code-commands

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create slash commands with structured arguments in Claude Code?

Slash commands in Claude Code use standardized argument templates with type-safe parsing. Define required and optional arguments, then invoke the command with validated inputs. This lets you build reusable CLI-like workflows without manual parsing.

What's the best way to parse command arguments with type validation?

Use argument templates to predefine command patterns with typed parameters. The Skill handles validation automatically, catching mismatches before execution. Templates ensure consistency across commands and reduce parsing boilerplate.

Can I reference files and bash output inside slash commands?

Yes. Use @ syntax to reference files and ! syntax to include bash output directly in command arguments. This lets you compose commands that pull in context from your filesystem and shell without manual copy-paste.

How do I share slash command templates across a team?

Store command templates in standardized locations with mandatory description frontmatter. Teams can then reuse and extend these templates, ensuring consistent workflow patterns and reducing setup time for repeated tasks.

Can slash commands orchestrate multiple agents?

Yes. The Skill supports multi-agent invocation patterns, letting you build commands that coordinate work across several agents. This enables complex workflows where agents hand off results or work in parallel.

What's required to set up a new slash command?

Define the command with a description frontmatter, specify ARGUMENTS with types and defaults, and choose positional or named argument style. The Skill validates the structure, then you're ready to invoke it with context from files or bash.