Reorganize: Move all skills to skills/ folder

- Created skills/ directory
- Moved 272 skills to skills/ subfolder
- Kept agents/ at root level
- Kept installation scripts and docs at root level

Repository structure:
- skills/           - All 272 skills from skills.sh
- agents/           - Agent definitions
- *.sh, *.ps1       - Installation scripts
- README.md, etc.   - Documentation

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
admin
2026-01-23 18:05:17 +00:00
Unverified
parent 2b4e974878
commit b723e2bd7d
4083 changed files with 1056 additions and 1098063 deletions

View File

@@ -0,0 +1,88 @@
# Qwen Consultation Hook for Claude Code
Allows Claude Code to consult with the local Qwen installation (`/usr/local/bin/qwen`) for assistance with tasks.
## Files Created
- `/home/uroma/.claude/hooks/qwen-consult.sh` - Main hook script
- `/home/uroma/.claude/hooks/hooks.json` - Updated with Qwen hook
- `/home/uroma/.claude/hooks.json` - Updated with Qwen hook
## Configuration
The hook behavior is controlled via environment variables:
| Variable | Default | Description |
|----------|---------|-------------|
| `QWEN_CONSULT_MODE` | `off` | When to consult Qwen: `off`, `delegate`, or `always` |
| `QWEN_MODEL` | (default) | Optional: specify Qwen model to use |
| `QWEN_MAX_ITERATIONS` | `30` | Max iterations for Qwen execution |
## Usage Modes
### 1. Off Mode (Default)
```bash
export QWEN_CONSULT_MODE=off
```
Qwen is never consulted. Hook is disabled.
### 2. Delegate Mode
```bash
export QWEN_CONSULT_MODE=delegate
```
Qwen is consulted when you use keywords like:
- "consult qwen"
- "ask qwen"
- "delegate to qwen"
- "get a second opinion"
- "alternative approach"
### 3. Always Mode
```bash
export QWEN_CONSULT_MODE=always
```
Qwen is consulted for every request.
## Examples
### Enable delegate mode in current session
```bash
export QWEN_CONSULT_MODE=delegate
```
### Use with a specific model
```bash
export QWEN_CONSULT_MODE=delegate
export QWEN_MODEL=qwen2.5-coder-32b-instruct
```
### Make permanent (add to ~/.bashrc)
```bash
echo 'export QWEN_CONSULT_MODE=delegate' >> ~/.bashrc
```
## Monitoring Qwen
When Qwen is triggered, it runs in the background. You can monitor it:
```bash
# View Qwen output in real-time
tail -f ~/.claude/qwen-output.log
# Check if Qwen is running
ps aux | grep qwen
# Stop Qwen manually
kill $(cat ~/.claude/qwen.lock)
```
## Hook Event
This hook triggers on `UserPromptSubmit` - every time you submit a prompt to Claude Code.
## State Files
- `~/.claude/qwen-consult.md` - Current consultation state
- `~/.claude/qwen-output.log` - Qwen execution output
- `~/.claude/qwen.lock` - PID file for running Qwen process
- `~/.claude/qwen-consult.log` - Consultation trigger log

View File

@@ -0,0 +1,37 @@
{
"name": "auto-trigger-integration",
"description": "Automatically trigger plugins and skills based on task context",
"version": "1.0.0",
"triggers": {
"web_browsing": {
"keywords": ["browse", "search", "fetch", "scrape", "web", "url", "http"],
"skills": ["dev-browser", "agent-browse"],
"priority": "high"
},
"browser_automation": {
"keywords": ["test", "automate", "playwright", "screenshot", "click"],
"skills": ["playwright-skill"],
"priority": "high"
},
"planning": {
"keywords": ["plan", "design", "architecture", "redesign", "strategy"],
"skills": ["planning-with-files"],
"priority": "high"
},
"delegation": {
"keywords": ["delegate", "codex", "gpt", "external model"],
"plugins": ["claude-delegator"],
"priority": "medium"
},
"safety": {
"keywords": ["rm -rf", "delete", "destroy", "force", "clean"],
"plugins": ["claude-code-safety-net"],
"priority": "critical"
},
"monitoring": {
"keywords": ["status", "progress", "context", "monitor"],
"plugins": ["claude-hud"],
"priority": "low"
}
}
}

21
skills/hooks/consult-qwen.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
# Simple Qwen Consultation Script
# Usage: consult-qwen.sh "your question here"
set -euo pipefail
QUESTION="${1:-}"
if [[ -z "$QUESTION" ]]; then
echo "Usage: $0 \"your question\""
exit 1
fi
echo "=== Consulting Qwen ==="
echo "Question: $QUESTION"
echo ""
echo "Qwen's Response:"
echo "---"
# Run Qwen with the question
echo "$QUESTION" | timeout 30 qwen -p - 2>&1

View File

@@ -0,0 +1,72 @@
#!/bin/bash
# Demo script showing how to use Qwen consultation hook
set -euo pipefail
echo "====================================="
echo " Qwen Consultation Hook Demo"
echo "====================================="
echo ""
# Step 1: Show current mode
echo "1. Current QWEN_CONSULT_MODE: ${QWEN_CONSULT_MODE:-off (default)}"
echo ""
# Step 2: Enable delegate mode
echo "2. Enabling delegate mode..."
export QWEN_CONSULT_MODE=delegate
echo " QWEN_CONSULT_MODE is now: $QWEN_CONSULT_MODE"
echo ""
# Step 3: Trigger consultation with delegate keyword
echo "3. Triggering Qwen consultation..."
echo " Prompt: 'please consult qwen for advice on bash scripting best practices'"
echo ""
# Clear previous log
> ~/.claude/qwen-output.log
# Trigger the hook
echo '{"prompt": "please consult qwen for advice on bash scripting best practices"}' | \
/home/uroma/.claude/hooks/qwen-consult.sh 2>&1
# Wait a moment for Qwen to start
sleep 2
# Step 4: Show Qwen is running
echo "4. Checking if Qwen is running..."
if [[ -f ~/.claude/qwen.lock ]]; then
PID=$(cat ~/.claude/qwen.lock)
if kill -0 "$PID" 2>/dev/null; then
echo " ✓ Qwen is running (PID: $PID)"
else
echo " ✗ Qwen process not found"
fi
else
echo " ✗ Qwen lock file not found"
fi
echo ""
# Step 5: Wait for output and show it
echo "5. Waiting for Qwen's response (10 seconds)..."
sleep 10
echo ""
echo "====================================="
echo " Qwen's Response:"
echo "====================================="
tail -n +4 ~/.claude/qwen-output.log
echo ""
echo "====================================="
echo " Monitoring Commands:"
echo "====================================="
echo "View output in real-time:"
echo " tail -f ~/.claude/qwen-output.log"
echo ""
echo "Check if Qwen is running:"
echo " ps aux | grep qwen"
echo ""
echo "Stop Qwen:"
echo " kill \$(cat ~/.claude/qwen.lock)"
echo ""

26
skills/hooks/hooks.json Normal file
View File

@@ -0,0 +1,26 @@
{
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume|clear|compact",
"hooks": [
{
"type": "command",
"command": "bash ~/.claude/hooks/session-start-superpowers.sh"
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "/home/uroma/.claude/hooks/qwen-consult.sh",
"timeout": 3
}
]
}
]
}
}

163
skills/hooks/qwen-consult.sh Executable file
View File

@@ -0,0 +1,163 @@
#!/bin/bash
# Qwen Consult Hook - Integration with Qwen Code CLI
# Allows Claude Code to consult with local Qwen installation for tasks
#
# Modes (via QWEN_CONSULT_MODE environment variable):
# "always" - Consult Qwen for every request
# "delegate" - Only when explicitly asked to delegate/consult
# "off" - Disable Qwen consultation (default)
#
# Usage:
# Set QWEN_CONSULT_MODE environment variable to control behavior
# The hook runs Qwen in non-blocking mode and logs output
set -euo pipefail
# Configuration
CLAUDE_DIR="$HOME/.claude"
QWEN_STATE_FILE="$CLAUDE_DIR/qwen-consult.md"
QWEN_OUTPUT_LOG="$CLAUDE_DIR/qwen-output.log"
QWEN_LOCK_FILE="$CLAUDE_DIR/qwen.lock"
# Read hook input from stdin
HOOK_INPUT=$(cat)
USER_PROMPT=$(echo "$HOOK_INPUT" | jq -r '.prompt // empty' 2>/dev/null || echo "")
# Fallback: if no JSON input, use first argument
if [[ -z "$USER_PROMPT" && $# -gt 0 ]]; then
USER_PROMPT="$1"
fi
# Get Qwen mode (default: off - requires explicit opt-in)
QWEN_CONSULT_MODE="${QWEN_CONSULT_MODE:-off}"
QWEN_MODEL="${QWEN_MODEL:-}"
QWEN_MAX_ITERATIONS="${QWEN_MAX_ITERATIONS:-30}"
# Exit if consultation is disabled
if [[ "$QWEN_CONSULT_MODE" == "off" ]]; then
exit 0
fi
# Check if Qwen is already running
if [[ -f "$QWEN_LOCK_FILE" ]]; then
LOCK_PID=$(cat "$QWEN_LOCK_FILE" 2>/dev/null || echo "")
if [[ -n "$LOCK_PID" ]] && kill -0 "$LOCK_PID" 2>/dev/null; then
exit 0
else
rm -f "$QWEN_LOCK_FILE"
fi
fi
# Keywords that trigger Qwen consultation (in delegate mode)
DELEGATE_KEYWORDS="consult|qwen|delegate|second opinion|alternative|get.*advice|ask.*qwen"
# Determine if we should consult Qwen
should_consult=false
case "$QWEN_CONSULT_MODE" in
"always")
should_consult=true
;;
"delegate")
if echo "$USER_PROMPT" | grep -iqE "$DELEGATE_KEYWORDS"; then
should_consult=true
fi
;;
esac
if [[ "$should_consult" == true ]]; then
# Create state directory
mkdir -p "$CLAUDE_DIR"
# Build Qwen command arguments
QWEN_ARGS=()
if [[ -n "$QWEN_MODEL" ]]; then
QWEN_ARGS+=(-m "$QWEN_MODEL")
fi
# Prepare prompt for Qwen with context
QWEN_PROMPT="You are Qwen, consulted by Claude Code for assistance. The user asks: $USER_PROMPT
Please provide your analysis, suggestions, or solution. Be concise and actionable."
# Create state file
cat > "$QWEN_STATE_FILE" << EOF
# Qwen Consult State
# Generated: $(date -u +"%Y-%m-%d %H:%M:%S UTC")
**User Request:**
$USER_PROMPT
**Mode:** $QWEN_CONSULT_MODE
**Model:** ${QWEN_MODEL:-default}
**Timestamp:** $(date -Iseconds)
## Context
This state file was generated by the Qwen consultation hook. Qwen Code CLI
is being consulted to provide additional insights on this request.
## Configuration
- Hook: UserPromptSubmit
- Trigger mode: $QWEN_CONSULT_MODE
- Log file: $QWEN_OUTPUT_LOG
## Usage
Qwen is running autonomously in the background. Monitor progress:
\`\`\`bash
# View Qwen output in real-time
tail -f ~/.claude/qwen-output.log
# Check if Qwen is still running
ps aux | grep qwen
# Stop Qwen manually
kill \$(cat ~/.claude/qwen.lock)
\`\`\`
EOF
# Check if Qwen is available
if command -v qwen &> /dev/null; then
# Create log file
touch "$QWEN_OUTPUT_LOG"
# Start Qwen in background
{
echo "[$(date -u +"%Y-%m-%d %H:%M:%S UTC")] Qwen consultation started"
echo "Mode: $QWEN_CONSULT_MODE"
echo "Model: ${QWEN_MODEL:-default}"
echo "---"
} >> "$QWEN_OUTPUT_LOG"
# Run Qwen in background
if [[ ${#QWEN_ARGS[@]} -gt 0 ]]; then
nohup qwen "${QWEN_ARGS[@]}" -p "$QWEN_PROMPT" >> "$QWEN_OUTPUT_LOG" 2>&1 &
else
nohup qwen -p "$QWEN_PROMPT" >> "$QWEN_OUTPUT_LOG" 2>&1 &
fi
QWEN_PID=$!
echo "$QWEN_PID" > "$QWEN_LOCK_FILE"
# Log the consultation
{
echo "[$(date -u +"%Y-%m-%d %H:%M:%S UTC")] Qwen consultation triggered"
echo " Mode: $QWEN_CONSULT_MODE"
echo " Model: ${QWEN_MODEL:-default}"
echo " PID: $QWEN_PID"
echo " Log: $QWEN_OUTPUT_LOG"
} >> "$CLAUDE_DIR/qwen-consult.log" 2>/dev/null || true
# Notify user
echo "🤖 Qwen consultation started (PID: $QWEN_PID)" >&2
echo " Monitor: tail -f ~/.claude/qwen-output.log" >&2
else
echo "⚠️ Qwen CLI not found at /usr/local/bin/qwen" >&2
fi
fi
# Exit immediately (non-blocking)
exit 0

View File

@@ -0,0 +1,193 @@
#!/bin/bash
# Ralph Auto-Trigger Hook - Enhanced with Background Task Spawning
# Automatically starts Ralph CLI in background when needed
#
# Modes (via RALPH_AUTO_MODE environment variable):
# "always" - Start Ralph for every request
# "agents" - Only for agent requests (default)
# "off" - Disable auto-trigger
#
# Background Execution:
# - Ralph runs as background process (non-blocking)
# - Claude Code continues immediately
# - Ralph output logged to: ~/.claude/ralph-output.log
# - Ralph PID tracked in: ~/.claude/ralph.pid
set -euo pipefail
# Configuration
CLAUDE_DIR="$HOME/.claude"
RALPH_STATE_FILE="$CLAUDE_DIR/ralph-loop.local.md"
RALPH_PID_FILE="$CLAUDE_DIR/ralph.pid"
RALPH_LOG_FILE="$CLAUDE_DIR/ralph-output.log"
RALPH_LOCK_FILE="$CLAUDE_DIR/ralph.lock"
# Read hook input from stdin
HOOK_INPUT=$(cat)
USER_PROMPT=$(echo "$HOOK_INPUT" | jq -r '.prompt // empty' 2>/dev/null || echo "")
# Fallback: if no JSON input, use first argument
if [[ -z "$USER_PROMPT" && $# -gt 0 ]]; then
USER_PROMPT="$1"
fi
# Get Ralph mode (default: agents)
RALPH_AUTO_MODE="${RALPH_AUTO_MODE:-agents}"
RALPH_MAX_ITERATIONS="${RALPH_MAX_ITERATIONS:-50}"
# Exit if auto-trigger is disabled
if [[ "$RALPH_AUTO_MODE" == "off" ]]; then
exit 0
fi
# Check if Ralph is already running (via lock file)
if [[ -f "$RALPH_LOCK_FILE" ]]; then
# Check if process is still alive
LOCK_PID=$(cat "$RALPH_LOCK_FILE" 2>/dev/null || echo "")
if [[ -n "$LOCKPD" ]] && kill -0 "$LOCK_PID" 2>/dev/null; then
# Ralph is already running, don't start another instance
exit 0
else
# Lock file exists but process is dead, clean up
rm -f "$RALPH_LOCK_FILE" "$RALPH_PID_FILE"
fi
fi
# Agent detection list (lowercase for matching)
AGENTS=(
"ai-engineer" "backend-architect" "devops-automator" "frontend-developer"
"mobile-app-builder" "rapid-prototyper" "test-writer-fixer"
"tiktok-strategist" "growth-hacker" "content-creator" "instagram-curator"
"reddit-builder" "twitter-engager" "app-store-optimizer"
"brand-guardian" "ui-designer" "ux-researcher" "visual-storyteller"
"whimsy-injector" "ui-ux-pro-max"
"feedback-synthesizer" "sprint-prioritizer" "trend-researcher"
"experiment-tracker" "project-shipper" "studio-producer" "studio-coach"
"analytics-reporter" "finance-tracker" "infrastructure-maintainer"
"legal-compliance-checker" "support-responder"
"api-tester" "performance-benchmarker" "test-results-analyzer"
"tool-evaluator" "workflow-optimizer"
"joker" "agent-updater"
"explore" "plan" "general-purpose"
)
# Detect agent request (case-insensitive)
agent_detected=false
detected_agent=""
for agent in "${AGENTS[@]}"; do
if echo "$USER_PROMPT" | grep -iq "$agent"; then
agent_detected=true
detected_agent="$agent"
break
fi
done
# Determine if we should start Ralph
should_trigger=false
case "$RALPH_AUTO_MODE" in
"always")
# Trigger on all prompts
should_trigger=true
;;
"agents")
# Only trigger on agent requests OR development keywords
if [[ "$agent_detected" == true ]]; then
should_trigger=true
elif echo "$USER_PROMPT" | grep -qiE "build|create|implement|develop|fix|add|refactor|optimize|write|generate|delegate|autonomous"; then
should_trigger=true
detected_agent="general-development"
fi
;;
esac
if [[ "$should_trigger" == true ]]; then
# Create Ralph state file
mkdir -p "$CLAUDE_DIR"
cat > "$RALPH_STATE_FILE" << EOF
# Ralph Loop State - Auto-Triggered
# Generated: $(date -u +"%Y-%m-%d %H:%M:%S UTC")
**User Request:**
$USER_PROMPT
**Detected Agent:** $detected_agent
**Mode:** $RALPH_AUTO_MODE
**Max Iterations:** $RALPH_MAX_ITERATIONS
**Timestamp:** $(date -Iseconds)
## Context
This state file was automatically generated by the Ralph auto-trigger hook.
Ralph CLI will read this file and autonomously execute the request.
## Auto-Trigger Details
- Triggered by: Claude Code UserPromptSubmit hook
- Trigger mode: $RALPH_AUTO_MODE
- Background execution: Yes (non-blocking)
- Log file: $RALPH_LOG_FILE
## Usage
Ralph is running autonomously in the background. Monitor progress:
\`\`\`bash
# View Ralph output in real-time
tail -f ~/.claude/ralph-output.log
# Check if Ralph is still running
ps aux | grep ralph
# Stop Ralph manually
kill \$(cat ~/.claude/ralph.pid)
rm ~/.claude/ralph.lock
\`\`\`
EOF
# Spawn Ralph in background (NON-BLOCKING)
if command -v ralph &> /dev/null; then
# Create log file
touch "$RALPH_LOG_FILE"
# Start Ralph in background with nohup (survives terminal close)
echo "[$(date -u +"%Y-%m-%d %H:%M:%S UTC")] Starting Ralph in background..." >> "$RALPH_LOG_FILE"
echo "Mode: $RALPH_AUTO_MODE" >> "$RALPH_LOG_FILE"
echo "Agent: $detected_agent" >> "$RALPH_LOG_FILE"
echo "Max iterations: $RALPH_MAX_ITERATIONS" >> "$RALPH_LOG_FILE"
echo "---" >> "$RALPH_LOG_FILE"
# Start Ralph in background
nohup ralph build "$RALPH_MAX_ITERATIONS" >> "$RALPH_LOG_FILE" 2>&1 &
RALPH_PID=$!
# Save PID for tracking
echo "$RALPH_PID" > "$RALPH_PID_FILE"
echo "$RALPH_PID" > "$RALPH_LOCK_FILE"
# Log the trigger
{
echo "[$(date -u +"%Y-%m-%d %H:%M:%S UTC")] Ralph auto-triggered"
echo " Mode: $RALPH_AUTO_MODE"
echo " Agent: $detected_agent"
echo " PID: $RALPH_PID"
echo " Log: $RALPH_LOG_FILE"
} >> "$CLAUDE_DIR/ralph-trigger.log" 2>/dev/null || true
# Notify user via stderr (visible in Claude Code)
echo "🔄 Ralph CLI auto-started in background" >&2
echo " PID: $RALPH_PID" >&2
echo " Agent: $detected_agent" >&2
echo " Monitor: tail -f ~/.claude/ralph-output.log" >&2
echo " Stop: kill \$(cat ~/.claude/ralph.pid)" >&2
else
# Ralph not installed, just create state file
echo "⚠️ Ralph CLI not installed. State file created for manual use." >&2
echo " Install: npm install -g @iannuttall/ralph" >&2
fi
fi
# Exit immediately (NON-BLOCKING - Claude Code continues)
exit 0

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
# Read skill files and inject into session context
auto_superpowers_content=$(cat "${HOME}/.claude/skills/auto-superpowers/SKILL.md" 2>/dev/null || echo "Skill not found")
using_superpowers_content=$(cat "${HOME}/.claude/skills/using-superpowers/SKILL.md" 2>/dev/null || echo "Skill not found")
# Output JSON with skills injected
cat <<EOF
{
"hookSpecificOutput": {
"hookEventName": "SessionStart",
"additionalContext": "\n**AUTO-SUPERPOWERS IS ACTIVE**\n\n${auto_superpowers_content}\n\n**USING-SUPERPOWERS INSTRUCTION:**\n\n${using_superpowers_content}\n\n"
}
}