claude-all-config 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/LICENSE.md +70 -0
- package/README.md +133 -0
- package/VERSION +1 -0
- package/agents/accessibility-reviewer.md +96 -0
- package/agents/ai-prompt-optimizer.md +94 -0
- package/agents/api-tester.md +102 -0
- package/agents/code-generator.md +94 -0
- package/agents/code-reviewer.md +47 -0
- package/agents/component-generator.md +102 -0
- package/agents/doc-generator.md +91 -0
- package/agents/migration-generator.md +94 -0
- package/agents/performance-analyzer.md +90 -0
- package/agents/proactive-mode.md +91 -0
- package/agents/readme-generator.md +101 -0
- package/agents/security-auditor.md +86 -0
- package/agents/terraform-generator.md +94 -0
- package/agents/test-generator.md +76 -0
- package/bin/agentrouter.json +36 -0
- package/bin/ai-chat +20 -0
- package/bin/antigravity.json +76 -0
- package/bin/api-manager +340 -0
- package/bin/claude-launcher +19 -0
- package/bin/claude-master +15 -0
- package/bin/claude_master.py +295 -0
- package/bin/cohere.json +7 -0
- package/bin/deepseek.json +44 -0
- package/bin/gemini.json +56 -0
- package/bin/glm.json +21 -0
- package/bin/groq.json +41 -0
- package/bin/minimax.json +26 -0
- package/bin/mistral.json +7 -0
- package/bin/moonshot.json +7 -0
- package/bin/ollama.json +36 -0
- package/bin/openai.json +46 -0
- package/bin/openrouter.json +38 -0
- package/bin/perplexity.json +12 -0
- package/bin/qwen.json +7 -0
- package/bin/switch-provider +73 -0
- package/bin/test.json +7 -0
- package/bin/xai.json +41 -0
- package/claude-all +2707 -0
- package/claude-config.json +340 -0
- package/claude-suite/REFACTORING_SUMMARY.md +88 -0
- package/claude-suite/auth/.antigravity_proxy.py +78 -0
- package/claude-suite/auth/__pycache__/openai_auth.cpython-312.pyc +0 -0
- package/claude-suite/auth/gemini_auth.py +80 -0
- package/claude-suite/auth/openai_auth.py +138 -0
- package/claude-suite/backups/claude-all-before-refactor +1075 -0
- package/claude-suite/backups/claude-all.backup +840 -0
- package/claude-suite/backups/claude-all.original +840 -0
- package/claude-suite/models/add-model-manual.sh +588 -0
- package/claude-suite/models/add-model.sh +114 -0
- package/claude-suite/models/model-switcher.sh +69 -0
- package/claude-suite/providers/claude-glm +89 -0
- package/claude-suite/providers/claude-glm-wrapper.sh +55 -0
- package/claude-suite/providers/claude-minimax +12 -0
- package/claude-suite/providers/claude-smart +132 -0
- package/claude-suite/providers/xai_chat.sh +56 -0
- package/claude-suite/utils/__pycache__/claude_master.cpython-312.pyc +0 -0
- package/claude-suite/utils/antigravity_proxy_server.py +168 -0
- package/claude-suite/utils/claude-all-help.txt +83 -0
- package/claude-suite/utils/claude_master.py +408 -0
- package/commands/brainstorm.md +5 -0
- package/commands/execute-plan.md +5 -0
- package/commands/write-plan.md +5 -0
- package/docs/ANTIGRAVITY-SETUP.md +176 -0
- package/docs/AUTH_CREDENTIALS.md +54 -0
- package/docs/NPM-INSTALLATION.md +166 -0
- package/hooks/hooks.json +15 -0
- package/hooks/run-hook.cmd +19 -0
- package/hooks/session-start.sh +52 -0
- package/install.sh +155 -0
- package/mcp.json +34 -0
- package/model/perplexity.json +12 -0
- package/package.json +69 -0
- package/plugins/README.md +47 -0
- package/plugins/installed_plugins.json +317 -0
- package/plugins/known_marketplaces.json +10 -0
- package/plugins/marketplace-info/marketplace.json +517 -0
- package/postinstall.js +100 -0
- package/scripts/antigravity_proxy_server.py +168 -0
- package/scripts/get_gemini_api_key.py +96 -0
- package/scripts/setup_antigravity_auth.py +171 -0
- package/skills/api-development/SKILL.md +11 -0
- package/skills/api-development/openapi/api-documentation.yaml +108 -0
- package/skills/brainstorming/SKILL.md +54 -0
- package/skills/code-quality/SKILL.md +196 -0
- package/skills/condition-based-waiting/SKILL.md +120 -0
- package/skills/condition-based-waiting/example.ts +158 -0
- package/skills/database-development/SKILL.md +11 -0
- package/skills/database-development/migrations/migration.template.sql +49 -0
- package/skills/defense-in-depth/SKILL.md +127 -0
- package/skills/deployment/SKILL.md +11 -0
- package/skills/deployment/ci-cd/github-actions.yml +95 -0
- package/skills/deployment/docker/Dockerfile.template +39 -0
- package/skills/dispatching-parallel-agents/SKILL.md +180 -0
- package/skills/documentation-generation/SKILL.md +8 -0
- package/skills/documentation-generation/templates/README.template.md +60 -0
- package/skills/error-handling/SKILL.md +267 -0
- package/skills/executing-plans/SKILL.md +76 -0
- package/skills/finishing-a-development-branch/SKILL.md +200 -0
- package/skills/frontend-design/frontend-design/SKILL.md +42 -0
- package/skills/integration-testing/SKILL.md +13 -0
- package/skills/integration-testing/examples/contract-test.py +317 -0
- package/skills/integration-testing/examples/e2e-test.js +147 -0
- package/skills/integration-testing/examples/test-isolation.md +94 -0
- package/skills/logging-monitoring/SKILL.md +66 -0
- package/skills/mobile-development/SKILL.md +11 -0
- package/skills/mobile-development/responsive/responsive.css +80 -0
- package/skills/performance-optimization/SKILL.md +9 -0
- package/skills/performance-optimization/profiling/profile.template.js +21 -0
- package/skills/receiving-code-review/SKILL.md +209 -0
- package/skills/refactoring/SKILL.md +11 -0
- package/skills/refactoring/code-smells/common-smells.md +115 -0
- package/skills/requesting-code-review/SKILL.md +105 -0
- package/skills/requesting-code-review/code-reviewer.md +146 -0
- package/skills/root-cause-tracing/SKILL.md +174 -0
- package/skills/root-cause-tracing/find-polluter.sh +63 -0
- package/skills/security-review/SKILL.md +11 -0
- package/skills/security-review/checklists/owasp-checklist.md +31 -0
- package/skills/sharing-skills/SKILL.md +194 -0
- package/skills/subagent-driven-development/SKILL.md +240 -0
- package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
- package/skills/subagent-driven-development/implementer-prompt.md +78 -0
- package/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
- package/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/skills/systematic-debugging/SKILL.md +295 -0
- package/skills/systematic-debugging/test-academic.md +14 -0
- package/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/skills/test-driven-development/SKILL.md +364 -0
- package/skills/testing-anti-patterns/SKILL.md +302 -0
- package/skills/testing-skills-with-subagents/SKILL.md +387 -0
- package/skills/testing-skills-with-subagents/examples/CLAUDE_MD_TESTING.md +189 -0
- package/skills/ui-ux-review/SKILL.md +13 -0
- package/skills/ui-ux-review/checklists/ux-heuristics.md +61 -0
- package/skills/using-git-worktrees/SKILL.md +213 -0
- package/skills/using-superpowers/SKILL.md +101 -0
- package/skills/verification-before-completion/SKILL.md +139 -0
- package/skills/writing-plans/SKILL.md +116 -0
- package/skills/writing-skills/SKILL.md +622 -0
- package/skills/writing-skills/anthropic-best-practices.md +1150 -0
- package/skills/writing-skills/graphviz-conventions.dot +172 -0
- package/skills/writing-skills/persuasion-principles.md +187 -0
- package/update.sh +36 -0
- package/utils/check-superpowers.sh +114 -0
- package/utils/claude-branding.md +166 -0
- package/utils/config.js +185 -0
- package/utils/custom-claude-config.sh +89 -0
- package/utils/custom-claude-hooks.md +129 -0
- package/utils/custom-claude-lib.js +222 -0
- package/utils/customize-claude-ui.sh +162 -0
- package/utils/fix-claude-integration.sh +133 -0
- package/utils/help.js +125 -0
- package/utils/install-curl.ps1 +135 -0
- package/utils/install-curl.sh +525 -0
- package/utils/install-superpowers.js +411 -0
- package/utils/install.js +298 -0
- package/utils/install.sh +182 -0
- package/utils/postinstall.js +63 -0
- package/utils/rename-claude.sh +96 -0
- package/utils/uninstall-superpowers.js +273 -0
- package/utils/uninstall.ps1 +136 -0
- package/utils/uninstall.sh +163 -0
- package/utils/update.sh +160 -0
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# 📦 NPM Installation Guide
|
|
2
|
+
|
|
3
|
+
## 🚀 Quick Start
|
|
4
|
+
|
|
5
|
+
### Prerequisites
|
|
6
|
+
- **Node.js** >= 14.0.0
|
|
7
|
+
- **npm** (usually comes with Node.js)
|
|
8
|
+
- **Internet connection** for installation
|
|
9
|
+
|
|
10
|
+
### Installation Commands
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
# Install globally
|
|
14
|
+
npm install -g claude-all-ai-launcher
|
|
15
|
+
|
|
16
|
+
# Verify installation
|
|
17
|
+
npm list -g claude-all-ai-launcher
|
|
18
|
+
|
|
19
|
+
# Check binary accessibility
|
|
20
|
+
which claude-all
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## 🔧 Configuration
|
|
24
|
+
|
|
25
|
+
### Initial Setup
|
|
26
|
+
```bash
|
|
27
|
+
# Interactive configuration wizard
|
|
28
|
+
npm run config
|
|
29
|
+
|
|
30
|
+
# Or show current configuration
|
|
31
|
+
npm run config show
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### API Keys Setup
|
|
35
|
+
Configure your preferred AI providers during setup:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# MiniMax (Recommended default)
|
|
39
|
+
export MINIMAX_API_KEY="your-api-key-here"
|
|
40
|
+
|
|
41
|
+
# OpenAI
|
|
42
|
+
export OPENAI_API_KEY="your-openai-key"
|
|
43
|
+
|
|
44
|
+
# Google Gemini
|
|
45
|
+
export GOOGLE_GENAI_API_KEY="your-gemini-key"
|
|
46
|
+
|
|
47
|
+
# Groq
|
|
48
|
+
export GROQ_API_KEY="your-groq-key"
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## 🎯 Available Commands
|
|
52
|
+
|
|
53
|
+
### Main Commands
|
|
54
|
+
```bash
|
|
55
|
+
# Launch AI chat
|
|
56
|
+
claude-all
|
|
57
|
+
|
|
58
|
+
# Alternative launchers
|
|
59
|
+
ai-chat
|
|
60
|
+
claude-launcher
|
|
61
|
+
|
|
62
|
+
# NPM script runners
|
|
63
|
+
npm run claude # Launch Claude-All
|
|
64
|
+
npm run config # Configure providers
|
|
65
|
+
npm run switch # Switch AI provider
|
|
66
|
+
npm run status # Show current status
|
|
67
|
+
npm run help # Show help menu
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Utility Commands
|
|
71
|
+
```bash
|
|
72
|
+
npm run test # Test installation
|
|
73
|
+
npm run doctor # System diagnostic
|
|
74
|
+
npm run update # Update package
|
|
75
|
+
npm run uninstall # Remove package
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## 🔍 Troubleshooting
|
|
79
|
+
|
|
80
|
+
### Package Not Found
|
|
81
|
+
```bash
|
|
82
|
+
# Make sure spelling is correct
|
|
83
|
+
npm install -g claude-all-ai-launcher
|
|
84
|
+
|
|
85
|
+
# NOT: claude-all-ai-launche (missing 'r')
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### Command Not Found
|
|
89
|
+
```bash
|
|
90
|
+
# Check npm global bin directory
|
|
91
|
+
npm config get prefix
|
|
92
|
+
|
|
93
|
+
# Add to PATH (Linux/macOS)
|
|
94
|
+
export PATH="$(npm config get prefix)/bin:$PATH"
|
|
95
|
+
|
|
96
|
+
# Add to ~/.bashrc or ~/.zshrc for persistence
|
|
97
|
+
echo 'export PATH="$(npm config get prefix)/bin:$PATH"' >> ~/.bashrc
|
|
98
|
+
source ~/.bashrc
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### Permission Issues
|
|
102
|
+
```bash
|
|
103
|
+
# Linux/macOS: Use sudo
|
|
104
|
+
sudo npm install -g claude-all-ai-launcher
|
|
105
|
+
|
|
106
|
+
# Or configure npm global directory without sudo
|
|
107
|
+
mkdir ~/.npm-global
|
|
108
|
+
npm config set prefix '~/.npm-global'
|
|
109
|
+
export PATH=~/.npm-global/bin:$PATH
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### Clean Installation
|
|
113
|
+
```bash
|
|
114
|
+
# Remove completely
|
|
115
|
+
npm uninstall -g claude-all-ai-launcher
|
|
116
|
+
npm cache clean --force
|
|
117
|
+
|
|
118
|
+
# Reinstall fresh
|
|
119
|
+
npm install -g claude-all-ai-launcher
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
## 📊 Package Information
|
|
123
|
+
|
|
124
|
+
- **Name**: `claude-all-ai-launcher`
|
|
125
|
+
- **Version**: 8.1.1
|
|
126
|
+
- **License**: MIT
|
|
127
|
+
- **Node.js Required**: >=14.0.0
|
|
128
|
+
- **Platform**: Cross-platform (Linux, macOS, Windows, Termux, FreeBSD, SunOS)
|
|
129
|
+
|
|
130
|
+
## 🌐 Provider Support
|
|
131
|
+
|
|
132
|
+
### Supported AI Providers
|
|
133
|
+
- **MiniMax** - Chinese AI models
|
|
134
|
+
- **Google Gemini** - Multimodal AI
|
|
135
|
+
- **OpenAI** - GPT-4, GPT-3.5 Turbo
|
|
136
|
+
- **Groq** - Ultra-fast inference
|
|
137
|
+
- **Ollama** - Local LLM hosting
|
|
138
|
+
- **xAI/Grok** - xAI models
|
|
139
|
+
- **ZhipuAI/GLM** - GLM series
|
|
140
|
+
- **Custom APIs** - Any REST endpoint
|
|
141
|
+
|
|
142
|
+
### Switching Providers
|
|
143
|
+
```bash
|
|
144
|
+
# Interactive provider switch
|
|
145
|
+
npm run switch
|
|
146
|
+
|
|
147
|
+
# Direct provider specification
|
|
148
|
+
claude-all --provider minimax
|
|
149
|
+
claude-all --provider gemini
|
|
150
|
+
claude-all --provider openai
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
## 🔗 Links
|
|
154
|
+
|
|
155
|
+
- **[NPM Package Page](https://www.npmjs.com/package/claude-all-ai-launcher)**
|
|
156
|
+
- **[GitHub Repository](https://github.com/zesbe/ClaudeAll)**
|
|
157
|
+
- **[Related: TMUX & Byobu Enhanced](https://www.npmjs.com/package/tmux-byobu-enhanced)**
|
|
158
|
+
|
|
159
|
+
## 🆘 Support
|
|
160
|
+
|
|
161
|
+
If you encounter issues:
|
|
162
|
+
|
|
163
|
+
1. Check the [troubleshooting section](../README.md#-troubleshooting)
|
|
164
|
+
2. Run `npm run doctor` for system diagnostic
|
|
165
|
+
3. [Report an issue](https://github.com/zesbe/ClaudeAll/issues)
|
|
166
|
+
4. [Join the discussion](https://github.com/zesbe/ClaudeAll/discussions)
|
package/hooks/hooks.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
: << 'CMDBLOCK'
|
|
2
|
+
@echo off
|
|
3
|
+
REM Polyglot wrapper: runs .sh scripts cross-platform
|
|
4
|
+
REM Usage: run-hook.cmd <script-name> [args...]
|
|
5
|
+
REM The script should be in the same directory as this wrapper
|
|
6
|
+
|
|
7
|
+
if "%~1"=="" (
|
|
8
|
+
echo run-hook.cmd: missing script name >&2
|
|
9
|
+
exit /b 1
|
|
10
|
+
)
|
|
11
|
+
"C:\Program Files\Git\bin\bash.exe" -l "%~dp0%~1" %2 %3 %4 %5 %6 %7 %8 %9
|
|
12
|
+
exit /b
|
|
13
|
+
CMDBLOCK
|
|
14
|
+
|
|
15
|
+
# Unix shell runs from here
|
|
16
|
+
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
17
|
+
SCRIPT_NAME="$1"
|
|
18
|
+
shift
|
|
19
|
+
"${SCRIPT_DIR}/${SCRIPT_NAME}" "$@"
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
# SessionStart hook for superpowers plugin
|
|
3
|
+
|
|
4
|
+
set -euo pipefail
|
|
5
|
+
|
|
6
|
+
# Determine plugin root directory
|
|
7
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]:-$0}")" && pwd)"
|
|
8
|
+
PLUGIN_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
|
9
|
+
|
|
10
|
+
# Check if legacy skills directory exists and build warning
|
|
11
|
+
warning_message=""
|
|
12
|
+
legacy_skills_dir="${HOME}/.config/superpowers/skills"
|
|
13
|
+
if [ -d "$legacy_skills_dir" ]; then
|
|
14
|
+
warning_message="\n\n<important-reminder>IN YOUR FIRST REPLY AFTER SEEING THIS MESSAGE YOU MUST TELL THE USER:⚠️ **WARNING:** Superpowers now uses Claude Code's skills system. Custom skills in ~/.config/superpowers/skills will not be read. Move custom skills to ~/.claude/skills instead. To make this message go away, remove ~/.config/superpowers/skills</important-reminder>"
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
# Read using-superpowers content
|
|
18
|
+
using_superpowers_content=$(cat "${PLUGIN_ROOT}/skills/using-superpowers/SKILL.md" 2>&1 || echo "Error reading using-superpowers skill")
|
|
19
|
+
|
|
20
|
+
# Escape outputs for JSON using pure bash
|
|
21
|
+
escape_for_json() {
|
|
22
|
+
local input="$1"
|
|
23
|
+
local output=""
|
|
24
|
+
local i char
|
|
25
|
+
for (( i=0; i<${#input}; i++ )); do
|
|
26
|
+
char="${input:$i:1}"
|
|
27
|
+
case "$char" in
|
|
28
|
+
$'\\') output+='\\' ;;
|
|
29
|
+
'"') output+='\"' ;;
|
|
30
|
+
$'\n') output+='\n' ;;
|
|
31
|
+
$'\r') output+='\r' ;;
|
|
32
|
+
$'\t') output+='\t' ;;
|
|
33
|
+
*) output+="$char" ;;
|
|
34
|
+
esac
|
|
35
|
+
done
|
|
36
|
+
printf '%s' "$output"
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
using_superpowers_escaped=$(escape_for_json "$using_superpowers_content")
|
|
40
|
+
warning_escaped=$(escape_for_json "$warning_message")
|
|
41
|
+
|
|
42
|
+
# Output context injection as JSON
|
|
43
|
+
cat <<EOF
|
|
44
|
+
{
|
|
45
|
+
"hookSpecificOutput": {
|
|
46
|
+
"hookEventName": "SessionStart",
|
|
47
|
+
"additionalContext": "<EXTREMELY_IMPORTANT>\nYou have superpowers.\n\n**Below is the full content of your 'superpowers:using-superpowers' skill - your introduction to using skills. For all other skills, use the 'Skill' tool:**\n\n${using_superpowers_escaped}\n\n${warning_escaped}\n</EXTREMELY_IMPORTANT>"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
EOF
|
|
51
|
+
|
|
52
|
+
exit 0
|
package/install.sh
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# ClaudeAll - One-Command Installer
|
|
3
|
+
# Install semua konfigurasi Claude Code otomatis
|
|
4
|
+
#
|
|
5
|
+
# Usage:
|
|
6
|
+
# curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash
|
|
7
|
+
# atau
|
|
8
|
+
# ./install.sh
|
|
9
|
+
|
|
10
|
+
set -e
|
|
11
|
+
|
|
12
|
+
echo "╔════════════════════════════════════════════════════════════╗"
|
|
13
|
+
echo "║ 🤖 ClaudeAll - Complete Claude Code Setup ║"
|
|
14
|
+
echo "║ Version: 2.0 ║"
|
|
15
|
+
echo "╚════════════════════════════════════════════════════════════╝"
|
|
16
|
+
echo ""
|
|
17
|
+
|
|
18
|
+
# Colors
|
|
19
|
+
RED='\033[0;31m'
|
|
20
|
+
GREEN='\033[0;32m'
|
|
21
|
+
YELLOW='\033[1;33m'
|
|
22
|
+
NC='\033[0m'
|
|
23
|
+
|
|
24
|
+
# Detect platform
|
|
25
|
+
if [ -n "$TERMUX_VERSION" ]; then
|
|
26
|
+
PLATFORM="termux"
|
|
27
|
+
HOME_DIR="$HOME"
|
|
28
|
+
echo -e "${GREEN}✅ Platform: Termux/Android${NC}"
|
|
29
|
+
else
|
|
30
|
+
PLATFORM="linux"
|
|
31
|
+
HOME_DIR="$HOME"
|
|
32
|
+
echo -e "${GREEN}✅ Platform: Linux${NC}"
|
|
33
|
+
fi
|
|
34
|
+
|
|
35
|
+
# Check Claude Code
|
|
36
|
+
if ! command -v claude &> /dev/null; then
|
|
37
|
+
echo -e "${RED}❌ Claude Code belum terinstall!${NC}"
|
|
38
|
+
echo ""
|
|
39
|
+
echo "Install dulu:"
|
|
40
|
+
echo " npm install -g @anthropic-ai/claude-code"
|
|
41
|
+
exit 1
|
|
42
|
+
fi
|
|
43
|
+
echo -e "${GREEN}✅ Claude Code detected${NC}"
|
|
44
|
+
|
|
45
|
+
# Clone/update repo
|
|
46
|
+
REPO_DIR="$HOME_DIR/.claude-all-config"
|
|
47
|
+
REPO_URL="https://github.com/zesbe/ClaudeAll.git"
|
|
48
|
+
|
|
49
|
+
if [ -d "$REPO_DIR" ]; then
|
|
50
|
+
echo "📥 Updating existing config..."
|
|
51
|
+
cd "$REPO_DIR"
|
|
52
|
+
git pull origin main 2>/dev/null || git pull
|
|
53
|
+
else
|
|
54
|
+
echo "📥 Cloning ClaudeAll..."
|
|
55
|
+
git clone "$REPO_URL" "$REPO_DIR"
|
|
56
|
+
cd "$REPO_DIR"
|
|
57
|
+
fi
|
|
58
|
+
echo ""
|
|
59
|
+
|
|
60
|
+
# Create directories
|
|
61
|
+
echo "📁 Creating directories..."
|
|
62
|
+
mkdir -p "$HOME_DIR/.claude/agents"
|
|
63
|
+
mkdir -p "$HOME_DIR/.claude/skills"
|
|
64
|
+
mkdir -p "$HOME_DIR/.claude/commands"
|
|
65
|
+
mkdir -p "$HOME_DIR/.claude/hooks"
|
|
66
|
+
mkdir -p "$HOME_DIR/.claude/plugins"
|
|
67
|
+
|
|
68
|
+
# Copy agents
|
|
69
|
+
echo "🤖 Installing agents..."
|
|
70
|
+
cp -r "$REPO_DIR/agents/"* "$HOME_DIR/.claude/agents/" 2>/dev/null || true
|
|
71
|
+
AGENT_COUNT=$(ls -1 "$HOME_DIR/.claude/agents/"*.md 2>/dev/null | wc -l)
|
|
72
|
+
echo -e " ${GREEN}✅ $AGENT_COUNT agents installed${NC}"
|
|
73
|
+
|
|
74
|
+
# Copy skills
|
|
75
|
+
echo "⚡ Installing skills..."
|
|
76
|
+
cp -r "$REPO_DIR/skills/"* "$HOME_DIR/.claude/skills/" 2>/dev/null || true
|
|
77
|
+
SKILL_COUNT=$(ls -1d "$HOME_DIR/.claude/skills/"*/ 2>/dev/null | wc -l)
|
|
78
|
+
echo -e " ${GREEN}✅ $SKILL_COUNT skills installed${NC}"
|
|
79
|
+
|
|
80
|
+
# Copy commands
|
|
81
|
+
echo "📝 Installing commands..."
|
|
82
|
+
cp -r "$REPO_DIR/commands/"* "$HOME_DIR/.claude/commands/" 2>/dev/null || true
|
|
83
|
+
CMD_COUNT=$(ls -1 "$HOME_DIR/.claude/commands/"*.md 2>/dev/null | wc -l)
|
|
84
|
+
echo -e " ${GREEN}✅ $CMD_COUNT commands installed${NC}"
|
|
85
|
+
|
|
86
|
+
# Copy hooks
|
|
87
|
+
echo "🔗 Installing hooks..."
|
|
88
|
+
cp -r "$REPO_DIR/hooks/"* "$HOME_DIR/.claude/hooks/" 2>/dev/null || true
|
|
89
|
+
chmod +x "$HOME_DIR/.claude/hooks/"*.sh 2>/dev/null || true
|
|
90
|
+
echo -e " ${GREEN}✅ Hooks installed${NC}"
|
|
91
|
+
|
|
92
|
+
# Copy plugins config
|
|
93
|
+
echo "🔌 Installing plugins..."
|
|
94
|
+
cp "$REPO_DIR/plugins/installed_plugins.json" "$HOME_DIR/.claude/plugins/" 2>/dev/null || true
|
|
95
|
+
echo -e " ${GREEN}✅ Plugins config installed${NC}"
|
|
96
|
+
|
|
97
|
+
# Copy MCP config
|
|
98
|
+
echo "🔧 Installing MCP config..."
|
|
99
|
+
cp "$REPO_DIR/mcp.json" "$HOME_DIR/.mcp.json" 2>/dev/null || true
|
|
100
|
+
chmod 600 "$HOME_DIR/.mcp.json" 2>/dev/null || true
|
|
101
|
+
echo -e " ${GREEN}✅ MCP servers configured (6 servers)${NC}"
|
|
102
|
+
|
|
103
|
+
# Setup settings.local.json
|
|
104
|
+
echo "⚙️ Configuring settings..."
|
|
105
|
+
cat > "$HOME_DIR/.claude/settings.local.json" << 'EOF'
|
|
106
|
+
{
|
|
107
|
+
"permissions": {
|
|
108
|
+
"allow": [
|
|
109
|
+
"Bash(*)",
|
|
110
|
+
"Read(*)",
|
|
111
|
+
"Write(*)",
|
|
112
|
+
"Edit(*)",
|
|
113
|
+
"Glob(*)",
|
|
114
|
+
"Grep(*)",
|
|
115
|
+
"WebFetch(*)",
|
|
116
|
+
"WebSearch(*)",
|
|
117
|
+
"TodoWrite(*)",
|
|
118
|
+
"NotebookEdit(*)",
|
|
119
|
+
"mcp__*"
|
|
120
|
+
],
|
|
121
|
+
"deny": []
|
|
122
|
+
},
|
|
123
|
+
"agent": "proactive-mode"
|
|
124
|
+
}
|
|
125
|
+
EOF
|
|
126
|
+
echo -e " ${GREEN}✅ Bypass permissions enabled${NC}"
|
|
127
|
+
echo -e " ${GREEN}✅ Default agent: proactive-mode${NC}"
|
|
128
|
+
|
|
129
|
+
# Install MCP packages
|
|
130
|
+
echo ""
|
|
131
|
+
echo "📦 Installing MCP packages..."
|
|
132
|
+
npm install -g @upstash/context7-mcp @modelcontextprotocol/server-sequential-thinking exa-mcp-server @modelcontextprotocol/server-memory @modelcontextprotocol/server-filesystem @kazuph/mcp-fetch 2>/dev/null || {
|
|
133
|
+
echo -e "${YELLOW}⚠️ Some MCP packages may need manual install${NC}"
|
|
134
|
+
}
|
|
135
|
+
echo -e "${GREEN}✅ MCP packages installed${NC}"
|
|
136
|
+
|
|
137
|
+
echo ""
|
|
138
|
+
echo "╔════════════════════════════════════════════════════════════╗"
|
|
139
|
+
echo "║ ✅ Installation Complete! ║"
|
|
140
|
+
echo "╚════════════════════════════════════════════════════════════╝"
|
|
141
|
+
echo ""
|
|
142
|
+
echo "📋 Installed:"
|
|
143
|
+
echo " • $AGENT_COUNT agents (proactive-mode, code-reviewer, etc)"
|
|
144
|
+
echo " • $SKILL_COUNT skills (api-development, testing, etc)"
|
|
145
|
+
echo " • $CMD_COUNT commands (brainstorm, write-plan, execute-plan)"
|
|
146
|
+
echo " • 6 MCP servers (context7, exa, memory, filesystem, etc)"
|
|
147
|
+
echo " • Bypass permissions enabled"
|
|
148
|
+
echo ""
|
|
149
|
+
echo "🚀 Next steps:"
|
|
150
|
+
echo " 1. Restart Claude: exit && claude"
|
|
151
|
+
echo " 2. Test: /mcp (should show Connected)"
|
|
152
|
+
echo ""
|
|
153
|
+
echo "🔄 To update later:"
|
|
154
|
+
echo " curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash"
|
|
155
|
+
echo ""
|
package/mcp.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"context7": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@upstash/context7-mcp"],
|
|
6
|
+
"env": {
|
|
7
|
+
"CONTEXT7_API_KEY": "ctx7sk-dfdd3d92-65fd-4e1d-bd1c-1bee51cbacf0"
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"sequential-thinking": {
|
|
11
|
+
"command": "npx",
|
|
12
|
+
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
|
|
13
|
+
},
|
|
14
|
+
"exa": {
|
|
15
|
+
"command": "npx",
|
|
16
|
+
"args": ["-y", "exa-mcp-server"],
|
|
17
|
+
"env": {
|
|
18
|
+
"EXA_API_KEY": "8bab0085-90d5-4767-911d-6fd2f5caf6eb"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"memory": {
|
|
22
|
+
"command": "npx",
|
|
23
|
+
"args": ["-y", "@modelcontextprotocol/server-memory"]
|
|
24
|
+
},
|
|
25
|
+
"filesystem": {
|
|
26
|
+
"command": "npx",
|
|
27
|
+
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/"]
|
|
28
|
+
},
|
|
29
|
+
"fetch": {
|
|
30
|
+
"command": "npx",
|
|
31
|
+
"args": ["-y", "@wordbricks/fetch-mcp@latest"]
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"provider_name": "Perplexity AI",
|
|
3
|
+
"description": "Search-powered AI with real-time web search",
|
|
4
|
+
"api_key": "SET_YOUR_PERPLEXITY_API_KEY_HERE",
|
|
5
|
+
"api_base": "https://api.perplexity.ai/",
|
|
6
|
+
"model": "sonar-pro",
|
|
7
|
+
"notes": "✅ API key tested successfully! Use model: perplexity/sonar-pro",
|
|
8
|
+
"test_date": "2025-12-14",
|
|
9
|
+
"test_result": "SUCCESS - Working via direct API call",
|
|
10
|
+
"available_models": ["sonar", "sonar-pro", "sonar-reasoning", "sonar-reasoning-pro", "sonar-deep-research"],
|
|
11
|
+
"usage": "Enter: perplexity/sonar-pro in custom model option"
|
|
12
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-all-config",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "🤖 Complete Claude Code Configuration - Agents, Skills, Commands, MCP Servers, Hooks - One command install",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"claude-all": "./claude-all",
|
|
8
|
+
"claude-all-update": "./update.sh"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"postinstall": "node postinstall.js || bash install.sh",
|
|
12
|
+
"install-claude": "bash install.sh",
|
|
13
|
+
"update": "bash update.sh"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"claude",
|
|
17
|
+
"claude-code",
|
|
18
|
+
"ai",
|
|
19
|
+
"cli",
|
|
20
|
+
"mcp",
|
|
21
|
+
"agents",
|
|
22
|
+
"skills",
|
|
23
|
+
"anthropic",
|
|
24
|
+
"config",
|
|
25
|
+
"automation"
|
|
26
|
+
],
|
|
27
|
+
"author": {
|
|
28
|
+
"name": "zesbe",
|
|
29
|
+
"email": "yudiharyanto41@gmail.com",
|
|
30
|
+
"url": "https://github.com/zesbe"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/zesbe/ClaudeAll.git"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/zesbe/ClaudeAll#readme",
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/zesbe/ClaudeAll/issues"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=14.0.0"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"agents/",
|
|
46
|
+
"skills/",
|
|
47
|
+
"commands/",
|
|
48
|
+
"hooks/",
|
|
49
|
+
"plugins/",
|
|
50
|
+
"bin/",
|
|
51
|
+
"utils/",
|
|
52
|
+
"model/",
|
|
53
|
+
"claude-suite/",
|
|
54
|
+
"scripts/",
|
|
55
|
+
"docs/",
|
|
56
|
+
"mcp.json",
|
|
57
|
+
"claude-config.json",
|
|
58
|
+
"claude-all",
|
|
59
|
+
"install.sh",
|
|
60
|
+
"update.sh",
|
|
61
|
+
"postinstall.js",
|
|
62
|
+
"README.md",
|
|
63
|
+
"LICENSE",
|
|
64
|
+
"VERSION"
|
|
65
|
+
],
|
|
66
|
+
"preferGlobal": true,
|
|
67
|
+
"dependencies": {},
|
|
68
|
+
"devDependencies": {}
|
|
69
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Claude Plugins Configuration
|
|
2
|
+
|
|
3
|
+
This directory contains plugin configuration backups from Claude Code.
|
|
4
|
+
|
|
5
|
+
## Files
|
|
6
|
+
|
|
7
|
+
### `installed_plugins.json`
|
|
8
|
+
Complete list of installed plugins with their metadata and configurations.
|
|
9
|
+
|
|
10
|
+
**Contains 25 Active Plugins:**
|
|
11
|
+
- Security & Code Review: security-guidance, code-review, pr-review-toolkit
|
|
12
|
+
- Frontend: frontend-design
|
|
13
|
+
- Git: github, commit-commands
|
|
14
|
+
- Project Management: atlassian, linear, asana, serena
|
|
15
|
+
- AI & Development: agent-sdk-dev, feature-dev, ralph-loop
|
|
16
|
+
- Plugin Dev: plugin-dev, hookify
|
|
17
|
+
- Code Analysis: greptile
|
|
18
|
+
- Output Styles: explanatory-output-style, learning-output-style
|
|
19
|
+
- LSP: typescript-lsp, swift-lsp, gopls-lsp, lua-lsp
|
|
20
|
+
- Monitoring: sentry, pinecone
|
|
21
|
+
|
|
22
|
+
### `known_marketplaces.json`
|
|
23
|
+
List of known plugin marketplaces.
|
|
24
|
+
|
|
25
|
+
### `marketplace-info/`
|
|
26
|
+
Information about official plugin marketplace.
|
|
27
|
+
|
|
28
|
+
## Removed Plugins (Incompatible with Termux/Android)
|
|
29
|
+
|
|
30
|
+
- ❌ **playwright** - Browser automation (needs browser binaries)
|
|
31
|
+
- ❌ **firebase** - Firebase tools (dependency conflicts)
|
|
32
|
+
|
|
33
|
+
## Usage
|
|
34
|
+
|
|
35
|
+
To restore plugins on another machine:
|
|
36
|
+
1. Copy `installed_plugins.json` to `~/.claude/plugins/`
|
|
37
|
+
2. Copy `known_marketplaces.json` to `~/.claude/plugins/`
|
|
38
|
+
3. Restart Claude Code
|
|
39
|
+
|
|
40
|
+
## API Keys & MCP Servers
|
|
41
|
+
|
|
42
|
+
For MCP server configurations, see `../mcp.json` and `../claude-config.json`.
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
**Generated:** 2025-01-07
|
|
46
|
+
**Platform:** Termux/Android
|
|
47
|
+
**Claude Code Version:** 2.0.76
|