@trenchwork/erosolar 1.1.40 → 1.1.41
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 -21
- package/README.md +236 -225
- package/agents/erosolar-code.rules.json +199 -199
- package/dist/bin/deepseek.js +18 -198
- package/dist/bin/deepseek.js.map +1 -1
- package/dist/bin/erosolar.js +0 -0
- package/dist/capabilities/enhancedGitCapability.js +63 -63
- package/dist/config.js +12 -12
- package/dist/contracts/agent-profiles.schema.json +5 -23
- package/dist/contracts/agent-schemas.json +31 -343
- package/dist/contracts/models.schema.json +9 -9
- package/dist/contracts/module-schema.json +367 -367
- package/dist/contracts/schemas/agent-profile.schema.json +157 -157
- package/dist/contracts/schemas/agent-rules.schema.json +238 -238
- package/dist/contracts/schemas/agent-schemas.schema.json +528 -528
- package/dist/contracts/schemas/agent.schema.json +90 -90
- package/dist/contracts/schemas/tool-selection.schema.json +174 -174
- package/dist/contracts/tools.schema.json +42 -42
- package/dist/contracts/unified-schema.json +8 -628
- package/dist/core/constants.js +7 -7
- package/dist/core/contextManager.js +16 -16
- package/dist/core/modelDiscovery.d.ts +0 -3
- package/dist/core/modelDiscovery.d.ts.map +1 -1
- package/dist/core/modelDiscovery.js +3 -355
- package/dist/core/modelDiscovery.js.map +1 -1
- package/dist/core/quotaErrors.d.ts +42 -0
- package/dist/core/quotaErrors.d.ts.map +1 -0
- package/dist/core/quotaErrors.js +88 -0
- package/dist/core/quotaErrors.js.map +1 -0
- package/dist/core/secretStore.d.ts.map +1 -1
- package/dist/core/secretStore.js +1 -14
- package/dist/core/secretStore.js.map +1 -1
- package/dist/core/taskCompletionDetector.js +17 -17
- package/dist/headless/interactiveShell.d.ts.map +1 -1
- package/dist/headless/interactiveShell.js +7 -58
- package/dist/headless/interactiveShell.js.map +1 -1
- package/dist/leanAgent.js +38 -38
- package/dist/plugins/providers/deepseek/index.d.ts +1 -0
- package/dist/plugins/providers/deepseek/index.d.ts.map +1 -1
- package/dist/plugins/providers/deepseek/index.js +65 -4
- package/dist/plugins/providers/deepseek/index.js.map +1 -1
- package/dist/plugins/providers/index.d.ts.map +1 -1
- package/dist/plugins/providers/index.js +0 -7
- package/dist/plugins/providers/index.js.map +1 -1
- package/dist/providers/openaiChatCompletionsProvider.js +7 -30
- package/dist/providers/openaiChatCompletionsProvider.js.map +1 -1
- package/dist/providers/resilientProvider.d.ts.map +1 -1
- package/dist/providers/resilientProvider.js +0 -31
- package/dist/providers/resilientProvider.js.map +1 -1
- package/dist/runtime/agentSession.js +4 -4
- package/dist/shell/vimMode.js +29 -29
- package/dist/tools/hitlTools.js +18 -18
- package/dist/tools/webTools.d.ts.map +1 -1
- package/dist/tools/webTools.js +10 -0
- package/dist/tools/webTools.js.map +1 -1
- package/package.json +116 -123
- package/scripts/postinstall.cjs +57 -58
- package/dist/bin/cliMode.d.ts +0 -8
- package/dist/bin/cliMode.d.ts.map +0 -1
- package/dist/bin/cliMode.js +0 -20
- package/dist/bin/cliMode.js.map +0 -1
- package/dist/bin/selfTest.d.ts +0 -14
- package/dist/bin/selfTest.d.ts.map +0 -1
- package/dist/bin/selfTest.js +0 -298
- package/dist/bin/selfTest.js.map +0 -1
- package/dist/headless/printMode.d.ts +0 -17
- package/dist/headless/printMode.d.ts.map +0 -1
- package/dist/headless/printMode.js +0 -40
- package/dist/headless/printMode.js.map +0 -1
- package/dist/plugins/providers/anthropic/index.d.ts +0 -9
- package/dist/plugins/providers/anthropic/index.d.ts.map +0 -1
- package/dist/plugins/providers/anthropic/index.js +0 -48
- package/dist/plugins/providers/anthropic/index.js.map +0 -1
- package/dist/plugins/providers/openai/index.d.ts +0 -10
- package/dist/plugins/providers/openai/index.d.ts.map +0 -1
- package/dist/plugins/providers/openai/index.js +0 -47
- package/dist/plugins/providers/openai/index.js.map +0 -1
- package/dist/plugins/providers/xai/index.d.ts +0 -10
- package/dist/plugins/providers/xai/index.d.ts.map +0 -1
- package/dist/plugins/providers/xai/index.js +0 -47
- package/dist/plugins/providers/xai/index.js.map +0 -1
|
@@ -2,37 +2,10 @@
|
|
|
2
2
|
"$schema": "./schemas/agent-schemas.schema.json",
|
|
3
3
|
"contractVersion": "1.0.0",
|
|
4
4
|
"version": "2024-11-24",
|
|
5
|
-
"label": "
|
|
5
|
+
"label": "Erosolar CLI Agent Configuration Schema",
|
|
6
6
|
"description": "Centralized configuration for all agents, models, providers, and capabilities",
|
|
7
7
|
|
|
8
8
|
"providers": [
|
|
9
|
-
{
|
|
10
|
-
"id": "anthropic",
|
|
11
|
-
"label": "Anthropic",
|
|
12
|
-
"description": "Claude models - industry-leading AI assistants",
|
|
13
|
-
"envVars": {
|
|
14
|
-
"apiKey": "ANTHROPIC_API_KEY"
|
|
15
|
-
},
|
|
16
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"id": "openai",
|
|
20
|
-
"label": "OpenAI",
|
|
21
|
-
"description": "GPT and o-series reasoning models",
|
|
22
|
-
"envVars": {
|
|
23
|
-
"apiKey": "OPENAI_API_KEY"
|
|
24
|
-
},
|
|
25
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"id": "google",
|
|
29
|
-
"label": "Google",
|
|
30
|
-
"description": "Gemini models - Google's multimodal AI",
|
|
31
|
-
"envVars": {
|
|
32
|
-
"apiKey": "GEMINI_API_KEY"
|
|
33
|
-
},
|
|
34
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
35
|
-
},
|
|
36
9
|
{
|
|
37
10
|
"id": "deepseek",
|
|
38
11
|
"label": "DeepSeek",
|
|
@@ -41,161 +14,36 @@
|
|
|
41
14
|
"apiKey": "DEEPSEEK_API_KEY"
|
|
42
15
|
},
|
|
43
16
|
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"id": "xai",
|
|
47
|
-
"label": "xAI",
|
|
48
|
-
"description": "xAI Grok models for coding and reasoning",
|
|
49
|
-
"envVars": {
|
|
50
|
-
"apiKey": "XAI_API_KEY"
|
|
51
|
-
},
|
|
52
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"id": "ollama",
|
|
56
|
-
"label": "Ollama",
|
|
57
|
-
"description": "Local LLMs via Ollama - Meta Llama, Qwen, Mistral, and more",
|
|
58
|
-
"envVars": {
|
|
59
|
-
"baseUrl": "OLLAMA_BASE_URL"
|
|
60
|
-
},
|
|
61
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"id": "qwen",
|
|
65
|
-
"label": "Qwen (Alibaba)",
|
|
66
|
-
"description": "Qwen models from Alibaba Cloud - excellent multilingual and coding",
|
|
67
|
-
"envVars": {
|
|
68
|
-
"apiKey": "DASHSCOPE_API_KEY"
|
|
69
|
-
},
|
|
70
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
71
17
|
}
|
|
72
18
|
],
|
|
73
19
|
|
|
74
20
|
"models": [
|
|
75
|
-
{
|
|
76
|
-
"id": "claude-opus-4-5-20251101",
|
|
77
|
-
"label": "Claude Opus 4.5",
|
|
78
|
-
"provider": "anthropic",
|
|
79
|
-
"description": "Heavy: Most powerful Claude - exceptional reasoning and creativity.",
|
|
80
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"id": "claude-sonnet-4-5-20250514",
|
|
84
|
-
"label": "Claude Sonnet 4.5",
|
|
85
|
-
"provider": "anthropic",
|
|
86
|
-
"description": "Heavy: Latest Claude flagship - exceptional coding and reasoning.",
|
|
87
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"id": "claude-haiku-4-5-20250514",
|
|
91
|
-
"label": "Claude Haiku 4.5",
|
|
92
|
-
"provider": "anthropic",
|
|
93
|
-
"description": "Small: Fastest Claude 4.5 - instant responses, great value.",
|
|
94
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"id": "gpt-5.2-pro-2025-12-11",
|
|
98
|
-
"label": "GPT-5.2 Pro",
|
|
99
|
-
"provider": "openai",
|
|
100
|
-
"description": "Heavy: OpenAI's latest flagship - exceptional reasoning.",
|
|
101
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
"id": "gpt-5.2-codex",
|
|
105
|
-
"label": "GPT-5.2 Codex",
|
|
106
|
-
"provider": "openai",
|
|
107
|
-
"description": "Heavy: OpenAI's elite coding model - best-in-class.",
|
|
108
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"id": "gpt-5.2-codex-mini",
|
|
112
|
-
"label": "GPT-5.2 Codex Mini",
|
|
113
|
-
"provider": "openai",
|
|
114
|
-
"description": "Small: Fast Codex - excellent coding at lower cost.",
|
|
115
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"id": "gemini-3.0-pro",
|
|
119
|
-
"label": "Gemini 3.0 Pro",
|
|
120
|
-
"provider": "google",
|
|
121
|
-
"description": "Heavy: Google's latest flagship - most capable Gemini.",
|
|
122
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"id": "gemini-2.5-flash",
|
|
126
|
-
"label": "Gemini 2.5 Flash",
|
|
127
|
-
"provider": "google",
|
|
128
|
-
"description": "Small: Ultra-fast Gemini - great balance of speed and capability.",
|
|
129
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming", "multimodal"]
|
|
130
|
-
},
|
|
131
21
|
{
|
|
132
22
|
"id": "deepseek-v4-pro",
|
|
133
23
|
"label": "DeepSeek v4 Pro",
|
|
134
24
|
"provider": "deepseek",
|
|
135
|
-
"description": "
|
|
25
|
+
"description": "Deep reasoning with 1M context on max thought.",
|
|
136
26
|
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
137
27
|
},
|
|
138
28
|
{
|
|
139
29
|
"id": "deepseek-chat",
|
|
140
30
|
"label": "DeepSeek Chat",
|
|
141
31
|
"provider": "deepseek",
|
|
142
|
-
"description": "
|
|
32
|
+
"description": "Fast general assistant - excellent value.",
|
|
143
33
|
"capabilities": ["chat", "tools", "streaming"]
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"id": "grok-4-1-fast-reasoning",
|
|
147
|
-
"label": "Grok 4.1 Fast Reasoning",
|
|
148
|
-
"provider": "xai",
|
|
149
|
-
"description": "Heavy: xAI's latest - blazing fast with deep reasoning.",
|
|
150
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"id": "grok-4",
|
|
154
|
-
"label": "Grok 4",
|
|
155
|
-
"provider": "xai",
|
|
156
|
-
"description": "Small: Fast Grok 4 - quick responses with strong capabilities.",
|
|
157
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"id": "llama3.3:70b",
|
|
161
|
-
"label": "Llama 3.3 70B",
|
|
162
|
-
"provider": "ollama",
|
|
163
|
-
"description": "Heavy: Meta's flagship - rivals GPT-4, runs locally.",
|
|
164
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
"id": "llama3.2:3b",
|
|
168
|
-
"label": "Llama 3.2 3B",
|
|
169
|
-
"provider": "ollama",
|
|
170
|
-
"description": "Small: Tiny but capable - runs on any hardware.",
|
|
171
|
-
"capabilities": ["chat", "tools", "streaming"]
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"id": "qwen-max",
|
|
175
|
-
"label": "Qwen Max",
|
|
176
|
-
"provider": "qwen",
|
|
177
|
-
"description": "Heavy: Alibaba's best - excellent coding and multilingual.",
|
|
178
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"id": "qwen-turbo",
|
|
182
|
-
"label": "Qwen Turbo",
|
|
183
|
-
"provider": "qwen",
|
|
184
|
-
"description": "Small: Fast Qwen - impressive speed and capability.",
|
|
185
|
-
"capabilities": ["chat", "reasoning", "tools", "streaming"]
|
|
186
34
|
}
|
|
187
35
|
],
|
|
188
36
|
|
|
189
37
|
"profiles": [
|
|
190
|
-
|
|
38
|
+
{
|
|
191
39
|
"name": "erosolar-code",
|
|
192
|
-
"label": "
|
|
193
|
-
"description": "
|
|
40
|
+
"label": "Erosolar Code",
|
|
41
|
+
"description": "DeepSeek-powered AI assistant with advanced coding capabilities.",
|
|
194
42
|
"defaultProvider": "deepseek",
|
|
195
43
|
"defaultModel": "deepseek-v4-pro",
|
|
196
44
|
"systemPrompt": {
|
|
197
45
|
"type": "rulebook",
|
|
198
|
-
"template": "You are an elite AI research assistant with advanced technical capabilities.\n\n## CRITICAL: Explore → Plan → Execute Workflow\nFor ANY non-trivial task, you MUST follow this workflow:\n\n### Phase 1: EXPLORE (Required First)\n1. Use Glob/Grep/Read tools to explore the codebase\n2. Understand existing architecture, patterns, and dependencies\n3. Identify key files that will be affected\n4. Call `MarkExplorationComplete` with your findings summary\n\n### Phase 2: PLAN (Required After Explore)\n1. Call `ProposePlan` with structured steps\n2. Each step MUST include suggestions (auto-generated if not provided)\n3. User can select suggestions OR provide custom instructions per step\n4. Wait for plan approval before proceeding\n\n### Phase 3: EXECUTE (Only After Plan Approved)\n1. Execute each step according to user's selected instructions\n2. Update plan status as steps complete\n3. Call `ExitPlanMode` when done\n\n##
|
|
46
|
+
"template": "You are an elite AI research assistant with advanced technical capabilities.\n\n## CRITICAL: Explore → Plan → Execute Workflow\nFor ANY non-trivial task, you MUST follow this workflow:\n\n### Phase 1: EXPLORE (Required First)\n1. Use Glob/Grep/Read tools to explore the codebase\n2. Understand existing architecture, patterns, and dependencies\n3. Identify key files that will be affected\n4. Call `MarkExplorationComplete` with your findings summary\n\n### Phase 2: PLAN (Required After Explore)\n1. Call `ProposePlan` with structured steps\n2. Each step MUST include suggestions (auto-generated if not provided)\n3. User can select suggestions OR provide custom instructions per step\n4. Wait for plan approval before proceeding\n\n### Phase 3: EXECUTE (Only After Plan Approved)\n1. Execute each step according to user's selected instructions\n2. Update plan status as steps complete\n3. Call `ExitPlanMode` when done\n\n## Guidelines\n- Be direct and technical - skip disclaimers\n- Provide complete, working code\n- Continue through errors autonomously"
|
|
199
47
|
},
|
|
200
48
|
"rulebook": {
|
|
201
49
|
"file": "agents/erosolar-code.rules.json",
|
|
@@ -214,222 +62,67 @@
|
|
|
214
62
|
"slashCommands": [
|
|
215
63
|
{
|
|
216
64
|
"command": "/model",
|
|
217
|
-
"description": "Choose what model
|
|
218
|
-
"category": "configuration"
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"command": "/approvals",
|
|
222
|
-
"description": "Choose what Codex can do without approval",
|
|
223
|
-
"category": "configuration"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"command": "/review",
|
|
227
|
-
"description": "Review current changes and find issues",
|
|
228
|
-
"category": "diagnostics"
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"command": "/new",
|
|
232
|
-
"description": "Start a new chat without closing the session",
|
|
233
|
-
"category": "workspace"
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"command": "/init",
|
|
237
|
-
"description": "Create AGENTS.md with instructions for Codex",
|
|
238
|
-
"category": "workspace"
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"command": "/compact",
|
|
242
|
-
"description": "Summarize conversation to prevent hitting the context limit",
|
|
243
|
-
"category": "workspace"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"command": "/undo",
|
|
247
|
-
"description": "Undo the last turn (rewind/checkpoint helper)",
|
|
248
|
-
"category": "workspace"
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"command": "/diff",
|
|
252
|
-
"description": "Show git diff (including untracked files)",
|
|
253
|
-
"category": "workspace"
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"command": "/mention",
|
|
257
|
-
"description": "Mention a file or path (e.g., @src/app.ts)",
|
|
258
|
-
"category": "workspace"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"command": "/status",
|
|
262
|
-
"description": "Show current session configuration and token usage",
|
|
263
|
-
"category": "diagnostics"
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"command": "/mcp",
|
|
267
|
-
"description": "List configured MCP tools",
|
|
65
|
+
"description": "Choose what model to use",
|
|
268
66
|
"category": "configuration"
|
|
269
67
|
},
|
|
270
|
-
{
|
|
271
|
-
"command": "/logout",
|
|
272
|
-
"description": "Log out of Codex (clear stored credentials)",
|
|
273
|
-
"category": "configuration"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"command": "/quit",
|
|
277
|
-
"description": "Exit Codex",
|
|
278
|
-
"category": "other"
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"command": "/exit",
|
|
282
|
-
"description": "Exit Codex",
|
|
283
|
-
"category": "other"
|
|
284
|
-
},
|
|
285
68
|
{
|
|
286
69
|
"command": "/help",
|
|
287
70
|
"description": "Show all available commands and keyboard shortcuts",
|
|
288
71
|
"category": "other"
|
|
289
72
|
},
|
|
290
73
|
{
|
|
291
|
-
"command": "/
|
|
292
|
-
"description": "
|
|
293
|
-
"category": "
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"command": "/evolve",
|
|
297
|
-
"description": "Self-evolution and optimization (analyze, start, stop, learn, fix, tokens, targets, optimize, guidelines, actions)",
|
|
298
|
-
"category": "other"
|
|
74
|
+
"command": "/clear",
|
|
75
|
+
"description": "Clear conversation history and start fresh",
|
|
76
|
+
"category": "workspace"
|
|
299
77
|
},
|
|
300
78
|
{
|
|
301
|
-
"command": "/
|
|
302
|
-
"description": "
|
|
79
|
+
"command": "/exit",
|
|
80
|
+
"description": "Exit Erosolar",
|
|
303
81
|
"category": "other"
|
|
304
82
|
},
|
|
305
|
-
{
|
|
306
|
-
"command": "/refresh-models",
|
|
307
|
-
"description": "Auto-discover new models from configured providers",
|
|
308
|
-
"category": "configuration"
|
|
309
|
-
},
|
|
310
83
|
{
|
|
311
84
|
"command": "/secrets",
|
|
312
85
|
"description": "Configure API keys",
|
|
313
86
|
"category": "configuration"
|
|
314
87
|
},
|
|
315
88
|
{
|
|
316
|
-
"command": "/
|
|
317
|
-
"description": "
|
|
318
|
-
"category": "configuration"
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"command": "/thinking",
|
|
322
|
-
"description": "Toggle thinking mode (balanced or extended)",
|
|
323
|
-
"category": "configuration"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"command": "/skills",
|
|
327
|
-
"description": "List available SKILL.md packages and refresh the cache",
|
|
328
|
-
"category": "workspace"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"command": "/doctor",
|
|
332
|
-
"description": "Check environment, secrets, and tool readiness",
|
|
333
|
-
"category": "diagnostics"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"command": "/checks",
|
|
337
|
-
"description": "Run repo checks (npm test / npm run build / npm run lint)",
|
|
89
|
+
"command": "/debug",
|
|
90
|
+
"description": "Toggle debug mode",
|
|
338
91
|
"category": "diagnostics"
|
|
339
92
|
},
|
|
340
93
|
{
|
|
341
|
-
"command": "/
|
|
342
|
-
"description": "
|
|
343
|
-
"category": "workspace"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"command": "/sessions",
|
|
347
|
-
"description": "Manage saved conversations, autosave, and session history",
|
|
348
|
-
"category": "workspace"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"command": "/provider",
|
|
352
|
-
"description": "Switch to a different AI provider (e.g., /provider xai)",
|
|
94
|
+
"command": "/adversarial",
|
|
95
|
+
"description": "Toggle adversarial verification",
|
|
353
96
|
"category": "configuration"
|
|
354
97
|
},
|
|
355
98
|
{
|
|
356
|
-
"command": "/
|
|
357
|
-
"description": "
|
|
99
|
+
"command": "/ultracode",
|
|
100
|
+
"description": "Toggle ultracode operating mode",
|
|
358
101
|
"category": "configuration"
|
|
359
102
|
},
|
|
360
103
|
{
|
|
361
|
-
"command": "/
|
|
362
|
-
"description": "
|
|
104
|
+
"command": "/auto",
|
|
105
|
+
"description": "Toggle auto-continue mode",
|
|
363
106
|
"category": "configuration"
|
|
364
107
|
},
|
|
365
108
|
{
|
|
366
|
-
"command": "/
|
|
367
|
-
"description": "
|
|
368
|
-
"category": "workspace"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"command": "/memory",
|
|
372
|
-
"description": "Edit EROSOLAR.md memory file (project context and preferences)",
|
|
373
|
-
"category": "configuration"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"command": "/vim",
|
|
377
|
-
"description": "Toggle vim-style editing mode in the input",
|
|
378
|
-
"category": "configuration"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"command": "/output-style",
|
|
382
|
-
"description": "Change response style (default, explanatory, learning, concise, custom)",
|
|
383
|
-
"category": "configuration"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"command": "/cost",
|
|
387
|
-
"description": "Show detailed token usage and API cost breakdown",
|
|
388
|
-
"category": "diagnostics"
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
"command": "/usage",
|
|
392
|
-
"description": "Show token and context usage statistics",
|
|
393
|
-
"category": "diagnostics"
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"command": "/clear",
|
|
397
|
-
"description": "Clear conversation history and start fresh",
|
|
398
|
-
"category": "workspace"
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
"command": "/resume",
|
|
402
|
-
"description": "Resume a previous session by ID or pick from recent",
|
|
403
|
-
"category": "workspace"
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"command": "/export",
|
|
407
|
-
"description": "Export conversation history to a file",
|
|
109
|
+
"command": "/bash",
|
|
110
|
+
"description": "Run local shell command",
|
|
408
111
|
"category": "workspace"
|
|
409
112
|
},
|
|
410
113
|
{
|
|
411
|
-
"command": "/
|
|
412
|
-
"description": "
|
|
413
|
-
"category": "diagnostics"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"command": "/bug",
|
|
417
|
-
"description": "Report an issue or bug",
|
|
114
|
+
"command": "/keys",
|
|
115
|
+
"description": "Show keyboard shortcuts",
|
|
418
116
|
"category": "other"
|
|
419
117
|
},
|
|
420
118
|
{
|
|
421
|
-
"command": "/
|
|
422
|
-
"description": "
|
|
423
|
-
"category": "
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"command": "/permissions",
|
|
427
|
-
"description": "Configure tool permissions (allow/deny rules)",
|
|
428
|
-
"category": "configuration"
|
|
119
|
+
"command": "/stats",
|
|
120
|
+
"description": "Show session stats",
|
|
121
|
+
"category": "diagnostics"
|
|
429
122
|
},
|
|
430
123
|
{
|
|
431
|
-
"command": "/
|
|
432
|
-
"description": "
|
|
124
|
+
"command": "/key",
|
|
125
|
+
"description": "Set DeepSeek API key",
|
|
433
126
|
"category": "configuration"
|
|
434
127
|
}
|
|
435
128
|
],
|
|
@@ -454,17 +147,12 @@
|
|
|
454
147
|
"id": "streaming",
|
|
455
148
|
"label": "Streaming",
|
|
456
149
|
"description": "Support for streaming responses"
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
"id": "multimodal",
|
|
460
|
-
"label": "Multimodal",
|
|
461
|
-
"description": "Support for images and other non-text inputs"
|
|
462
150
|
}
|
|
463
151
|
],
|
|
464
152
|
|
|
465
153
|
"metadata": {
|
|
466
154
|
"schemaVersion": "1.0.0",
|
|
467
155
|
"lastUpdated": "2024-11-24",
|
|
468
|
-
"description": "
|
|
156
|
+
"description": "Single source of truth for all agent configurations in the Erosolar CLI"
|
|
469
157
|
}
|
|
470
158
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"contractVersion": "1.0.0",
|
|
4
|
-
"profile": "agi-cli",
|
|
5
|
-
"version": "2024-11-24",
|
|
6
|
-
"label": "AGI CLI model manifest",
|
|
7
|
-
"description": "Placeholder manifest for provider/model metadata. Extend this file as model catalogs evolve.",
|
|
8
|
-
"providers": []
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"contractVersion": "1.0.0",
|
|
4
|
+
"profile": "agi-cli",
|
|
5
|
+
"version": "2024-11-24",
|
|
6
|
+
"label": "AGI CLI model manifest",
|
|
7
|
+
"description": "Placeholder manifest for provider/model metadata. Extend this file as model catalogs evolve.",
|
|
8
|
+
"providers": []
|
|
9
|
+
}
|