From claude-commands
Triggers immediate execution workflow for Claude Commands Directory, reviewing explicit Python-based command guidelines, architecture patterns, and current commands.
npx claudepluginhub jleechanorg/claude-commandscommands/## โก EXECUTION INSTRUCTIONS FOR CLAUDE **When this command is invoked, YOU (Claude) must execute these steps immediately:** **This is NOT documentation - these are COMMANDS to execute right now.** **Use TodoWrite to track progress through multi-phase workflows.** ## ๐จ EXECUTION WORKFLOW ### Phase 1: Execute Documented Workflow **Action Steps:** 1. Review the reference documentation below and execute the detailed steps sequentially. ## ๐ REFERENCE DOCUMENTATION # Claude Commands Directory ## ๐ฏ Philosophy: Explicit > Implicit This directory contains Claude Code slash commands that f...
/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.
When this command is invoked, YOU (Claude) must execute these steps immediately: This is NOT documentation - these are COMMANDS to execute right now. Use TodoWrite to track progress through multi-phase workflows.
Action Steps:
This directory contains Claude Code slash commands that follow the explicit execution principle:
.py) for command logic and data processing.md) with explicit command sequencesExample workflow in copilot.md:
# Explicit execution - user sees every command
python3 .claude/commands/copilot.py 780
./run_ci_replica.sh
gh pr view 780 --json statusCheckRollup
python3 .claude/commands/copilot_resolver.py [files]
.sh wrappers that hide the actual commands being executedThis was tried and failed because it:
command.py with clear argument parsing/tmp/ for LLM analysiscommand.md with step-by-step explicit executionpython3 copilot.py [PR] [flags]--auto-fix, --merge-conflicts, --threaded-replypython3 copilot_resolver.py file1.py file2.py/tmp/<repo>/<branch>/<work>/ evidence packages with methodology, notes, and copied artifacts.python .claude/commands/savetmp.py <work_name> [--methodology ... --artifact ...]README.md, section markdown files, metadata.json, and an artifacts/ directory for preserved logs/screenshots.What Happened: Created copilot.sh as a wrapper script for CI integration
Why It Failed: Contradicted explicit execution philosophy, hid commands
Lesson Learned: Documentation-driven > Script-driven for transparency
Never Again: No shell script wrappers for Claude commands
Correct Approach: Enhance copilot.py with CI features and document explicit usage in copilot.md
โ DO NOT create copilot_pre_hook.py or copilot_post_hook.py
โ DO NOT add copilot hook configuration to .claude/settings.toml
The copilot system follows a clean architecture where only /commentfetch uses Python for data collection, and all other commands work directly through .md files:
/commentfetch - Fetch all PR comments โ
/fixpr - Analyze CI failures and conflicts โ
/commentreply - Post comment responses โ
gh api/pushl - Push changes to remote โ
/copilot - Intelligent orchestrator that chains the above commandsMinimal Python, Maximum Claude Intelligence
The clean approach:
Clean data flow:
PHASE 1: DATA COLLECTION (Only /commentfetch uses Python)
commentfetch.py โ fresh comment data
fixpr.py โ fixes.json, comparison.json, conflicts.json
โ
PHASE 2: INTELLIGENT ANALYSIS (Claude + .md)
Claude reads data + applies .md intelligence
โ
PHASE 3: EXECUTION
Claude executes fixes directly
commentreply.py posts pre-generated replies
pushl handles git operations
Export Statistics:
Changes:
Remember: If users can't see exactly what's running, it's probably the wrong approach.