moai-cc-commands

Design and optimize Claude Code slash commands with argument parsing and agent orchestration.

1|Updated Jul 28, 2025
One-click install
npx skills add https://github.com/kivo360/quickhooks --skill moai-cc-commands
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: moai-cc-commands
Source: https://github.com/kivo360/quickhooks/tree/main/.claude/skills/moai-cc-commands
Command: npx skills add https://github.com/kivo360/quickhooks --skill moai-cc-commands

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps design and implement Slash Commands for Claude Code, with argument parsing and agent orchestration.

Core Features & Use Cases

  • Command Design: Plan commands with parameter hints and tool permissions.
  • Orchestration: Coordinate multiple sub-agents in a workflow.
  • Usage Patterns: Planning, code review, and deployment commands.

Quick Start

Create a /deploy command template that orchestrates a simple 3-step workflow.

Frequently Asked Questions about moai-cc-commands

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

FAQPage Schema
How do I design slash commands for Claude Code?

Slash commands in Claude Code are user-facing entry points that orchestrate multi-step workflows. Design them by defining parameters, tool permissions, and agent coordination logic, then structure them in .claude/commands with metadata, argument parsing, and validation patterns enforced.

What's the best way to structure command files in Claude Code?

Store commands under .claude/commands with standardized file structure including metadata headers, argument parsing rules, tool permissions declarations, and safety gates. This enforces consistency across commands and enables proper validation of orchestration logic.

How do I orchestrate multiple agents within a single Claude Code command?

Agent orchestration in slash commands coordinates sub-agents by defining workflow steps, routing inputs between agents, and managing tool permissions. Structure each orchestration layer with explicit step sequencing and output handoffs.

Can I set up deployment or workflow automation using slash commands?

Yes. Slash commands support workflow entry points for deployment, code review, and automation tasks. Define the command with parameter hints, tool permissions for each step, and orchestration logic to automate multi-stage processes end-to-end.

What safety constraints should I enforce in command design?

Enforce safety gates through tool permission restrictions, argument validation patterns, and standardized command structure. This prevents unintended agent actions and ensures commands execute within defined boundaries and approved tool access.

How do I refactor existing commands for better performance?

Refactor commands by optimizing argument parsing logic, reducing redundant orchestration steps, and streamlining tool permission declarations. Use the standardized .claude/commands structure to identify bottlenecks in workflow coordination.