@defai.digital/ax-cli 0.0.34
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/.automatosx/agents/aerospace-scientist.yaml +159 -0
- package/.automatosx/agents/architecture.yaml +244 -0
- package/.automatosx/agents/backend.yaml +172 -0
- package/.automatosx/agents/ceo.yaml +105 -0
- package/.automatosx/agents/creative-marketer.yaml +173 -0
- package/.automatosx/agents/cto.yaml +118 -0
- package/.automatosx/agents/data-scientist.yaml +200 -0
- package/.automatosx/agents/data.yaml +106 -0
- package/.automatosx/agents/design.yaml +115 -0
- package/.automatosx/agents/devops.yaml +124 -0
- package/.automatosx/agents/frontend.yaml +171 -0
- package/.automatosx/agents/fullstack.yaml +172 -0
- package/.automatosx/agents/mobile.yaml +185 -0
- package/.automatosx/agents/product.yaml +103 -0
- package/.automatosx/agents/quality.yaml +93 -0
- package/.automatosx/agents/quantum-engineer.yaml +167 -0
- package/.automatosx/agents/researcher.yaml +122 -0
- package/.automatosx/agents/security.yaml +115 -0
- package/.automatosx/agents/standard.yaml +214 -0
- package/.automatosx/agents/writer.yaml +122 -0
- package/.automatosx/feature-flags.json +13 -0
- package/.automatosx/memory/memory.db +0 -0
- package/.automatosx/providers/README.md +117 -0
- package/.automatosx/providers/grok-zai.yaml.template +61 -0
- package/.automatosx/providers/grok.yaml.template +71 -0
- package/.automatosx/status/backend-1763517593334-85037.json +9 -0
- package/.automatosx/status/quality-1763516867087-82043.json +9 -0
- package/.automatosx/status/quality-1763516976722-84817.json +9 -0
- package/.automatosx/status/security-1763517871950-87357.json +9 -0
- package/.automatosx/teams/business.yaml +56 -0
- package/.automatosx/teams/core.yaml +60 -0
- package/.automatosx/teams/design.yaml +58 -0
- package/.automatosx/teams/engineering.yaml +69 -0
- package/.automatosx/teams/research.yaml +56 -0
- package/.automatosx/templates/analyst.yaml +60 -0
- package/.automatosx/templates/assistant.yaml +48 -0
- package/.automatosx/templates/basic-agent.yaml +28 -0
- package/.automatosx/templates/code-reviewer.yaml +52 -0
- package/.automatosx/templates/debugger.yaml +63 -0
- package/.automatosx/templates/designer.yaml +69 -0
- package/.automatosx/templates/developer.yaml +60 -0
- package/.automatosx/templates/fullstack-developer.yaml +395 -0
- package/.automatosx/templates/qa-specialist.yaml +71 -0
- package/.claude/mcp/automatosx.json +244 -0
- package/.claude/settings.local.json +34 -0
- package/.grok/settings.json +37 -0
- package/LICENSE +26 -0
- package/README.md +518 -0
- package/automatosx/PRD/README.md +9 -0
- package/automatosx/tmp/README.md +10 -0
- package/automatosx.config.json +333 -0
- package/dist/agent/grok-agent.d.ts +52 -0
- package/dist/agent/grok-agent.js +627 -0
- package/dist/agent/grok-agent.js.map +1 -0
- package/dist/agent/index.d.ts +14 -0
- package/dist/agent/index.js +136 -0
- package/dist/agent/index.js.map +1 -0
- package/dist/commands/mcp.d.ts +2 -0
- package/dist/commands/mcp.js +239 -0
- package/dist/commands/mcp.js.map +1 -0
- package/dist/grok/client.d.ts +49 -0
- package/dist/grok/client.js +80 -0
- package/dist/grok/client.js.map +1 -0
- package/dist/grok/tools.d.ts +8 -0
- package/dist/grok/tools.js +349 -0
- package/dist/grok/tools.js.map +1 -0
- package/dist/hooks/use-enhanced-input.d.ts +37 -0
- package/dist/hooks/use-enhanced-input.js +214 -0
- package/dist/hooks/use-enhanced-input.js.map +1 -0
- package/dist/hooks/use-input-handler.d.ts +34 -0
- package/dist/hooks/use-input-handler.js +608 -0
- package/dist/hooks/use-input-handler.js.map +1 -0
- package/dist/hooks/use-input-history.d.ts +9 -0
- package/dist/hooks/use-input-history.js +69 -0
- package/dist/hooks/use-input-history.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +339 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp/client.d.ts +31 -0
- package/dist/mcp/client.js +152 -0
- package/dist/mcp/client.js.map +1 -0
- package/dist/mcp/config.d.ts +13 -0
- package/dist/mcp/config.js +43 -0
- package/dist/mcp/config.js.map +1 -0
- package/dist/mcp/transports.d.ts +48 -0
- package/dist/mcp/transports.js +217 -0
- package/dist/mcp/transports.js.map +1 -0
- package/dist/schemas/index.d.ts +102 -0
- package/dist/schemas/index.js +105 -0
- package/dist/schemas/index.js.map +1 -0
- package/dist/tools/bash.d.ts +10 -0
- package/dist/tools/bash.js +82 -0
- package/dist/tools/bash.js.map +1 -0
- package/dist/tools/confirmation-tool.d.ts +16 -0
- package/dist/tools/confirmation-tool.js +72 -0
- package/dist/tools/confirmation-tool.js.map +1 -0
- package/dist/tools/index.d.ts +6 -0
- package/dist/tools/index.js +7 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/morph-editor.d.ts +36 -0
- package/dist/tools/morph-editor.js +308 -0
- package/dist/tools/morph-editor.js.map +1 -0
- package/dist/tools/search.d.ts +68 -0
- package/dist/tools/search.js +300 -0
- package/dist/tools/search.js.map +1 -0
- package/dist/tools/text-editor.d.ts +16 -0
- package/dist/tools/text-editor.js +526 -0
- package/dist/tools/text-editor.js.map +1 -0
- package/dist/tools/todo-tool.d.ts +20 -0
- package/dist/tools/todo-tool.js +129 -0
- package/dist/tools/todo-tool.js.map +1 -0
- package/dist/types/index.d.ts +30 -0
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -0
- package/dist/ui/app.d.ts +7 -0
- package/dist/ui/app.js +99 -0
- package/dist/ui/app.js.map +1 -0
- package/dist/ui/components/api-key-input.d.ts +7 -0
- package/dist/ui/components/api-key-input.js +80 -0
- package/dist/ui/components/api-key-input.js.map +1 -0
- package/dist/ui/components/chat-history.d.ts +8 -0
- package/dist/ui/components/chat-history.js +157 -0
- package/dist/ui/components/chat-history.js.map +1 -0
- package/dist/ui/components/chat-input.d.ts +9 -0
- package/dist/ui/components/chat-input.js +67 -0
- package/dist/ui/components/chat-input.js.map +1 -0
- package/dist/ui/components/chat-interface.d.ts +8 -0
- package/dist/ui/components/chat-interface.js +272 -0
- package/dist/ui/components/chat-interface.js.map +1 -0
- package/dist/ui/components/command-suggestions.d.ts +17 -0
- package/dist/ui/components/command-suggestions.js +22 -0
- package/dist/ui/components/command-suggestions.js.map +1 -0
- package/dist/ui/components/confirmation-dialog.d.ts +11 -0
- package/dist/ui/components/confirmation-dialog.js +105 -0
- package/dist/ui/components/confirmation-dialog.js.map +1 -0
- package/dist/ui/components/diff-renderer.d.ts +13 -0
- package/dist/ui/components/diff-renderer.js +186 -0
- package/dist/ui/components/diff-renderer.js.map +1 -0
- package/dist/ui/components/loading-spinner.d.ts +8 -0
- package/dist/ui/components/loading-spinner.js +59 -0
- package/dist/ui/components/loading-spinner.js.map +1 -0
- package/dist/ui/components/mcp-status.d.ts +5 -0
- package/dist/ui/components/mcp-status.js +36 -0
- package/dist/ui/components/mcp-status.js.map +1 -0
- package/dist/ui/components/model-selection.d.ts +12 -0
- package/dist/ui/components/model-selection.js +17 -0
- package/dist/ui/components/model-selection.js.map +1 -0
- package/dist/ui/shared/max-sized-box.d.ts +8 -0
- package/dist/ui/shared/max-sized-box.js +6 -0
- package/dist/ui/shared/max-sized-box.js.map +1 -0
- package/dist/ui/utils/code-colorizer.d.ts +2 -0
- package/dist/ui/utils/code-colorizer.js +7 -0
- package/dist/ui/utils/code-colorizer.js.map +1 -0
- package/dist/ui/utils/colors.d.ts +14 -0
- package/dist/ui/utils/colors.js +15 -0
- package/dist/ui/utils/colors.js.map +1 -0
- package/dist/ui/utils/markdown-renderer.d.ts +4 -0
- package/dist/ui/utils/markdown-renderer.js +23 -0
- package/dist/ui/utils/markdown-renderer.js.map +1 -0
- package/dist/utils/confirmation-service.d.ts +32 -0
- package/dist/utils/confirmation-service.js +109 -0
- package/dist/utils/confirmation-service.js.map +1 -0
- package/dist/utils/custom-instructions.d.ts +1 -0
- package/dist/utils/custom-instructions.js +17 -0
- package/dist/utils/custom-instructions.js.map +1 -0
- package/dist/utils/model-config.d.ts +28 -0
- package/dist/utils/model-config.js +42 -0
- package/dist/utils/model-config.js.map +1 -0
- package/dist/utils/settings-manager.d.ts +94 -0
- package/dist/utils/settings-manager.js +240 -0
- package/dist/utils/settings-manager.js.map +1 -0
- package/dist/utils/settings.d.ts +1 -0
- package/dist/utils/settings.js +4 -0
- package/dist/utils/settings.js.map +1 -0
- package/dist/utils/text-utils.d.ts +80 -0
- package/dist/utils/text-utils.js +182 -0
- package/dist/utils/text-utils.js.map +1 -0
- package/dist/utils/token-counter.d.ts +33 -0
- package/dist/utils/token-counter.js +78 -0
- package/dist/utils/token-counter.js.map +1 -0
- package/package.json +70 -0
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"automatosx": {
|
|
4
|
+
"command": "automatosx",
|
|
5
|
+
"args": ["mcp"],
|
|
6
|
+
"description": "AutomatosX AI Agent Orchestration Platform with persistent memory and multi-agent coordination",
|
|
7
|
+
"tools": [
|
|
8
|
+
{
|
|
9
|
+
"name": "run_agent",
|
|
10
|
+
"description": "Execute an AutomatosX agent with a specific task",
|
|
11
|
+
"inputSchema": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"agent": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "The name of the agent to run (e.g., backend, Paris, Bob)"
|
|
17
|
+
},
|
|
18
|
+
"task": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The task for the agent to perform"
|
|
21
|
+
},
|
|
22
|
+
"provider": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "Optional: Override the AI provider",
|
|
25
|
+
"enum": ["claude", "gemini", "openai"]
|
|
26
|
+
},
|
|
27
|
+
"no_memory": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"description": "Optional: Skip memory injection",
|
|
30
|
+
"default": false
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"required": ["agent", "task"]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "list_agents",
|
|
38
|
+
"description": "List all available AutomatosX agents",
|
|
39
|
+
"inputSchema": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"properties": {}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "search_memory",
|
|
46
|
+
"description": "Search AutomatosX memory for relevant information",
|
|
47
|
+
"inputSchema": {
|
|
48
|
+
"type": "object",
|
|
49
|
+
"properties": {
|
|
50
|
+
"query": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"description": "Search query"
|
|
53
|
+
},
|
|
54
|
+
"limit": {
|
|
55
|
+
"type": "number",
|
|
56
|
+
"description": "Maximum number of results",
|
|
57
|
+
"default": 10
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"required": ["query"]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "get_status",
|
|
65
|
+
"description": "Get AutomatosX system status and configuration",
|
|
66
|
+
"inputSchema": {
|
|
67
|
+
"type": "object",
|
|
68
|
+
"properties": {}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "session_create",
|
|
73
|
+
"description": "Create a new multi-agent session",
|
|
74
|
+
"inputSchema": {
|
|
75
|
+
"type": "object",
|
|
76
|
+
"properties": {
|
|
77
|
+
"name": {
|
|
78
|
+
"type": "string",
|
|
79
|
+
"description": "Session name/task description"
|
|
80
|
+
},
|
|
81
|
+
"agent": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"description": "Initiating agent name"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"required": ["name", "agent"]
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "session_list",
|
|
91
|
+
"description": "List all active sessions",
|
|
92
|
+
"inputSchema": {
|
|
93
|
+
"type": "object",
|
|
94
|
+
"properties": {}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "session_status",
|
|
99
|
+
"description": "Get detailed status of a specific session",
|
|
100
|
+
"inputSchema": {
|
|
101
|
+
"type": "object",
|
|
102
|
+
"properties": {
|
|
103
|
+
"id": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"description": "Session ID"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"required": ["id"]
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "session_complete",
|
|
113
|
+
"description": "Mark a session as completed",
|
|
114
|
+
"inputSchema": {
|
|
115
|
+
"type": "object",
|
|
116
|
+
"properties": {
|
|
117
|
+
"id": {
|
|
118
|
+
"type": "string",
|
|
119
|
+
"description": "Session ID"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"required": ["id"]
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "session_fail",
|
|
127
|
+
"description": "Mark a session as failed with an error reason",
|
|
128
|
+
"inputSchema": {
|
|
129
|
+
"type": "object",
|
|
130
|
+
"properties": {
|
|
131
|
+
"id": {
|
|
132
|
+
"type": "string",
|
|
133
|
+
"description": "Session ID"
|
|
134
|
+
},
|
|
135
|
+
"reason": {
|
|
136
|
+
"type": "string",
|
|
137
|
+
"description": "Failure reason"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"required": ["id", "reason"]
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "memory_add",
|
|
145
|
+
"description": "Add a new memory entry to the system",
|
|
146
|
+
"inputSchema": {
|
|
147
|
+
"type": "object",
|
|
148
|
+
"properties": {
|
|
149
|
+
"content": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"description": "Memory content"
|
|
152
|
+
},
|
|
153
|
+
"metadata": {
|
|
154
|
+
"type": "object",
|
|
155
|
+
"description": "Optional metadata (agent, timestamp, etc.)",
|
|
156
|
+
"properties": {
|
|
157
|
+
"agent": { "type": "string" },
|
|
158
|
+
"timestamp": { "type": "string" }
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"required": ["content"]
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "memory_list",
|
|
167
|
+
"description": "List memory entries with optional filtering",
|
|
168
|
+
"inputSchema": {
|
|
169
|
+
"type": "object",
|
|
170
|
+
"properties": {
|
|
171
|
+
"agent": {
|
|
172
|
+
"type": "string",
|
|
173
|
+
"description": "Filter by agent name"
|
|
174
|
+
},
|
|
175
|
+
"limit": {
|
|
176
|
+
"type": "number",
|
|
177
|
+
"description": "Maximum number of entries",
|
|
178
|
+
"default": 50
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "memory_delete",
|
|
185
|
+
"description": "Delete a specific memory entry by ID",
|
|
186
|
+
"inputSchema": {
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"id": {
|
|
190
|
+
"type": "number",
|
|
191
|
+
"description": "Memory entry ID"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"required": ["id"]
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "memory_export",
|
|
199
|
+
"description": "Export all memory entries to a JSON file",
|
|
200
|
+
"inputSchema": {
|
|
201
|
+
"type": "object",
|
|
202
|
+
"properties": {
|
|
203
|
+
"path": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"description": "Export file path (relative to .automatosx/memory/exports/)"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"required": ["path"]
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"name": "memory_import",
|
|
213
|
+
"description": "Import memory entries from a JSON file",
|
|
214
|
+
"inputSchema": {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"path": {
|
|
218
|
+
"type": "string",
|
|
219
|
+
"description": "Import file path"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"required": ["path"]
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"name": "memory_stats",
|
|
227
|
+
"description": "Get detailed memory statistics",
|
|
228
|
+
"inputSchema": {
|
|
229
|
+
"type": "object",
|
|
230
|
+
"properties": {}
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "memory_clear",
|
|
235
|
+
"description": "Clear all memory entries from the database",
|
|
236
|
+
"inputSchema": {
|
|
237
|
+
"type": "object",
|
|
238
|
+
"properties": {}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(find:*)",
|
|
5
|
+
"Bash(grep:*)",
|
|
6
|
+
"Bash(git add:*)",
|
|
7
|
+
"Bash(git commit:*)",
|
|
8
|
+
"Bash(git push:*)",
|
|
9
|
+
"Bash(bun add:*)",
|
|
10
|
+
"Bash(npm install:*)",
|
|
11
|
+
"Bash(cat:*)",
|
|
12
|
+
"Bash(npm run typecheck:*)",
|
|
13
|
+
"Bash(npx tsc:*)",
|
|
14
|
+
"Bash(git rm:*)",
|
|
15
|
+
"Bash(ax list:*)",
|
|
16
|
+
"Bash(ax run queenie \"Analyze the ax-cli codebase for bugs, errors, type issues, and potential runtime problems. Focus on TypeScript errors, unused variables, potential null/undefined issues, and any logic bugs. Provide a comprehensive report of all issues found.\")",
|
|
17
|
+
"Bash(ax run:*)",
|
|
18
|
+
"Bash(npm run build:*)",
|
|
19
|
+
"Bash(timeout 5 npm run dev:*)",
|
|
20
|
+
"Bash(npm run dev:*)",
|
|
21
|
+
"Bash(npm run dev:node:*)",
|
|
22
|
+
"Bash(node test-logo.js:*)",
|
|
23
|
+
"Bash(ax-cli:*)",
|
|
24
|
+
"Bash(node -e:*)",
|
|
25
|
+
"Bash(xargs cat:*)",
|
|
26
|
+
"Bash(timeout 3 npm run dev:*)",
|
|
27
|
+
"Bash(npm run lint:*)",
|
|
28
|
+
"Bash(npm whoami:*)",
|
|
29
|
+
"Bash(npm publish:*)"
|
|
30
|
+
],
|
|
31
|
+
"deny": [],
|
|
32
|
+
"ask": []
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_comment": "Grok Provider Configuration",
|
|
3
|
+
"_instructions": [
|
|
4
|
+
"1. Set your API key as an environment variable: export GROK_API_KEY='your-api-key'",
|
|
5
|
+
"2. Enable the Grok provider in 'automatosx.config.json' by setting 'enabled' to true.",
|
|
6
|
+
"3. To use an alternative provider, copy the configuration from the '_examples' section below.",
|
|
7
|
+
"4. Verify your setup by running: ax providers list"
|
|
8
|
+
],
|
|
9
|
+
|
|
10
|
+
"baseURL": "https://api.x.ai/v1",
|
|
11
|
+
"model": "grok-3-fast",
|
|
12
|
+
"apiKey": "${GROK_API_KEY}",
|
|
13
|
+
|
|
14
|
+
"_examples": {
|
|
15
|
+
"z_ai_glm_alternative": {
|
|
16
|
+
"_comment": "Z.AI GLM 4.6 (Code-Optimized Alternative)",
|
|
17
|
+
"baseURL": "https://api.z.ai/api/coding/paas/v4",
|
|
18
|
+
"model": "glm-4.6",
|
|
19
|
+
"apiKey": "${GROK_API_KEY}"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
|
|
23
|
+
"_troubleshooting": {
|
|
24
|
+
"authentication_error": {
|
|
25
|
+
"issue": "401 Unauthorized or API key validation failed.",
|
|
26
|
+
"solution": "Ensure your GROK_API_KEY environment variable is set correctly. You can get your key from https://console.x.ai/api-keys."
|
|
27
|
+
},
|
|
28
|
+
"provider_not_found": {
|
|
29
|
+
"issue": "Grok provider not found or not enabled.",
|
|
30
|
+
"solution": "In 'automatosx.config.json', find the 'grok' provider entry and make sure 'enabled' is set to true."
|
|
31
|
+
},
|
|
32
|
+
"model_not_found": {
|
|
33
|
+
"issue": "The specified model is not available.",
|
|
34
|
+
"solution": "Check the 'model' field in this file. For X.AI, it should be 'grok-3-fast'. For other providers, refer to their documentation."
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
package/LICENSE
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
This software is based on grok-cli (MIT License)
|
|
4
|
+
Copyright (c) 2023 GrokCLI Authors https://github.com/superagent-ai/grok-cli
|
|
5
|
+
|
|
6
|
+
Modifications Copyright (c) 2025 DEFAI Private Limited
|
|
7
|
+
Licensed under the MIT License https://github.com/defai-digital/ax-cli
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission statement shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|