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

@@ -144,7 +144,6 @@ main() {
# Core Binaries
section "Core Binaries"
check_binary "claude" || exit_code=1
check_binary "clawdbot" || exit_code=1
check_binary "ralphloop" "${CLAUDE_DIR}/skills/bin/ralphloop" || exit_code=1
check_binary "jq" || exit_code=1
@@ -154,7 +153,6 @@ main() {
check_directory "${CLAUDE_DIR}/skills" "Skills directory" || exit_code=1
check_directory "${CLAUDE_DIR}/hooks" "Hooks directory" || exit_code=1
check_directory "${CLAUDE_DIR}/plugins" "Plugins directory" || exit_code=1
check_directory "${CLAUDE_DIR}/clawd" "Clawd directory" || exit_code=1
check_directory "${CLAUDE_DIR}/ralph-integration" "Ralph integration" || exit_code=1
check_directory "${CLAUDE_DIR}/mcp-servers" "MCP servers" || exit_code=1
check_directory "${CLAUDE_DIR}/prometheus" "Prometheus" || exit_code=1
@@ -167,14 +165,7 @@ main() {
check_file "${CLAUDE_DIR}/plugins/installed_plugins.json" "Installed plugins" || exit_code=1
check_file "${CLAUDE_DIR}/plugins/marketplaces/official.json" "Official marketplace" || exit_code=1
check_file "${CLAUDE_DIR}/mcp-servers/registry.json" "MCP registry" || exit_code=1
# Clawd Components
section "Clawd Integration"
check_process "${CLAUDE_DIR}/clawd/gateway.pid" "Clawd Gateway" || exit_code=1
check_port 8766 "Clawd Gateway" || exit_code=1
check_file "${CLAUDE_DIR}/commands/clawd.md" "Clawd command" || exit_code=1
check_file "${CLAUDE_DIR}/hooks/clawd-wrapper.sh" "Clawd wrapper hook" || exit_code=1
# Ralph Integration
section "Ralph Integration"
check_file "${CLAUDE_DIR}/skills/bin/ralphloop" "Ralph binary" || exit_code=1
@@ -220,8 +211,8 @@ main() {
section "Hooks System"
local hook_count=$(jq '.hooks | length' "${CLAUDE_DIR}/hooks.json" 2>/dev/null || echo "0")
check_info "Registered hook events: $hook_count"
for hook in clawd-auto-trigger.sh clawd-session-start.sh clawd-task-complete.sh unified-integration-v2.sh prometheus-wrapper.sh; do
for hook in unified-integration-v2.sh prometheus-wrapper.sh; do
check_file "${CLAUDE_DIR}/hooks/$hook" "Hook: $hook" || exit_code=1
done