From python-development
This directory contains **reference material for creating and organizing Claude Code slash commands**. These are NOT deployed commands themselves, but rather templates, patterns, and procedural guides for command development.
How this command is triggered — by the user, by Claude, or both
Slash command
/python-development:READMEThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Commands Reference Library This directory contains **reference material for creating and organizing Claude Code slash commands**. These are NOT deployed commands themselves, but rather templates, patterns, and procedural guides for command development. ## Purpose The `commands/` directory serves as a knowledge base for: - **Command Templates**: Standardized structures for creating new slash commands - **Command Patterns**: Configuration defining command categories, workflows, and integration - **Meta-Commands**: Guides for generating other commands using established patterns - **Speci...
This directory contains reference material for creating and organizing Claude Code slash commands. These are NOT deployed commands themselves, but rather templates, patterns, and procedural guides for command development.
The commands/ directory serves as a knowledge base for:
commands/
├── development/ # Development workflow commands
│ ├── config/
│ │ └── command-patterns.yml # Command categories, workflows, risk levels
│ ├── templates/
│ │ └── command-template.md # Base template for new commands
│ ├── use-command-template.md # Meta-command: generate commands from template
│ └── create-feature-task.md # Structured feature development workflow
│
└── testing/ # Testing workflow commands
├── analyze-test-failures.md # Investigate test failures (bug vs test issue)
├── comprehensive-test-review.md
└── test-failure-mindset.md
Defines the organizational structure for commands:
Standard structure for creating new commands:
$ARGUMENTS placeholderProcedural guide for generating new commands:
$ARGUMENTSCritical thinking framework for test failure analysis:
Structured approach to feature development:
When you need to create a new slash command for Claude Code:
Consult the patterns: Review command-patterns.yml to understand:
Use the template: Start with command-template.md
Follow naming conventions: Use verb-noun format
analyze-*, scan-*, validate-*create-*, implement-*, fix-*deploy, migrate, cleanup-*Deploy to proper location: Actual slash commands live in:
~/.claude/commands/.claude/commands/ (in project root)references/commands/ directoryCommands are designed to chain together:
Feature_Development:
steps:
- create-feature-task # Initialize structured task
- study-current-repo # Understand codebase
- implement-feature # Write code
- create-test-plan # Design tests
- comprehensive-test-review # Validate quality
- gh-create-pr # Submit for review
Each command produces context that subsequent commands can use.
This directory is part of the python3-development skill's reference material:
python3-development/
├── SKILL.md # Skill entry point
├── references/
│ ├── commands/ # THIS DIRECTORY (reference material)
│ ├── modern-modules/ # Python library guides
│ └── ...
└── scripts/ # Executable tools
Important Distinctions:
references/commands/): Templates and patterns for creating commands~/.claude/commands/): Actual slash commands that Claude Code executesscripts/): Python tools that may be called by commandsanalyze-dependencies, create-component)Commands in this directory support the orchestration patterns described in:
They complement the agent-based workflows:
User Request
↓
Orchestrator (uses skill + commands)
↓
├─→ @agent-python-cli-architect (implementation)
├─→ @agent-python-pytest-architect (testing)
└─→ @agent-python-code-reviewer (review)
↓
Apply standards: /modernpython, /shebangpython (from commands)
# 1. Create structured task
/development:create-feature-task Add user authentication with OAuth
# 2. Implement with appropriate agent
# (Orchestrator delegates to @agent-python-cli-architect)
# 3. Validate with standards
/modernpython src/auth/oauth.py
/shebangpython scripts/migrate-users.py
# Analyze failures with critical thinking
/testing:analyze-test-failures test_authentication.py::test_oauth_flow
# Generate new command from template
/development:use-command-template validate API endpoints for rate limiting
npx claudepluginhub viktorbezdek/skillstack --plugin python-development/READMEDisplays documentation for all available commands, including format, validation, and discovery scripts. Also supports listing commands by keyword.
/READMEDisplays list of SuperClaude slash commands: agent (AI agents), index-repo (repo indexing), recommend, research (web research), and sc (show all), with install notes.
/READMEDisplays the full catalog of 31 slash commands organized by SDD workflow, data engineering, visualization, and developer productivity categories.
/READMEDisplays documentation for pixel art commands to create sprites with size/palette presets, manage palettes, export PNG/GIF/spritesheets/JSON, setup Aseprite MCP server, and show help.