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
61 lines
1.1 KiB
Bash
Executable File
61 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# Run all skill triggering tests
|
|
# Usage: ./run-all.sh
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROMPTS_DIR="$SCRIPT_DIR/prompts"
|
|
|
|
SKILLS=(
|
|
"systematic-debugging"
|
|
"test-driven-development"
|
|
"writing-plans"
|
|
"dispatching-parallel-agents"
|
|
"executing-plans"
|
|
"requesting-code-review"
|
|
)
|
|
|
|
echo "=== Running Skill Triggering Tests ==="
|
|
echo ""
|
|
|
|
PASSED=0
|
|
FAILED=0
|
|
RESULTS=()
|
|
|
|
for skill in "${SKILLS[@]}"; do
|
|
prompt_file="$PROMPTS_DIR/${skill}.txt"
|
|
|
|
if [ ! -f "$prompt_file" ]; then
|
|
echo "⚠️ SKIP: No prompt file for $skill"
|
|
continue
|
|
fi
|
|
|
|
echo "Testing: $skill"
|
|
|
|
if "$SCRIPT_DIR/run-test.sh" "$skill" "$prompt_file" 3 2>&1 | tee /tmp/skill-test-$skill.log; then
|
|
PASSED=$((PASSED + 1))
|
|
RESULTS+=("✅ $skill")
|
|
else
|
|
FAILED=$((FAILED + 1))
|
|
RESULTS+=("❌ $skill")
|
|
fi
|
|
|
|
echo ""
|
|
echo "---"
|
|
echo ""
|
|
done
|
|
|
|
echo ""
|
|
echo "=== Summary ==="
|
|
for result in "${RESULTS[@]}"; do
|
|
echo " $result"
|
|
done
|
|
echo ""
|
|
echo "Passed: $PASSED"
|
|
echo "Failed: $FAILED"
|
|
|
|
if [ $FAILED -gt 0 ]; then
|
|
exit 1
|
|
fi
|