deepseek-coder-agent-cli 1.0.71 → 1.0.73
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/dist/bin/erosolar.js +0 -0
- package/dist/contracts/agent-profiles.schema.json +41 -41
- package/dist/contracts/agent-schemas.json +471 -477
- package/dist/contracts/models.schema.json +7 -7
- package/dist/contracts/module-schema.json +392 -403
- package/dist/contracts/schemas/agent-profile.schema.json +144 -144
- package/dist/contracts/schemas/agent-rules.schema.json +226 -226
- package/dist/contracts/schemas/agent-schemas.schema.json +497 -497
- package/dist/contracts/schemas/agent.schema.json +81 -81
- package/dist/contracts/schemas/tool-selection.schema.json +160 -160
- package/dist/contracts/tools.schema.json +80 -80
- package/dist/contracts/unified-schema.json +743 -750
- package/dist/headless/interactiveShell.d.ts.map +1 -1
- package/dist/headless/interactiveShell.js +8 -0
- package/dist/headless/interactiveShell.js.map +1 -1
- package/dist/ui/PromptController.d.ts +5 -0
- package/dist/ui/PromptController.d.ts.map +1 -1
- package/dist/ui/PromptController.js +17 -0
- package/dist/ui/PromptController.js.map +1 -1
- package/dist/ui/UnifiedUIRenderer.d.ts +2 -0
- package/dist/ui/UnifiedUIRenderer.d.ts.map +1 -1
- package/dist/ui/UnifiedUIRenderer.js +5 -1
- package/dist/ui/UnifiedUIRenderer.js.map +1 -1
- package/dist/ui/theme.d.ts +161 -161
- package/package.json +1 -1
package/dist/bin/erosolar.js
CHANGED
|
File without changes
|
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
2
|
+
"$schema": "./schemas/agent-profile.schema.json",
|
|
3
|
+
"contractVersion": "1.0.0",
|
|
4
|
+
"version": "2024-11-24",
|
|
5
|
+
"label": "AGI CLI profile manifest",
|
|
6
|
+
"description": "Default profile definitions shipped with the CLI, including provider defaults and rulebook bindings.",
|
|
7
|
+
"profiles": [
|
|
8
|
+
{
|
|
9
|
+
"name": "general",
|
|
10
|
+
"label": "AGI",
|
|
11
|
+
"description": "General-purpose operator with advanced reasoning across research, planning, writing, and coding tasks.",
|
|
12
|
+
"defaultProvider": "anthropic",
|
|
13
|
+
"defaultModel": "claude-sonnet-4-20250514",
|
|
14
|
+
"temperature": 0.2,
|
|
15
|
+
"systemPrompt": {
|
|
16
|
+
"type": "rulebook",
|
|
17
|
+
"template": "{{rulebook}}"
|
|
18
|
+
},
|
|
19
|
+
"rulebook": {
|
|
20
|
+
"file": "agents/general.rules.json",
|
|
21
|
+
"version": "2024-11-24",
|
|
22
|
+
"contractVersion": "1.0.0",
|
|
23
|
+
"description": "Structured rules governing the balanced AGI profile."
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "agi-code",
|
|
28
|
+
"label": "AGI Code",
|
|
29
|
+
"description": "Coding specialist with advanced reasoning capabilities.",
|
|
30
|
+
"defaultProvider": "anthropic",
|
|
31
|
+
"defaultModel": "claude-sonnet-4-20250514",
|
|
32
|
+
"systemPrompt": {
|
|
33
|
+
"type": "rulebook"
|
|
34
|
+
},
|
|
35
|
+
"rulebook": {
|
|
36
|
+
"file": "agents/agi-code.rules.json",
|
|
37
|
+
"version": "2024-11-24",
|
|
38
|
+
"contractVersion": "1.0.0",
|
|
39
|
+
"description": "Deterministic coding workflow guardrails."
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
43
|
}
|