Features: - 30+ Custom Skills (cognitive, development, UI/UX, autonomous agents) - RalphLoop autonomous agent integration - Multi-AI consultation (Qwen) - Agent management system with sync capabilities - Custom hooks for session management - MCP servers integration - Plugin marketplace setup - Comprehensive installation script Components: - Skills: always-use-superpowers, ralph, brainstorming, ui-ux-pro-max, etc. - Agents: 100+ agents across engineering, marketing, product, etc. - Hooks: session-start-superpowers, qwen-consult, ralph-auto-trigger - Commands: /brainstorm, /write-plan, /execute-plan - MCP Servers: zai-mcp-server, web-search-prime, web-reader, zread - Binaries: ralphloop wrapper Installation: ./supercharge.sh
71 lines
1.9 KiB
Bash
Executable File
71 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# Run all explicit skill request tests
|
|
# Usage: ./run-all.sh
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROMPTS_DIR="$SCRIPT_DIR/prompts"
|
|
|
|
echo "=== Running All Explicit Skill Request Tests ==="
|
|
echo ""
|
|
|
|
PASSED=0
|
|
FAILED=0
|
|
RESULTS=""
|
|
|
|
# Test: subagent-driven-development, please
|
|
echo ">>> Test 1: subagent-driven-development-please"
|
|
if "$SCRIPT_DIR/run-test.sh" "subagent-driven-development" "$PROMPTS_DIR/subagent-driven-development-please.txt"; then
|
|
PASSED=$((PASSED + 1))
|
|
RESULTS="$RESULTS\nPASS: subagent-driven-development-please"
|
|
else
|
|
FAILED=$((FAILED + 1))
|
|
RESULTS="$RESULTS\nFAIL: subagent-driven-development-please"
|
|
fi
|
|
echo ""
|
|
|
|
# Test: use systematic-debugging
|
|
echo ">>> Test 2: use-systematic-debugging"
|
|
if "$SCRIPT_DIR/run-test.sh" "systematic-debugging" "$PROMPTS_DIR/use-systematic-debugging.txt"; then
|
|
PASSED=$((PASSED + 1))
|
|
RESULTS="$RESULTS\nPASS: use-systematic-debugging"
|
|
else
|
|
FAILED=$((FAILED + 1))
|
|
RESULTS="$RESULTS\nFAIL: use-systematic-debugging"
|
|
fi
|
|
echo ""
|
|
|
|
# Test: please use brainstorming
|
|
echo ">>> Test 3: please-use-brainstorming"
|
|
if "$SCRIPT_DIR/run-test.sh" "brainstorming" "$PROMPTS_DIR/please-use-brainstorming.txt"; then
|
|
PASSED=$((PASSED + 1))
|
|
RESULTS="$RESULTS\nPASS: please-use-brainstorming"
|
|
else
|
|
FAILED=$((FAILED + 1))
|
|
RESULTS="$RESULTS\nFAIL: please-use-brainstorming"
|
|
fi
|
|
echo ""
|
|
|
|
# Test: mid-conversation execute plan
|
|
echo ">>> Test 4: mid-conversation-execute-plan"
|
|
if "$SCRIPT_DIR/run-test.sh" "subagent-driven-development" "$PROMPTS_DIR/mid-conversation-execute-plan.txt"; then
|
|
PASSED=$((PASSED + 1))
|
|
RESULTS="$RESULTS\nPASS: mid-conversation-execute-plan"
|
|
else
|
|
FAILED=$((FAILED + 1))
|
|
RESULTS="$RESULTS\nFAIL: mid-conversation-execute-plan"
|
|
fi
|
|
echo ""
|
|
|
|
echo "=== Summary ==="
|
|
echo -e "$RESULTS"
|
|
echo ""
|
|
echo "Passed: $PASSED"
|
|
echo "Failed: $FAILED"
|
|
echo "Total: $((PASSED + FAILED))"
|
|
|
|
if [ "$FAILED" -gt 0 ]; then
|
|
exit 1
|
|
fi
|