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.
Files changed (167) hide show
  1. package/LICENSE +21 -0
  2. package/LICENSE.md +70 -0
  3. package/README.md +133 -0
  4. package/VERSION +1 -0
  5. package/agents/accessibility-reviewer.md +96 -0
  6. package/agents/ai-prompt-optimizer.md +94 -0
  7. package/agents/api-tester.md +102 -0
  8. package/agents/code-generator.md +94 -0
  9. package/agents/code-reviewer.md +47 -0
  10. package/agents/component-generator.md +102 -0
  11. package/agents/doc-generator.md +91 -0
  12. package/agents/migration-generator.md +94 -0
  13. package/agents/performance-analyzer.md +90 -0
  14. package/agents/proactive-mode.md +91 -0
  15. package/agents/readme-generator.md +101 -0
  16. package/agents/security-auditor.md +86 -0
  17. package/agents/terraform-generator.md +94 -0
  18. package/agents/test-generator.md +76 -0
  19. package/bin/agentrouter.json +36 -0
  20. package/bin/ai-chat +20 -0
  21. package/bin/antigravity.json +76 -0
  22. package/bin/api-manager +340 -0
  23. package/bin/claude-launcher +19 -0
  24. package/bin/claude-master +15 -0
  25. package/bin/claude_master.py +295 -0
  26. package/bin/cohere.json +7 -0
  27. package/bin/deepseek.json +44 -0
  28. package/bin/gemini.json +56 -0
  29. package/bin/glm.json +21 -0
  30. package/bin/groq.json +41 -0
  31. package/bin/minimax.json +26 -0
  32. package/bin/mistral.json +7 -0
  33. package/bin/moonshot.json +7 -0
  34. package/bin/ollama.json +36 -0
  35. package/bin/openai.json +46 -0
  36. package/bin/openrouter.json +38 -0
  37. package/bin/perplexity.json +12 -0
  38. package/bin/qwen.json +7 -0
  39. package/bin/switch-provider +73 -0
  40. package/bin/test.json +7 -0
  41. package/bin/xai.json +41 -0
  42. package/claude-all +2707 -0
  43. package/claude-config.json +340 -0
  44. package/claude-suite/REFACTORING_SUMMARY.md +88 -0
  45. package/claude-suite/auth/.antigravity_proxy.py +78 -0
  46. package/claude-suite/auth/__pycache__/openai_auth.cpython-312.pyc +0 -0
  47. package/claude-suite/auth/gemini_auth.py +80 -0
  48. package/claude-suite/auth/openai_auth.py +138 -0
  49. package/claude-suite/backups/claude-all-before-refactor +1075 -0
  50. package/claude-suite/backups/claude-all.backup +840 -0
  51. package/claude-suite/backups/claude-all.original +840 -0
  52. package/claude-suite/models/add-model-manual.sh +588 -0
  53. package/claude-suite/models/add-model.sh +114 -0
  54. package/claude-suite/models/model-switcher.sh +69 -0
  55. package/claude-suite/providers/claude-glm +89 -0
  56. package/claude-suite/providers/claude-glm-wrapper.sh +55 -0
  57. package/claude-suite/providers/claude-minimax +12 -0
  58. package/claude-suite/providers/claude-smart +132 -0
  59. package/claude-suite/providers/xai_chat.sh +56 -0
  60. package/claude-suite/utils/__pycache__/claude_master.cpython-312.pyc +0 -0
  61. package/claude-suite/utils/antigravity_proxy_server.py +168 -0
  62. package/claude-suite/utils/claude-all-help.txt +83 -0
  63. package/claude-suite/utils/claude_master.py +408 -0
  64. package/commands/brainstorm.md +5 -0
  65. package/commands/execute-plan.md +5 -0
  66. package/commands/write-plan.md +5 -0
  67. package/docs/ANTIGRAVITY-SETUP.md +176 -0
  68. package/docs/AUTH_CREDENTIALS.md +54 -0
  69. package/docs/NPM-INSTALLATION.md +166 -0
  70. package/hooks/hooks.json +15 -0
  71. package/hooks/run-hook.cmd +19 -0
  72. package/hooks/session-start.sh +52 -0
  73. package/install.sh +155 -0
  74. package/mcp.json +34 -0
  75. package/model/perplexity.json +12 -0
  76. package/package.json +69 -0
  77. package/plugins/README.md +47 -0
  78. package/plugins/installed_plugins.json +317 -0
  79. package/plugins/known_marketplaces.json +10 -0
  80. package/plugins/marketplace-info/marketplace.json +517 -0
  81. package/postinstall.js +100 -0
  82. package/scripts/antigravity_proxy_server.py +168 -0
  83. package/scripts/get_gemini_api_key.py +96 -0
  84. package/scripts/setup_antigravity_auth.py +171 -0
  85. package/skills/api-development/SKILL.md +11 -0
  86. package/skills/api-development/openapi/api-documentation.yaml +108 -0
  87. package/skills/brainstorming/SKILL.md +54 -0
  88. package/skills/code-quality/SKILL.md +196 -0
  89. package/skills/condition-based-waiting/SKILL.md +120 -0
  90. package/skills/condition-based-waiting/example.ts +158 -0
  91. package/skills/database-development/SKILL.md +11 -0
  92. package/skills/database-development/migrations/migration.template.sql +49 -0
  93. package/skills/defense-in-depth/SKILL.md +127 -0
  94. package/skills/deployment/SKILL.md +11 -0
  95. package/skills/deployment/ci-cd/github-actions.yml +95 -0
  96. package/skills/deployment/docker/Dockerfile.template +39 -0
  97. package/skills/dispatching-parallel-agents/SKILL.md +180 -0
  98. package/skills/documentation-generation/SKILL.md +8 -0
  99. package/skills/documentation-generation/templates/README.template.md +60 -0
  100. package/skills/error-handling/SKILL.md +267 -0
  101. package/skills/executing-plans/SKILL.md +76 -0
  102. package/skills/finishing-a-development-branch/SKILL.md +200 -0
  103. package/skills/frontend-design/frontend-design/SKILL.md +42 -0
  104. package/skills/integration-testing/SKILL.md +13 -0
  105. package/skills/integration-testing/examples/contract-test.py +317 -0
  106. package/skills/integration-testing/examples/e2e-test.js +147 -0
  107. package/skills/integration-testing/examples/test-isolation.md +94 -0
  108. package/skills/logging-monitoring/SKILL.md +66 -0
  109. package/skills/mobile-development/SKILL.md +11 -0
  110. package/skills/mobile-development/responsive/responsive.css +80 -0
  111. package/skills/performance-optimization/SKILL.md +9 -0
  112. package/skills/performance-optimization/profiling/profile.template.js +21 -0
  113. package/skills/receiving-code-review/SKILL.md +209 -0
  114. package/skills/refactoring/SKILL.md +11 -0
  115. package/skills/refactoring/code-smells/common-smells.md +115 -0
  116. package/skills/requesting-code-review/SKILL.md +105 -0
  117. package/skills/requesting-code-review/code-reviewer.md +146 -0
  118. package/skills/root-cause-tracing/SKILL.md +174 -0
  119. package/skills/root-cause-tracing/find-polluter.sh +63 -0
  120. package/skills/security-review/SKILL.md +11 -0
  121. package/skills/security-review/checklists/owasp-checklist.md +31 -0
  122. package/skills/sharing-skills/SKILL.md +194 -0
  123. package/skills/subagent-driven-development/SKILL.md +240 -0
  124. package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
  125. package/skills/subagent-driven-development/implementer-prompt.md +78 -0
  126. package/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  127. package/skills/systematic-debugging/CREATION-LOG.md +119 -0
  128. package/skills/systematic-debugging/SKILL.md +295 -0
  129. package/skills/systematic-debugging/test-academic.md +14 -0
  130. package/skills/systematic-debugging/test-pressure-1.md +58 -0
  131. package/skills/systematic-debugging/test-pressure-2.md +68 -0
  132. package/skills/systematic-debugging/test-pressure-3.md +69 -0
  133. package/skills/test-driven-development/SKILL.md +364 -0
  134. package/skills/testing-anti-patterns/SKILL.md +302 -0
  135. package/skills/testing-skills-with-subagents/SKILL.md +387 -0
  136. package/skills/testing-skills-with-subagents/examples/CLAUDE_MD_TESTING.md +189 -0
  137. package/skills/ui-ux-review/SKILL.md +13 -0
  138. package/skills/ui-ux-review/checklists/ux-heuristics.md +61 -0
  139. package/skills/using-git-worktrees/SKILL.md +213 -0
  140. package/skills/using-superpowers/SKILL.md +101 -0
  141. package/skills/verification-before-completion/SKILL.md +139 -0
  142. package/skills/writing-plans/SKILL.md +116 -0
  143. package/skills/writing-skills/SKILL.md +622 -0
  144. package/skills/writing-skills/anthropic-best-practices.md +1150 -0
  145. package/skills/writing-skills/graphviz-conventions.dot +172 -0
  146. package/skills/writing-skills/persuasion-principles.md +187 -0
  147. package/update.sh +36 -0
  148. package/utils/check-superpowers.sh +114 -0
  149. package/utils/claude-branding.md +166 -0
  150. package/utils/config.js +185 -0
  151. package/utils/custom-claude-config.sh +89 -0
  152. package/utils/custom-claude-hooks.md +129 -0
  153. package/utils/custom-claude-lib.js +222 -0
  154. package/utils/customize-claude-ui.sh +162 -0
  155. package/utils/fix-claude-integration.sh +133 -0
  156. package/utils/help.js +125 -0
  157. package/utils/install-curl.ps1 +135 -0
  158. package/utils/install-curl.sh +525 -0
  159. package/utils/install-superpowers.js +411 -0
  160. package/utils/install.js +298 -0
  161. package/utils/install.sh +182 -0
  162. package/utils/postinstall.js +63 -0
  163. package/utils/rename-claude.sh +96 -0
  164. package/utils/uninstall-superpowers.js +273 -0
  165. package/utils/uninstall.ps1 +136 -0
  166. package/utils/uninstall.sh +163 -0
  167. package/utils/update.sh +160 -0
@@ -0,0 +1,295 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Claude Master Tool - Advanced UI for Claude Code CLI
4
+ Provides enhanced interface with provider switching, history, and more features
5
+ """
6
+
7
+ import os
8
+ import sys
9
+ import json
10
+ import subprocess
11
+ import datetime
12
+ from pathlib import Path
13
+
14
+ class ClaudeMaster:
15
+ def __init__(self):
16
+ self.history_file = Path.home() / '.claude_chat_history.json'
17
+ self.config_file = Path.home() / '.claude_master_config.json'
18
+ self.load_config()
19
+
20
+ def load_config(self):
21
+ """Load configuration from file"""
22
+ try:
23
+ with open(self.config_file, 'r') as f:
24
+ self.config = json.load(f)
25
+ except:
26
+ self.config = {
27
+ 'default_provider': 1,
28
+ 'auto_save_context': True,
29
+ 'show_provider_info': True,
30
+ 'theme': 'default'
31
+ }
32
+
33
+ def save_config(self):
34
+ """Save configuration to file"""
35
+ with open(self.config_file, 'w') as f:
36
+ json.dump(self.config, f, indent=2)
37
+
38
+ def clear_screen(self):
39
+ """Clear terminal screen"""
40
+ os.system('clear' if os.name == 'posix' else 'cls')
41
+
42
+ def show_banner(self):
43
+ """Show application banner"""
44
+ print(f"""
45
+ {'='*60}
46
+ 🤖 Claude Master Tool - Advanced Interface
47
+ {'='*60}
48
+ 📝 Chat History 🔧 Provider Manager ⚙️ Settings
49
+ 🔄 Quick Switch 📊 Usage Stats 💾 Save/Load
50
+ {'='*60}
51
+ """)
52
+
53
+ def show_providers(self):
54
+ """Display available providers with current selection"""
55
+ providers = [
56
+ ("1", "MiniMax", "🚀 Fast & Reliable", True),
57
+ ("2", "Google Gemini (API)", "🧠 Google AI", True),
58
+ ("3", "Google AntiGravity", "⚡ Internal Google", False),
59
+ ("4", "OpenAI", "🤖 GPT Models", True),
60
+ ("5", "OpenAI (OAuth)", "🔄 Auto-auth", False),
61
+ ("6", "xAI / Grok", "🚀 Real-time", True),
62
+ ("7", "ZhipuAI / GLM", "🇨🇳 Chinese AI", True),
63
+ ("8", "Groq", "⚡ Ultra-fast", True),
64
+ ("9", "Perplexity", "🔍 Live Data", True),
65
+ ("10", "Cohere", "📝 Business AI", True),
66
+ ("11", "DeepSeek", "🧠 Reasoning", True),
67
+ ("12", "Ollama", "💻 Self-hosted", True),
68
+ ("13", "Mistral", "🇫🇷 European AI", True),
69
+ ("14", "Moonshot", "🌙 Kawaii AI", True),
70
+ ("15", "Qwen", "🇨🇳 Alibaba", True),
71
+ ("16", "OpenRouter", "🔀 All-in-one", True),
72
+ ]
73
+
74
+ print("\n🤖 Available Providers:")
75
+ print("-" * 60)
76
+
77
+ for num, name, desc, has_key in providers:
78
+ key_status = "✅" if has_key else "❌"
79
+ current = "← CURRENT" if int(num) == self.config['default_provider'] else ""
80
+ print(f" {num}) {name:<20} {desc:<15} {key_status} {current}")
81
+
82
+ print()
83
+
84
+ def show_chat_history(self):
85
+ """Display chat history"""
86
+ if not self.history_file.exists():
87
+ print("\n📝 No chat history found")
88
+ return
89
+
90
+ try:
91
+ with open(self.history_file, 'r') as f:
92
+ history = json.load(f)
93
+
94
+ print("\n📝 Recent Chat History:")
95
+ print("-" * 60)
96
+
97
+ for i, chat in enumerate(history[-5:], 1):
98
+ date = chat.get('date', 'Unknown')
99
+ provider = chat.get('provider', 'Unknown')
100
+ topic = chat.get('topic', 'No topic')
101
+ print(f" {i}) {date} - {provider} - {topic}")
102
+
103
+ except Exception as e:
104
+ print(f"\n❌ Error loading history: {e}")
105
+
106
+ def quick_chat(self):
107
+ """Quick chat with default provider"""
108
+ provider = self.config['default_provider']
109
+ print(f"\n🚀 Starting quick chat with provider {provider}...")
110
+
111
+ # Save to history
112
+ self.add_to_history(provider, "Quick Chat")
113
+
114
+ # Launch claude-all
115
+ subprocess.run(['claude-all', str(provider)])
116
+
117
+ def add_to_history(self, provider, topic):
118
+ """Add chat to history"""
119
+ history = []
120
+
121
+ if self.history_file.exists():
122
+ try:
123
+ with open(self.history_file, 'r') as f:
124
+ history = json.load(f)
125
+ except:
126
+ pass
127
+
128
+ history.append({
129
+ 'date': datetime.datetime.now().strftime('%Y-%m-%d %H:%M'),
130
+ 'provider': f"Provider {provider}",
131
+ 'topic': topic
132
+ })
133
+
134
+ # Keep only last 50 entries
135
+ history = history[-50:]
136
+
137
+ with open(self.history_file, 'w') as f:
138
+ json.dump(history, f, indent=2)
139
+
140
+ def switch_provider(self):
141
+ """Switch default provider"""
142
+ self.show_providers()
143
+
144
+ try:
145
+ choice = input("\n🔄 Select new provider [1-16]: ").strip()
146
+ if choice.isdigit() and 1 <= int(choice) <= 16:
147
+ self.config['default_provider'] = int(choice)
148
+ self.save_config()
149
+ print(f"✅ Default provider set to {choice}")
150
+ else:
151
+ print("❌ Invalid choice")
152
+ except KeyboardInterrupt:
153
+ print("\n✋ Cancelled")
154
+
155
+ def show_settings(self):
156
+ """Display settings menu"""
157
+ print(f"""
158
+ ⚙️ Settings:
159
+ ────────────────────────────────────
160
+ 1) Default Provider: {self.config['default_provider']}
161
+ 2) Auto-save Context: {'✅' if self.config['auto_save_context'] else '❌'}
162
+ 3) Show Provider Info: {'✅' if self.config['show_provider_info'] else '❌'}
163
+ 4) Theme: {self.config['theme']}
164
+ 5) Reset to Defaults
165
+ 6) Back to Main Menu
166
+ """)
167
+
168
+ try:
169
+ choice = input("\nSelect setting [1-6]: ").strip()
170
+
171
+ if choice == '1':
172
+ self.switch_provider()
173
+ elif choice == '2':
174
+ self.config['auto_save_context'] = not self.config['auto_save_context']
175
+ self.save_config()
176
+ print("✅ Auto-save context toggled")
177
+ elif choice == '3':
178
+ self.config['show_provider_info'] = not self.config['show_provider_info']
179
+ self.save_config()
180
+ print("✅ Provider info toggled")
181
+ elif choice == '4':
182
+ themes = ['default', 'dark', 'light']
183
+ print(f"Available themes: {', '.join(themes)}")
184
+ theme = input("Enter theme name: ").strip()
185
+ if theme in themes:
186
+ self.config['theme'] = theme
187
+ self.save_config()
188
+ print(f"✅ Theme set to {theme}")
189
+ elif choice == '5':
190
+ self.config = {
191
+ 'default_provider': 1,
192
+ 'auto_save_context': True,
193
+ 'show_provider_info': True,
194
+ 'theme': 'default'
195
+ }
196
+ self.save_config()
197
+ print("✅ Settings reset to defaults")
198
+
199
+ except KeyboardInterrupt:
200
+ print("\n✋ Cancelled")
201
+
202
+ def show_usage_stats(self):
203
+ """Display usage statistics"""
204
+ if not self.history_file.exists():
205
+ print("\n📊 No usage data available")
206
+ return
207
+
208
+ try:
209
+ with open(self.history_file, 'r') as f:
210
+ history = json.load(f)
211
+
212
+ # Count providers
213
+ provider_count = {}
214
+ for chat in history:
215
+ provider = chat.get('provider', 'Unknown')
216
+ provider_count[provider] = provider_count.get(provider, 0) + 1
217
+
218
+ print("\n📊 Usage Statistics:")
219
+ print("-" * 60)
220
+ print(f"Total Chats: {len(history)}")
221
+ print("\nProvider Usage:")
222
+
223
+ for provider, count in sorted(provider_count.items(), key=lambda x: x[1], reverse=True):
224
+ percentage = (count / len(history)) * 100
225
+ print(f" {provider}: {count} chats ({percentage:.1f}%)")
226
+
227
+ except Exception as e:
228
+ print(f"\n❌ Error loading stats: {e}")
229
+
230
+ def run(self):
231
+ """Main application loop"""
232
+ while True:
233
+ self.clear_screen()
234
+ self.show_banner()
235
+
236
+ # Show current status
237
+ print(f"Current Provider: {self.config['default_provider']} | ", end="")
238
+ print(f"Auto-save: {'✅' if self.config['auto_save_context'] else '❌'} | ", end="")
239
+ print(f"History: {len([1 for _ in []])} chats\n")
240
+
241
+ # Main menu
242
+ print("Options:")
243
+ print(" 1) 🚀 Quick Chat (Default Provider)")
244
+ print(" 2) 🔄 Switch Provider")
245
+ print(" 3) 📝 View Chat History")
246
+ print(" 4) ⚙️ Settings")
247
+ print(" 5) 📊 Usage Statistics")
248
+ print(" 6) 💾 Save Current Context")
249
+ print(" 7) 🗑️ Clear History")
250
+ print(" 8) ❌ Exit")
251
+ print()
252
+
253
+ try:
254
+ choice = input("Select option [1-8]: ").strip()
255
+
256
+ if choice == '1':
257
+ self.quick_chat()
258
+ elif choice == '2':
259
+ self.switch_provider()
260
+ input("\nPress Enter to continue...")
261
+ elif choice == '3':
262
+ self.show_chat_history()
263
+ input("\nPress Enter to continue...")
264
+ elif choice == '4':
265
+ self.show_settings()
266
+ input("\nPress Enter to continue...")
267
+ elif choice == '5':
268
+ self.show_usage_stats()
269
+ input("\nPress Enter to continue...")
270
+ elif choice == '6':
271
+ context = input("Enter context to save: ")
272
+ with open(Path.home() / 'claude_chat_context.txt', 'w') as f:
273
+ f.write(f"# Context saved at {datetime.datetime.now()}\n")
274
+ f.write(context + "\n")
275
+ print("✅ Context saved!")
276
+ input("\nPress Enter to continue...")
277
+ elif choice == '7':
278
+ if self.history_file.exists():
279
+ self.history_file.unlink()
280
+ print("✅ History cleared!")
281
+ input("\nPress Enter to continue...")
282
+ elif choice == '8' or choice.lower() == 'q':
283
+ print("\n👋 Goodbye!")
284
+ sys.exit(0)
285
+ else:
286
+ print("\n❌ Invalid choice")
287
+ input("Press Enter to continue...")
288
+
289
+ except KeyboardInterrupt:
290
+ print("\n\n👋 Goodbye!")
291
+ sys.exit(0)
292
+
293
+ if __name__ == "__main__":
294
+ app = ClaudeMaster()
295
+ app.run()
@@ -0,0 +1,7 @@
1
+ {
2
+ "provider_name": "Cohere",
3
+ "description": "Enterprise AI models",
4
+ "api_key": "xxxxxxxx",
5
+ "api_base": "https://api.cohere.ai/",
6
+ "model": "command-r-plus"
7
+ }
@@ -0,0 +1,44 @@
1
+ {
2
+ "provider_name": "DeepSeek",
3
+ "description": "DeepSeek V3.2 - Anthropic Compatible API",
4
+ "api_base": "https://api.deepseek.com/anthropic",
5
+ "models": [
6
+ {
7
+ "id": "deepseek-chat",
8
+ "name": "DeepSeek Chat V3.2",
9
+ "description": "Non-Thinking Mode - Fast & Efficient general purpose model",
10
+ "context_length": 131072,
11
+ "max_output": 8192,
12
+ "features": ["json_output", "tool_calls", "fim_completion"]
13
+ },
14
+ {
15
+ "id": "deepseek-reasoner",
16
+ "name": "DeepSeek Reasoner V3.2",
17
+ "description": "Thinking Mode - Deep analysis with chain-of-thought reasoning",
18
+ "context_length": 131072,
19
+ "max_output": 65536,
20
+ "features": ["json_output", "tool_calls", "thinking_blocks"]
21
+ }
22
+ ],
23
+ "default_model": "deepseek-chat",
24
+ "api_key_env": "DEEPSEEK_API_KEY",
25
+ "api_key_file": "~/.deepseek_api_key",
26
+ "api_key_url": "https://platform.deepseek.com/",
27
+ "supported_parameters": [
28
+ "max_tokens",
29
+ "stop_sequences",
30
+ "stream",
31
+ "system",
32
+ "temperature",
33
+ "top_p"
34
+ ],
35
+ "temperature_range": {
36
+ "min": 0.0,
37
+ "max": 2.0
38
+ },
39
+ "notes": {
40
+ "endpoint": "Uses Anthropic-compatible API at /anthropic endpoint",
41
+ "model_mapping": "Unsupported model names auto-map to deepseek-chat",
42
+ "not_supported": ["image", "document", "search_result"]
43
+ }
44
+ }
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "Google Gemini",
3
+ "description": "Google Gemini AI Models",
4
+ "models": [
5
+ {
6
+ "id": "gemini-2.5-flash",
7
+ "name": "Gemini 2.5 Flash",
8
+ "description": "Latest generation model, ultra-fast response"
9
+ },
10
+ {
11
+ "id": "gemini-2.5-pro",
12
+ "name": "Gemini 2.5 Pro",
13
+ "description": "Enhanced capabilities model"
14
+ },
15
+ {
16
+ "id": "gemini-2.0-flash-exp",
17
+ "name": "Gemini 2.0 Flash Experimental",
18
+ "description": "Latest experimental model (VERIFIED WORKING)"
19
+ },
20
+ {
21
+ "id": "gemini-2.0-flash",
22
+ "name": "Gemini 2.0 Flash",
23
+ "description": "Stable version of 2.0 Flash"
24
+ },
25
+ {
26
+ "id": "gemini-3-pro-preview",
27
+ "name": "Gemini 3 Pro Preview",
28
+ "description": "Preview of Gemini 3 Pro"
29
+ },
30
+ {
31
+ "id": "gemini-flash-latest",
32
+ "name": "Gemini Flash Latest",
33
+ "description": "Latest stable Flash model"
34
+ },
35
+ {
36
+ "id": "gemini-pro-latest",
37
+ "name": "Gemini Pro Latest",
38
+ "description": "Latest stable Pro model"
39
+ },
40
+ {
41
+ "id": "gemini-2.0-flash-lite",
42
+ "name": "Gemini 2.0 Flash Lite",
43
+ "description": "Lighter version of 2.0 Flash"
44
+ },
45
+ {
46
+ "id": "gemini-2.5-flash-preview-09-2025",
47
+ "name": "Gemini 2.5 Flash Preview",
48
+ "description": "Preview version of 2.5 Flash"
49
+ },
50
+ {
51
+ "id": "gemini-2.5-flash-lite",
52
+ "name": "Gemini 2.5 Flash Lite",
53
+ "description": "Light version of 2.5 Flash"
54
+ }
55
+ ]
56
+ }
package/bin/glm.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "ZhipuAI GLM",
3
+ "description": "ZhipuAI GLM Models (Z.AI) - WORKING MODELS ONLY",
4
+ "models": [
5
+ {
6
+ "id": "claude-3-5-sonnet-20241022",
7
+ "name": "GLM-4",
8
+ "description": "Latest flagship model (Opus/Sonnet class) ✅"
9
+ },
10
+ {
11
+ "id": "claude-3-5-haiku-20241022",
12
+ "name": "GLM-4 Flash",
13
+ "description": "Fast variant (Haiku class) ✅"
14
+ },
15
+ {
16
+ "id": "claude-3-opus-20240229",
17
+ "name": "GLM-4 Air",
18
+ "description": "Lightweight model ✅"
19
+ }
20
+ ]
21
+ }
package/bin/groq.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "Groq",
3
+ "description": "Groq Fast Inference Models",
4
+ "models": [
5
+ {
6
+ "id": "groq/llama-3.3-70b-versatile",
7
+ "name": "Llama 3.3 70B",
8
+ "description": "Latest fast inference model"
9
+ },
10
+ {
11
+ "id": "groq/llama-3.1-70b-versatile",
12
+ "name": "Llama 3.1 70B",
13
+ "description": "Fast inference, versatile"
14
+ },
15
+ {
16
+ "id": "groq/llama-3.1-8b-instant",
17
+ "name": "Llama 3.1 8B Instant",
18
+ "description": "Very fast, smaller model"
19
+ },
20
+ {
21
+ "id": "groq/llama3-70b-8192",
22
+ "name": "Llama 3 70B",
23
+ "description": "Original Llama 3 70B"
24
+ },
25
+ {
26
+ "id": "groq/llama3-8b-8192",
27
+ "name": "Llama 3 8B",
28
+ "description": "Original Llama 3 8B"
29
+ },
30
+ {
31
+ "id": "groq/mixtral-8x7b-32768",
32
+ "name": "Mixtral 8x7B",
33
+ "description": "Fast mixture of experts"
34
+ },
35
+ {
36
+ "id": "groq/gemma2-9b-it",
37
+ "name": "Gemma 2 9B",
38
+ "description": "Google's Gemma instruction-tuned"
39
+ }
40
+ ]
41
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "MiniMax",
3
+ "description": "MiniMax Models (minimax.ai) - WORKING MODELS ONLY",
4
+ "models": [
5
+ {
6
+ "id": "MiniMax-M2",
7
+ "name": "MiniMax M2",
8
+ "description": "MiniMax M2 model (Default) ✅"
9
+ },
10
+ {
11
+ "id": "abab6.5-chat",
12
+ "name": "abab6.5-chat",
13
+ "description": "MiniMax abab6.5 chat model ✅"
14
+ },
15
+ {
16
+ "id": "abab6.5s-chat",
17
+ "name": "abab6.5s-chat",
18
+ "description": "MiniMax abab6.5s chat model ✅"
19
+ },
20
+ {
21
+ "id": "minimax-m2",
22
+ "name": "minimax-m2",
23
+ "description": "Alternative MiniMax M2 model name ✅"
24
+ }
25
+ ]
26
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "provider_name": "Mistral AI",
3
+ "description": "European AI models",
4
+ "api_key": "xxxxxxxx",
5
+ "api_base": "https://api.mistral.ai/",
6
+ "model": "mistral-large-latest"
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "provider_name": "Moonshot",
3
+ "description": "AI Provider - moonshot",
4
+ "api_base": "https://api.moonshot.cn/v1",
5
+ "model": "moonshot-v1-8k",
6
+ "api_key": "your-api-key-here"
7
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "Ollama Local",
3
+ "description": "Ollama Local Models",
4
+ "models": [
5
+ {
6
+ "id": "ollama/llama3",
7
+ "name": "Llama 3",
8
+ "description": "Meta Llama 3 8B"
9
+ },
10
+ {
11
+ "id": "ollama/llama3.1",
12
+ "name": "Llama 3.1",
13
+ "description": "Meta Llama 3.1 models"
14
+ },
15
+ {
16
+ "id": "ollama/mistral",
17
+ "name": "Mistral",
18
+ "description": "Mistral 7B model"
19
+ },
20
+ {
21
+ "id": "ollama/codellama",
22
+ "name": "Code Llama",
23
+ "description": "Code-specialized Llama"
24
+ },
25
+ {
26
+ "id": "ollama/phi3",
27
+ "name": "Phi-3",
28
+ "description": "Microsoft Phi-3 models"
29
+ },
30
+ {
31
+ "id": "ollama/qwen2",
32
+ "name": "Qwen2",
33
+ "description": "Alibaba Qwen2 models"
34
+ }
35
+ ]
36
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "OpenAI",
3
+ "description": "OpenAI GPT & o1 Models",
4
+ "models": [
5
+ {
6
+ "id": "o1-preview",
7
+ "name": "o1 Preview",
8
+ "description": "Reasoning model for complex tasks"
9
+ },
10
+ {
11
+ "id": "o1-mini",
12
+ "name": "o1 Mini",
13
+ "description": "Smaller reasoning model"
14
+ },
15
+ {
16
+ "id": "gpt-4o",
17
+ "name": "GPT-4o",
18
+ "description": "Latest flagship model, multimodal"
19
+ },
20
+ {
21
+ "id": "gpt-4o-mini",
22
+ "name": "GPT-4o Mini",
23
+ "description": "Faster, cheaper multimodal model"
24
+ },
25
+ {
26
+ "id": "gpt-4-turbo",
27
+ "name": "GPT-4 Turbo",
28
+ "description": "High intelligence, fast response"
29
+ },
30
+ {
31
+ "id": "gpt-4o-2024-08-06",
32
+ "name": "GPT-4o (Aug 2024)",
33
+ "description": "Latest GPT-4o version"
34
+ },
35
+ {
36
+ "id": "gpt-4",
37
+ "name": "GPT-4",
38
+ "description": "High intelligence model"
39
+ },
40
+ {
41
+ "id": "gpt-3.5-turbo",
42
+ "name": "GPT-3.5 Turbo",
43
+ "description": "Fast, efficient model"
44
+ }
45
+ ]
46
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "provider_name": "Openrouter",
3
+ "description": "AI Provider - openrouter",
4
+ "api_base": "https://openrouter.ai/api/v1",
5
+ "model": "openai/gpt-5",
6
+ "api_key": "your-api-key-here",
7
+ "available_models": [
8
+ "openai/gpt-5",
9
+ "openai/gpt-5-high",
10
+ "openai/gpt-5.2",
11
+ "openai/gpt-5-codex-high",
12
+ "anthropic/claude-sonnet-4-5-20250929",
13
+ "anthropic/claude-sonnet-4-20250514",
14
+ "anthropic/claude-3-5-haiku-20241022",
15
+ "anthropic/claude-haiku-4-5-20251001",
16
+ "deepseek/deepseek-r1-0528",
17
+ "deepseek/deepseek-v3.1",
18
+ "deepseek/deepseek-v3.2",
19
+ "google/gemini-2.0-flash-exp",
20
+ "google/gemini-2.0-flash-thinking-exp",
21
+ "meta-llama/llama-3.3-70b-instruct",
22
+ "meta-llama/llama-3.1-405b-instruct",
23
+ "qwen/qwen-2.5-72b-instruct",
24
+ "qwen/qwen-2.5-coder-32b-instruct",
25
+ "mistralai/mistral-large-2411",
26
+ "xai/grok-3-mini",
27
+ "xai/grok-code-fast-1",
28
+ "openai/o1-pro",
29
+ "openai/o1",
30
+ "anthropic/claude-3.5-sonnet",
31
+ "anthropic/claude-3-opus-20240229",
32
+ "anthropic/claude-opus-4-5-20250214",
33
+ "anthropic/claude-opus-4.5",
34
+ "perplexity/llama-3.1-sonar-small-128k-online",
35
+ "perplexity/llama-3.1-sonar-large-128k-online",
36
+ "perplexity/llama-3.1-sonar-huge-128k-online"
37
+ ]
38
+ }
@@ -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/bin/qwen.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "provider_name": "Qwen",
3
+ "description": "Custom AI Provider",
4
+ "api_base": "https://api.example.com/",
5
+ "model": "default-model",
6
+ "api_key": "your-api-key-here"
7
+ }