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
47 lines
1.0 KiB
Bash
Executable File
47 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# Scaffold the Svelte Todo test project
|
|
# Usage: ./scaffold.sh /path/to/target/directory
|
|
|
|
set -e
|
|
|
|
TARGET_DIR="${1:?Usage: $0 <target-directory>}"
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
# Create target directory
|
|
mkdir -p "$TARGET_DIR"
|
|
cd "$TARGET_DIR"
|
|
|
|
# Initialize git repo
|
|
git init
|
|
|
|
# Copy design and plan
|
|
cp "$SCRIPT_DIR/design.md" .
|
|
cp "$SCRIPT_DIR/plan.md" .
|
|
|
|
# Create .claude settings to allow reads/writes in this directory
|
|
mkdir -p .claude
|
|
cat > .claude/settings.local.json << 'SETTINGS'
|
|
{
|
|
"permissions": {
|
|
"allow": [
|
|
"Read(**)",
|
|
"Edit(**)",
|
|
"Write(**)",
|
|
"Bash(npm:*)",
|
|
"Bash(npx:*)",
|
|
"Bash(mkdir:*)",
|
|
"Bash(git:*)"
|
|
]
|
|
}
|
|
}
|
|
SETTINGS
|
|
|
|
# Create initial commit
|
|
git add .
|
|
git commit -m "Initial project setup with design and plan"
|
|
|
|
echo "Scaffolded Svelte Todo project at: $TARGET_DIR"
|
|
echo ""
|
|
echo "To run the test:"
|
|
echo " claude -p \"Execute this plan using superpowers:subagent-driven-development. Plan: $TARGET_DIR/plan.md\" --plugin-dir /path/to/superpowers"
|