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,73 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
# Provider Switch Script for Claude-All-New
|
|
4
|
+
# Usage: ./switch-provider.sh
|
|
5
|
+
|
|
6
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
7
|
+
|
|
8
|
+
# Colors
|
|
9
|
+
GREEN='\033[0;32m'
|
|
10
|
+
BLUE='\033[0;34m'
|
|
11
|
+
YELLOW='\033[1;33m'
|
|
12
|
+
NC='\033[0m'
|
|
13
|
+
|
|
14
|
+
echo -e "${YELLOW}=== Switch Provider (Continue Chat) ===${NC}"
|
|
15
|
+
echo "Your current chat context will be preserved."
|
|
16
|
+
echo ""
|
|
17
|
+
|
|
18
|
+
# Show available providers for switching
|
|
19
|
+
echo "Available providers:"
|
|
20
|
+
echo "1) MiniMax"
|
|
21
|
+
echo "2) Google Gemini (API Key)"
|
|
22
|
+
echo "3) Google Gemini (OAuth)"
|
|
23
|
+
echo "4) OpenAI"
|
|
24
|
+
echo "5) OpenAI (OAuth)"
|
|
25
|
+
echo "6) xAI / Grok"
|
|
26
|
+
echo "7) ZhipuAI / GLM"
|
|
27
|
+
echo "8) Groq"
|
|
28
|
+
echo "9) Perplexity"
|
|
29
|
+
echo "10) Cohere"
|
|
30
|
+
echo "11) DeepSeek"
|
|
31
|
+
echo "12) Mistral"
|
|
32
|
+
echo "13) Moonshot"
|
|
33
|
+
echo "14) Qwen"
|
|
34
|
+
echo "15) OpenRouter"
|
|
35
|
+
echo "16) Ollama (Local)"
|
|
36
|
+
echo "0) Cancel"
|
|
37
|
+
echo ""
|
|
38
|
+
|
|
39
|
+
read -p "Choose new provider [0-16]: " switch_choice
|
|
40
|
+
|
|
41
|
+
# Save context before switching
|
|
42
|
+
context_file="/tmp/claude_chat_context.txt"
|
|
43
|
+
if [[ -t 0 ]]; then
|
|
44
|
+
echo "# Chat context saved at $(date)" > "$context_file"
|
|
45
|
+
echo "# Current conversation:" >> "$context_file"
|
|
46
|
+
echo "Use this context to continue the conversation with a new provider." >> "$context_file"
|
|
47
|
+
echo "" >> "$context_file"
|
|
48
|
+
fi
|
|
49
|
+
|
|
50
|
+
case $switch_choice in
|
|
51
|
+
0) echo "Cancelled provider switch."; exit 0 ;;
|
|
52
|
+
1) exec "$SCRIPT_DIR/claude-all" 1 ;;
|
|
53
|
+
2) exec "$SCRIPT_DIR/claude-all" 2 ;;
|
|
54
|
+
3) exec "$SCRIPT_DIR/claude-all" 3 ;;
|
|
55
|
+
4) exec "$SCRIPT_DIR/claude-all" 4 ;;
|
|
56
|
+
5) exec "$SCRIPT_DIR/claude-all" 5 ;;
|
|
57
|
+
6) exec "$SCRIPT_DIR/claude-all" 6 ;;
|
|
58
|
+
7) exec "$SCRIPT_DIR/claude-all" 7 ;;
|
|
59
|
+
8) exec "$SCRIPT_DIR/claude-all" 8 ;;
|
|
60
|
+
9) exec "$SCRIPT_DIR/claude-all" 9 ;;
|
|
61
|
+
10) exec "$SCRIPT_DIR/claude-all" 10 ;;
|
|
62
|
+
11) exec "$SCRIPT_DIR/claude-all" 11 ;;
|
|
63
|
+
12) exec "$SCRIPT_DIR/claude-all" 12 ;;
|
|
64
|
+
13) exec "$SCRIPT_DIR/claude-all" 13 ;;
|
|
65
|
+
14) exec "$SCRIPT_DIR/claude-all" 14 ;;
|
|
66
|
+
15) exec "$SCRIPT_DIR/claude-all" 15 ;;
|
|
67
|
+
16) exec "$SCRIPT_DIR/claude-all" 16 ;;
|
|
68
|
+
*) echo "Invalid choice."; exit 1 ;;
|
|
69
|
+
esac
|
|
70
|
+
|
|
71
|
+
echo -e "${GREEN}✓ Provider switched successfully!${NC}"
|
|
72
|
+
echo -e "${BLUE}Note: Chat context has been saved to /tmp/claude_chat_context.txt${NC}"
|
|
73
|
+
echo -e "${BLUE}You can reference previous messages in your next prompt.${NC}"
|
package/bin/test.json
ADDED
package/bin/xai.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "xAI Grok",
|
|
3
|
+
"description": "xAI Grok Models - API Key from https://console.x.ai/",
|
|
4
|
+
"models": [
|
|
5
|
+
{
|
|
6
|
+
"id": "grok-4-1-fast-reasoning",
|
|
7
|
+
"name": "Grok 4.1 Fast Reasoning",
|
|
8
|
+
"description": "Grok 4.1 with fast reasoning capabilities ✅"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"id": "grok-4-1-fast",
|
|
12
|
+
"name": "Grok 4.1 Fast",
|
|
13
|
+
"description": "Grok 4.1 Fast model (Alias) ✅"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "grok-4-1-fast-reasoning-lates",
|
|
17
|
+
"name": "Grok 4.1 Fast Reasoning (Latest)",
|
|
18
|
+
"description": "Latest Grok 4.1 Fast Reasoning model ✅"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "grok-beta",
|
|
22
|
+
"name": "Grok Beta",
|
|
23
|
+
"description": "Latest Grok model with reasoning capabilities ✅"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "grok-2-mini",
|
|
27
|
+
"name": "Grok 2 Mini",
|
|
28
|
+
"description": "Lightweight Grok model ✅"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "grok-2",
|
|
32
|
+
"name": "Grok 2",
|
|
33
|
+
"description": "Standard Grok 2 model ✅"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "grok-vision-beta",
|
|
37
|
+
"name": "Grok Vision Beta",
|
|
38
|
+
"description": "Grok model with image understanding ✅"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|