feat: Complete sync of all Claude Code CLI upgrades
- Add all 21 commands (clawd, ralph, prometheus*, dexto*) - Add all hooks (intelligent-router, clawd-*, prometheus-wrapper, unified-integration-v2) - Add skills (ralph, prometheus master) - Add MCP servers (registry.json, manager.sh) - Add plugins directory with marketplaces - Add health-check.sh and aliases.sh scripts - Complete repository synchronization with local ~/.claude/ Total changes: 100+ new files added All integrations now fully backed up in repository 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
6
commands/auto-loop.md
Normal file
6
commands/auto-loop.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Autonomous Loop 'Tackle Until Solved' - Self-referential iteration agent for complex multi-step tasks. Persists work between iterations until completion criteria met."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:autonomous-loop skill and follow it exactly as presented to you
|
||||
6
commands/autonomous-plan.md
Normal file
6
commands/autonomous-plan.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Autonomous task decomposition and action planning for complex software development workflows. Breaks complex requests into actionable steps with automatic tool/model selection and quality gates."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:autonomous-planning skill and follow it exactly as presented to you
|
||||
21
commands/call-openrouter.md
Executable file
21
commands/call-openrouter.md
Executable file
@@ -0,0 +1,21 @@
|
||||
# Multi-Model Collaboration Strategy
|
||||
|
||||
## Objective
|
||||
Your goal is to produce a high-quality, robust solution to the user's request by orchestrating collaboration between specialist AI models.
|
||||
|
||||
## Core Strategy
|
||||
Follow this flexible, three-stage approach:
|
||||
|
||||
1. **Propose:** Use a strong, general-purpose model to analyze the user's request and generate a comprehensive initial plan or solution.
|
||||
2. **Critique & Refine:** Use a different, highly capable model to act as a "red teamer." This model's task is to critique the initial plan, identify potential edge cases, find security vulnerabilities, check for alignment with the user's true intent, and suggest alternative approaches.
|
||||
3. **Synthesize & Implement:** Based on the critique, synthesize the feedback into a final, superior plan. Once the plan is solidified, implement the necessary code changes.
|
||||
|
||||
## Guiding Principles
|
||||
|
||||
- **Context is King:** Your most critical task is to provide maximum relevant file context to all models. The quality of their output depends entirely on this. Before any model call, ask: "Have I included every file that could possibly be relevant?" When in doubt, include more files.
|
||||
- **Strategic Model Selection:** Choose models based on their known strengths. Use models with powerful reasoning for planning and critique, and models with excellent coding skills for implementation.
|
||||
- **User-Centricity:** The final solution must be maintainable, secure, and perfectly aligned with the user's intended outcome, not just their literal request.
|
||||
- **Enforce Quality:** If any model provides a low-quality, vague, or incomplete response, you **must** re-prompt it. State specifically how its previous response failed and demand a more rigorous and complete output. Do not accept mediocrity.
|
||||
- **Consensus Building:** Facilitate a dialogue between models if their outputs conflict. The goal is to arrive at a consensus that represents the best possible solution, potentially using a third model as a tie-breaker if an impasse is reached.
|
||||
|
||||
This strategic framework empowers you to dynamically manage the workflow, ensuring a higher quality result than any single model could achieve alone.
|
||||
1
commands/cancel-ralph.md
Symbolic link
1
commands/cancel-ralph.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/commands/cancel-ralph.md
|
||||
62
commands/clawd.md
Normal file
62
commands/clawd.md
Normal file
@@ -0,0 +1,62 @@
|
||||
---
|
||||
description: Delegate autonomous tasks to Clawd agent via hook wrapper with persistent session context
|
||||
---
|
||||
|
||||
You are invoking the Clawd autonomous agent to handle the user's task.
|
||||
|
||||
## Clawd Overview
|
||||
|
||||
Clawd is a personal AI assistant with:
|
||||
- Multi-agent routing and workspaces
|
||||
- Persistent session context
|
||||
- Tool access (bash, file operations, browser automation)
|
||||
- Hook-based integration for reliable execution
|
||||
|
||||
## How to Use Clawd from Claude Code
|
||||
|
||||
When the user runs `/clawd "<task>"`:
|
||||
|
||||
1. **Parse the task** from the user's message
|
||||
2. **Parse any options**:
|
||||
- `--agent <id>` or `-a`: Specific agent (default: main)
|
||||
- `--thinking <level>`: off|minimal|low|medium|high
|
||||
|
||||
3. **Execute the clawd-wrapper hook** using the bash tool:
|
||||
```bash
|
||||
~/.claude/hooks/clawd-wrapper.sh --task "<task>" --agent <id> --thinking <level>
|
||||
```
|
||||
|
||||
4. **Return the results** to the user
|
||||
|
||||
## Examples
|
||||
|
||||
```bash
|
||||
# Basic task
|
||||
~/.claude/hooks/clawd-wrapper.sh --task "Build a login form"
|
||||
|
||||
# With high thinking
|
||||
~/.claude/hooks/clawd-wrapper.sh --task "Analyze codebase" --thinking high
|
||||
|
||||
# Specific agent
|
||||
~/.claude/hooks/clawd-wrapper.sh --task "Deploy application" --agent ops
|
||||
```
|
||||
|
||||
## Available Agents
|
||||
|
||||
- `main` - Default general-purpose agent
|
||||
- `ops` - Operations and DevOps tasks
|
||||
- Other configured agents
|
||||
|
||||
## User's Task
|
||||
|
||||
Execute the following task using Clawd via the hook wrapper:
|
||||
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
## Instructions
|
||||
|
||||
1. Parse the task and any options from the user's message above
|
||||
2. Construct the appropriate clawd-wrapper command
|
||||
3. Execute it using the Bash tool
|
||||
4. Return the complete output to the user
|
||||
5. If there are errors, help troubleshoot
|
||||
1
commands/clean_gone.md
Symbolic link
1
commands/clean_gone.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/commands/clean_gone.md
|
||||
1
commands/cleanup.md
Symbolic link
1
commands/cleanup.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/design-plugins/design-and-refine/commands/cleanup.md
|
||||
6
commands/code-review-response.md
Normal file
6
commands/code-review-response.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable. Requires technical rigor and verification, not performative agreement or blind implementation."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:receiving-code-review skill and follow it exactly as presented to you
|
||||
1
commands/code-review.md
Symbolic link
1
commands/code-review.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/code-review/commands/code-review.md
|
||||
1
commands/commit-push-pr.md
Symbolic link
1
commands/commit-push-pr.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/commands/commit-push-pr.md
|
||||
1
commands/commit.md
Symbolic link
1
commands/commit.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/commands/commit.md
|
||||
1
commands/configure.md
Symbolic link
1
commands/configure.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/configure.md
|
||||
6
commands/debug.md
Normal file
6
commands/debug.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes. Requires technical rigor and verification."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:systematic-debugging skill and follow it exactly as presented to you
|
||||
8
commands/dexto-code.md
Normal file
8
commands/dexto-code.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Code Agent"
|
||||
---
|
||||
|
||||
Use Dexto Code Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-database.md
Normal file
8
commands/dexto-database.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Database Agent"
|
||||
---
|
||||
|
||||
Use Dexto Database Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-explore.md
Normal file
8
commands/dexto-explore.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Explore Agent"
|
||||
---
|
||||
|
||||
Use Dexto Explore Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-github.md
Normal file
8
commands/dexto-github.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Github Agent"
|
||||
---
|
||||
|
||||
Use Dexto Github Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-image-edit.md
Normal file
8
commands/dexto-image-edit.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Image Edit Agent"
|
||||
---
|
||||
|
||||
Use Dexto Image Edit Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-music.md
Normal file
8
commands/dexto-music.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Music Agent"
|
||||
---
|
||||
|
||||
Use Dexto Music Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-nano-banana.md
Normal file
8
commands/dexto-nano-banana.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Nano Banana Agent"
|
||||
---
|
||||
|
||||
Use Dexto Nano Banana Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-pdf.md
Normal file
8
commands/dexto-pdf.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Pdf Agent"
|
||||
---
|
||||
|
||||
Use Dexto Pdf Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-podcast.md
Normal file
8
commands/dexto-podcast.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Podcast Agent"
|
||||
---
|
||||
|
||||
Use Dexto Podcast Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-research.md
Normal file
8
commands/dexto-research.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Research Agent"
|
||||
---
|
||||
|
||||
Use Dexto Research Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-sora.md
Normal file
8
commands/dexto-sora.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Sora Agent"
|
||||
---
|
||||
|
||||
Use Dexto Sora Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
8
commands/dexto-triage.md
Normal file
8
commands/dexto-triage.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
description: "Dexto Triage Agent"
|
||||
---
|
||||
|
||||
Use Dexto Triage Agent.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
6
commands/discover-tools.md
Normal file
6
commands/discover-tools.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Automatically searches for and installs helpful Claude Code tools/plugins from code.claude.com based on current task context. Use when starting any complex task to ensure optimal tooling is available."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:tool-discovery-agent skill and follow it exactly as presented to you
|
||||
1
commands/explain-error.md
Symbolic link
1
commands/explain-error.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/external_plugins/stripe/commands/explain-error.md
|
||||
1
commands/feature-dev.md
Symbolic link
1
commands/feature-dev.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/commands/feature-dev.md
|
||||
6
commands/finish-branch.md
Normal file
6
commands/finish-branch.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Use when implementation is complete, all tests pass, and you need to decide how to integrate the work. Guides completion of development work by presenting structured options for merge, PR, or cleanup."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:finishing-a-development-branch skill and follow it exactly as presented to you
|
||||
1
commands/help.md
Symbolic link
1
commands/help.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/help.md
|
||||
1
commands/hookify.md
Symbolic link
1
commands/hookify.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/hookify.md
|
||||
1
commands/list.md
Symbolic link
1
commands/list.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/list.md
|
||||
6
commands/multi-brainstorm.md
Normal file
6
commands/multi-brainstorm.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Multi-AI brainstorming using Qwen coder-model. Collaborate with multiple AI agents (content, seo, smm, pm, code, design, web, app) for expert-level ideation. Use before any creative work for diverse perspectives."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:multi-ai-brainstorm skill and follow it exactly as presented to you
|
||||
1
commands/new-sdk-app.md
Symbolic link
1
commands/new-sdk-app.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/agent-sdk-dev/commands/new-sdk-app.md
|
||||
6
commands/pipeline.md
Normal file
6
commands/pipeline.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Build multi-agent pipelines with structured data flow between agents. Use when creating workflows where each agent has a specialized role and passes output to the next agent."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:agent-pipeline-builder skill and follow it exactly as presented to you
|
||||
14
commands/prometheus-bug.md
Normal file
14
commands/prometheus-bug.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
description: "Analyze and reproduce bugs using Prometheus bug analyzer agent with context retrieval and reproduction steps"
|
||||
---
|
||||
|
||||
Invoke the Prometheus Bug Analyzer to investigate and reproduce the reported bug.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
**Instructions:**
|
||||
1. Use ~/.claude/hooks/prometheus-wrapper.sh with --bug mode
|
||||
2. Retrieve relevant code context
|
||||
3. Create reproduction steps
|
||||
4. Generate bug analysis report
|
||||
14
commands/prometheus-classify.md
Normal file
14
commands/prometheus-classify.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
description: "Classify incoming issues as bug, feature, question, or documentation using Prometheus classifier agent"
|
||||
---
|
||||
|
||||
Invoke the Prometheus Issue Classifier to categorize the user's input.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
**Instructions:**
|
||||
1. Use ~/.claude/hooks/prometheus-wrapper.sh with --issue-classify mode
|
||||
2. Analyze the issue type (bug/feature/question/documentation)
|
||||
3. Provide classification with confidence score
|
||||
4. Return routing recommendation
|
||||
14
commands/prometheus-context.md
Normal file
14
commands/prometheus-context.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
description: "Retrieve intelligent code context using Prometheus knowledge graph and semantic search"
|
||||
---
|
||||
|
||||
Invoke the Prometheus Context Provider to retrieve relevant code context.
|
||||
|
||||
**Query:**
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
**Instructions:**
|
||||
1. Use ~/.claude/hooks/prometheus-wrapper.sh with --context mode
|
||||
2. Search knowledge graph for relevant code
|
||||
3. Retrieve semantic context
|
||||
4. Provide structured context with file references
|
||||
14
commands/prometheus-edit.md
Normal file
14
commands/prometheus-edit.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
description: "Generate code edits and patches using Prometheus edit generator with validation"
|
||||
---
|
||||
|
||||
Invoke the Prometheus Edit Generator to create code changes.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
**Instructions:**
|
||||
1. Use ~/.claude/hooks/prometheus-wrapper.sh with --edit mode
|
||||
2. Generate patch with context awareness
|
||||
3. Validate edit safety
|
||||
4. Provide diff and application instructions
|
||||
14
commands/prometheus-feature.md
Normal file
14
commands/prometheus-feature.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
description: "Analyze feature requests and create implementation plans using Prometheus feature analyzer agent"
|
||||
---
|
||||
|
||||
Invoke the Prometheus Feature Analyzer to analyze and plan the feature implementation.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
**Instructions:**
|
||||
1. Use ~/.claude/hooks/prometheus-wrapper.sh with --feature mode
|
||||
2. Analyze requirements and dependencies
|
||||
3. Create implementation plan
|
||||
4. Identify potential risks and alternatives
|
||||
14
commands/prometheus-test.md
Normal file
14
commands/prometheus-test.md
Normal file
@@ -0,0 +1,14 @@
|
||||
---
|
||||
description: "Run tests in containerized environment using Prometheus test runner agent"
|
||||
---
|
||||
|
||||
Invoke the Prometheus Test Runner to execute and validate tests.
|
||||
|
||||
**Task:**
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
**Instructions:**
|
||||
1. Use ~/.claude/hooks/prometheus-wrapper.sh with --test mode
|
||||
2. Set up containerized test environment
|
||||
3. Execute test suite
|
||||
4. Provide detailed results and coverage
|
||||
105
commands/prometheus.md
Normal file
105
commands/prometheus.md
Normal file
@@ -0,0 +1,105 @@
|
||||
---
|
||||
description: Delegate to Prometheus multi-agent code analysis system for issue resolution, feature implementation, and intelligent code context retrieval
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
# Prometheus Multi-Agent Code Analysis System
|
||||
|
||||
Prometheus is a production-ready AI-powered platform that uses multi-agent systems and unified knowledge graphs to perform intelligent operations on codebases.
|
||||
|
||||
## Capabilities
|
||||
|
||||
- **Automated Issue Resolution**: End-to-end bug fixing with reproduction, patch generation, and validation
|
||||
- **Feature Implementation**: Context-aware feature analysis and implementation planning
|
||||
- **Intelligent Context Retrieval**: Graph-based semantic search over codebase structure
|
||||
- **Multi-Agent Orchestration**: Coordinated workflow between specialized agents
|
||||
- **Knowledge Graph Integration**: Neo4j-powered code representation
|
||||
- **Question Answering**: Natural language queries with tool-augmented agents
|
||||
|
||||
## Agent Types
|
||||
|
||||
1. **Issue Classifier**: Categorizes incoming issues (bug/feature/question/doc)
|
||||
2. **Bug Analyzer**: Analyzes and reproduces bugs
|
||||
3. **Feature Analyzer**: Plans feature implementations
|
||||
4. **Context Provider**: Retrieves relevant code context
|
||||
5. **Edit Generator**: Creates code patches
|
||||
6. **Test Runner**: Validates changes in containerized environment
|
||||
|
||||
## Usage
|
||||
|
||||
### Basic Issue Analysis
|
||||
|
||||
```bash
|
||||
/prometheus "Analyze this issue: Login fails after password reset"
|
||||
```
|
||||
|
||||
### Bug Fix Mode
|
||||
|
||||
```bash
|
||||
/prometheus --bug "Fix the authentication bug in src/auth/login.py"
|
||||
```
|
||||
|
||||
### Feature Implementation
|
||||
|
||||
```bash
|
||||
/prometheus --feature "Implement two-factor authentication"
|
||||
```
|
||||
|
||||
### Code Context Query
|
||||
|
||||
```bash
|
||||
/prometheus --query "How does the payment processing work?"
|
||||
```
|
||||
|
||||
### With Repository
|
||||
|
||||
```bash
|
||||
/prometheus --repo /path/to/repo "Analyze the codebase structure"
|
||||
```
|
||||
|
||||
## Integration Points
|
||||
|
||||
- **Knowledge Graph**: Neo4j for code structure and semantic analysis
|
||||
- **Docker**: Containerized testing environment
|
||||
- **Git**: Version control operations
|
||||
- **AST Parsing**: Multi-language code analysis
|
||||
- **LangGraph**: State machine orchestration
|
||||
|
||||
## Output
|
||||
|
||||
Prometheus provides:
|
||||
- Issue classification and analysis
|
||||
- Bug reproduction steps
|
||||
- Generated patches with validation
|
||||
- Context-aware recommendations
|
||||
- Test results and coverage
|
||||
|
||||
## Examples
|
||||
|
||||
```bash
|
||||
# Analyze a GitHub issue
|
||||
/prometheus "Issue #123: Memory leak in data processing pipeline"
|
||||
|
||||
# Implement a feature
|
||||
/prometheus --feature "Add rate limiting to API endpoints"
|
||||
|
||||
# Code understanding
|
||||
/prometheus --query "Explain the authentication flow"
|
||||
|
||||
# Bug fix with context
|
||||
/prometheus --bug --repo ./myapp "Fix null pointer in user service"
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
Prometheus uses:
|
||||
- `~/.claude/prometheus/` - Installation directory
|
||||
- `~/.claude/prometheus/venv/` - Python virtual environment
|
||||
- `~/.claude/prometheus/logs/` - Execution logs
|
||||
- Environment variables for API keys and Neo4j connection
|
||||
|
||||
## User's Task
|
||||
|
||||
Execute the following using Prometheus:
|
||||
|
||||
{{USER_MESSAGE}}
|
||||
1
commands/ralph-loop.md
Symbolic link
1
commands/ralph-loop.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/commands/ralph-loop.md
|
||||
21
commands/ralph.md
Executable file
21
commands/ralph.md
Executable file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
description: "RalphLoop 'Tackle Until Solved' - Enhanced autonomous orchestrator with access to Clawd, Prometheus, Dexto. Routes to best agent automatically or orchestrates multi-agent workflows."
|
||||
---
|
||||
|
||||
Invoke Enhanced Ralph with full agent orchestration capabilities.
|
||||
|
||||
Ralph now has access to ALL integrated agents:
|
||||
- **Clawd** - Autonomous task execution
|
||||
- **Prometheus** - Code analysis, bug fixing, features
|
||||
- **Dexto** - 12 specialized agents (code, github, pdf, images, video, music, etc.)
|
||||
|
||||
Ralph will:
|
||||
1. Analyze task requirements
|
||||
2. Select best agent automatically (confidence threshold: 70%)
|
||||
3. Orchestrate multi-agent workflows for complex tasks
|
||||
4. Execute with continuous improvement loops
|
||||
|
||||
User's task:
|
||||
{{USER_MESSAGE}}
|
||||
|
||||
Execute this task using the best available agent(s).
|
||||
1
commands/review-pr.md
Symbolic link
1
commands/review-pr.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/commands/review-pr.md
|
||||
6
commands/review.md
Normal file
6
commands/review.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Use when completing tasks, implementing major features, or before merging to verify work meets requirements."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:requesting-code-review skill and follow it exactly as presented to you
|
||||
1
commands/set-custom-rules.md
Symbolic link
1
commands/set-custom-rules.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/claude-code-safety-net/commands/set-custom-rules.md
|
||||
1
commands/set-statusline.md
Symbolic link
1
commands/set-statusline.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/claude-code-safety-net/commands/set-statusline.md
|
||||
1
commands/setup.md
Symbolic link
1
commands/setup.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/claude-hud/commands/setup.md
|
||||
1
commands/start.md
Symbolic link
1
commands/start.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/design-plugins/design-and-refine/commands/start.md
|
||||
6
commands/tdd.md
Normal file
6
commands/tdd.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Use when implementing any feature or bugfix, before writing implementation code. Follows test-driven development methodology."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:test-driven-development skill and follow it exactly as presented to you
|
||||
1
commands/test-cards.md
Symbolic link
1
commands/test-cards.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/marketplaces/claude-plugins-official/external_plugins/stripe/commands/test-cards.md
|
||||
6
commands/ui-ux.md
Normal file
6
commands/ui-ux.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:ui-ux-pro-max skill and follow it exactly as presented to you
|
||||
1
commands/uninstall.md
Symbolic link
1
commands/uninstall.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/claude-delegator/commands/uninstall.md
|
||||
1
commands/verify-custom-rules.md
Symbolic link
1
commands/verify-custom-rules.md
Symbolic link
@@ -0,0 +1 @@
|
||||
/home/roman/.claude/skills/plugins/claude-code-safety-net/commands/verify-custom-rules.md
|
||||
6
commands/verify.md
Normal file
6
commands/verify.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Use when about to claim work is complete, fixed, or passing, before committing or creating PRs. Evidence before assertions always."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:verification-before-completion skill and follow it exactly as presented to you
|
||||
6
commands/worktree.md
Normal file
6
commands/worktree.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
description: "Use when starting feature work that needs isolation from current workspace or before executing implementation plans. Creates isolated git worktrees with smart directory selection and safety verification."
|
||||
disable-model-invocation: true
|
||||
---
|
||||
|
||||
Invoke the superpowers:using-git-worktrees skill and follow it exactly as presented to you
|
||||
Reference in New Issue
Block a user