From compound-engineering
Create a new custom slash command following conventions and best practices
npx claudepluginhub apollostreetcompany/codex-compound --plugin compound-engineeringThis skill uses the workspace's default tool permissions.
Create a new skill in `.claude/skills/` for the requested task.
Creates production-ready custom slash commands via 5-phase workflow with multi-agent validation for security, architecture, necessity, and completeness. Use for new commands, reusable prompts, or workflow automation.
Creates production-ready custom slash commands via 5-phase workflow with multi-agent validation. Use for user requests, reusable prompt automation, or repetitive workflow conversion.
Generates custom Claude Code slash commands via guided questions. Includes 10 presets, YAML validation, kebab-case naming, bash permission rules, and folder organization.
Share bugs, ideas, or general feedback.
Create a new skill in .claude/skills/ for the requested task.
#$ARGUMENTS
File Operations:
Development:
Web & APIs:
Integrations:
EVERY command MUST start with YAML frontmatter:
---
name: command-name
description: Brief description of what this command does (max 100 chars)
argument-hint: "[what arguments the command accepts]"
---
Fields:
name: Lowercase command identifier (used internally)description: Clear, concise summary of command purposeargument-hint: Shows user what arguments are expected (e.g., [file path], [PR number], [optional: format])# [Command Name]
[Brief description of what this command does]
## Steps
1. [First step with specific details]
- Include file paths, patterns, or constraints
- Reference existing code if applicable
2. [Second step]
- Use parallel tool calls when possible
- Check/verify results
3. [Final steps]
- Run tests
- Lint code
- Commit changes (if appropriate)
## Success Criteria
- [ ] Tests pass
- [ ] Code follows style guide
- [ ] Documentation updated (if needed)
<task>, <requirements>, <constraints>Implement #$ARGUMENTS following these steps:
1. Research existing patterns
- Search for similar code using Grep
- Read relevant files to understand approach
2. Plan the implementation
- Think through edge cases and requirements
- Consider test cases needed
3. Implement
- Follow existing code patterns (reference specific files)
- Write tests first if doing TDD
- Ensure code follows AGENTS.md conventions
4. Verify
- Run tests: `bin/rails test`
- Run linter: `bundle exec standardrb`
- Check changes with git diff
5. Commit (optional)
- Stage changes
- Write clear commit message
.claude/skills/[name]/SKILL.md---
name: command-name
description: What this command does
argument-hint: "[expected arguments]"
---
# Command Title
Brief introduction of what the command does and when to use it.
## Workflow
### Step 1: [First Major Step]
Details about what to do.
### Step 2: [Second Major Step]
Details about what to do.
## Success Criteria
- [ ] Expected outcome 1
- [ ] Expected outcome 2