Remove Clawdbot integration

- Deleted clawd command file (commands/clawd.md)
- Deleted clawd hook files (hooks/clawd-*.sh)
- Removed clawd references from supercharge.sh
- Removed clawd checks from health-check.sh
- Removed clawd aliases from aliases.sh
- Removed clawd patterns from intelligent-router.sh
- Updated enhanced-ralph.md to remove clawd agent reference

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
uroma
2026-01-29 12:25:00 +00:00
Unverified
parent 2ba9dedfb0
commit 2925224a9a
8 changed files with 8 additions and 277 deletions

View File

@@ -204,10 +204,7 @@ install_dependencies() {
# Install Dexto Integration
install_dexto_integration
# Install Clawd Gateway
install_clawd_gateway
# Configure MCP Servers
configure_mcp_servers
}
@@ -283,35 +280,6 @@ install_dexto_integration() {
fi
}
install_clawd_gateway() {
log_step "Installing Clawd Gateway..."
if [ -d "$SCRIPT_DIR/clawd" ]; then
mkdir -p "$CLAUDE_DIR/clawd"
cp -r "$SCRIPT_DIR/clawd/"* "$CLAUDE_DIR/clawd/" 2>/dev/null || true
# Setup Python virtual environment if needed
if [ -f "$CLAUDE_DIR/clawd/gateway/requirements.txt" ]; then
if [ ! -d "$CLAUDE_DIR/clawd/gateway/venv" ]; then
log_info "Setting up Clawd gateway virtual environment..."
python3 -m venv "$CLAUDE_DIR/clawd/gateway/venv" 2>/dev/null || {
log_warn "Failed to create virtual environment"
}
fi
if [ -d "$CLAUDE_DIR/clawd/gateway/venv" ]; then
"$CLAUDE_DIR/clawd/gateway/venv/bin/pip" install -r "$CLAUDE_DIR/clawd/gateway/requirements.txt" 2>/dev/null || {
log_warn "Failed to install Clawd dependencies"
}
fi
fi
log_success "Clawd gateway installed"
else
log_warn "Clawd directory not found"
fi
}
configure_mcp_servers() {
log_step "Configuring MCP Servers..."
@@ -509,16 +477,14 @@ print_summary() {
echo -e " ${GREEN}${NC} RalphLoop Autonomous Agent"
echo -e " ${GREEN}${NC} Prometheus Code Analysis (6 commands)"
echo -e " ${GREEN}${NC} Dexto Multi-Agent Harness (12 commands)"
echo -e " ${GREEN}${NC} Clawd Autonomous Gateway"
echo -e " ${GREEN}${NC} Intelligent Auto-Routing System"
echo -e " ${GREEN}${NC} Multi-AI Consultation (Qwen)"
echo -e " ${GREEN}${NC} 10 MCP Servers Configured"
echo -e " ${GREEN}${NC} Plugin Marketplace"
echo ""
echo -e "${CYAN}Available Commands (21 total):${NC}"
echo -e "${CYAN}Available Commands (20 total):${NC}"
echo ""
echo -e "${BOLD}Autonomous Agents:${NC}"
echo -e " ${YELLOW}/clawd${NC} - Fully autonomous task execution"
echo -e " ${YELLOW}/ralph${NC} - Iterative architecture & orchestration"
echo ""
echo -e "${BOLD}Prometheus (Code Analysis):${NC}"