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.
npx claudepluginhub viktorbezdek/skillstack --plugin python-development# 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...
/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 overview of OpenProse VM slash commands for booting VM, running prose programs, linting files, preflight checks, inspecting runs, and status.
/READMEProvides security and compliance skill pack with frameworks, checklists, references, and Python scripts for architecture, threat modeling, risk assessment, operations, and DevSecOps.
/READMETransforms rough, vague prompts into detailed, specific instructions for Claude Code, including steps, security, testing, and commit guidance. Copy the output for better results.
/READMEDisplays Claude Code slash commands directory organized by categories including Python, Web, DevOps, context engineering, quality assurance, integrations, and utilities.
/READMEDisplays catalog of custom slash commands for Universal Development Standards management and development workflows, with bilingual descriptions and links to individual command docs.
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