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
|
@@ -1,157 +1,157 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
},
|
|
16
|
-
"label": {
|
|
17
|
-
"type": "string",
|
|
18
|
-
"description": "Optional display label for the manifest."
|
|
19
|
-
},
|
|
20
|
-
"description": {
|
|
21
|
-
"type": "string",
|
|
22
|
-
"description": "Optional description for operators."
|
|
23
|
-
},
|
|
24
|
-
"profiles": {
|
|
25
|
-
"type": "array",
|
|
26
|
-
"minItems": 1,
|
|
27
|
-
"items": {
|
|
28
|
-
"$ref": "#/definitions/ProfileEntry"
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"metadata": {
|
|
32
|
-
"type": "object",
|
|
33
|
-
"description": "Implementation specific metadata."
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"definitions": {
|
|
37
|
-
"ProfileEntry": {
|
|
38
|
-
"type": "object",
|
|
39
|
-
"required": ["name", "label", "defaultProvider", "defaultModel", "systemPrompt", "rulebook"],
|
|
40
|
-
"properties": {
|
|
41
|
-
"name": {
|
|
42
|
-
"type": "string",
|
|
43
|
-
"description": "Stable identifier for the agent profile."
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "Agent Profile Manifest v1.0",
|
|
4
|
+
"description": "Schema describing agent profiles, their default providers/models, and how system prompts are constructed.",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["contractVersion", "version", "profiles"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"contractVersion": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "Version of the profile manifest contract the payload implements."
|
|
11
|
+
},
|
|
12
|
+
"version": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "Semantic or date-based version identifier for the manifest."
|
|
44
15
|
},
|
|
45
16
|
"label": {
|
|
46
|
-
|
|
47
|
-
|
|
17
|
+
"type": "string",
|
|
18
|
+
"description": "Optional display label for the manifest."
|
|
48
19
|
},
|
|
49
20
|
"description": {
|
|
50
|
-
|
|
51
|
-
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "Optional description for operators."
|
|
52
23
|
},
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"description": "Default model identifier for the profile."
|
|
60
|
-
},
|
|
61
|
-
"temperature": {
|
|
62
|
-
"type": "number",
|
|
63
|
-
"description": "Optional default temperature."
|
|
64
|
-
},
|
|
65
|
-
"maxTokens": {
|
|
66
|
-
"type": "integer",
|
|
67
|
-
"minimum": 1,
|
|
68
|
-
"description": "Optional default max token count."
|
|
69
|
-
},
|
|
70
|
-
"systemPrompt": {
|
|
71
|
-
"$ref": "#/definitions/PromptConfig"
|
|
72
|
-
},
|
|
73
|
-
"rulebook": {
|
|
74
|
-
"$ref": "#/definitions/RulebookReference"
|
|
24
|
+
"profiles": {
|
|
25
|
+
"type": "array",
|
|
26
|
+
"minItems": 1,
|
|
27
|
+
"items": {
|
|
28
|
+
"$ref": "#/definitions/ProfileEntry"
|
|
29
|
+
}
|
|
75
30
|
},
|
|
76
31
|
"metadata": {
|
|
77
|
-
|
|
78
|
-
|
|
32
|
+
"type": "object",
|
|
33
|
+
"description": "Implementation specific metadata."
|
|
79
34
|
}
|
|
80
|
-
},
|
|
81
|
-
"additionalProperties": false
|
|
82
35
|
},
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
36
|
+
"definitions": {
|
|
37
|
+
"ProfileEntry": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"required": ["name", "label", "defaultProvider", "defaultModel", "systemPrompt", "rulebook"],
|
|
40
|
+
"properties": {
|
|
41
|
+
"name": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Stable identifier for the agent profile."
|
|
44
|
+
},
|
|
45
|
+
"label": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Human readable profile label."
|
|
48
|
+
},
|
|
49
|
+
"description": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"description": "Optional description rendered in UIs."
|
|
52
|
+
},
|
|
53
|
+
"defaultProvider": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "Provider identifier the profile defaults to."
|
|
56
|
+
},
|
|
57
|
+
"defaultModel": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "Default model identifier for the profile."
|
|
60
|
+
},
|
|
61
|
+
"temperature": {
|
|
62
|
+
"type": "number",
|
|
63
|
+
"description": "Optional default temperature."
|
|
64
|
+
},
|
|
65
|
+
"maxTokens": {
|
|
66
|
+
"type": "integer",
|
|
67
|
+
"minimum": 1,
|
|
68
|
+
"description": "Optional default max token count."
|
|
69
|
+
},
|
|
70
|
+
"systemPrompt": {
|
|
71
|
+
"$ref": "#/definitions/PromptConfig"
|
|
72
|
+
},
|
|
73
|
+
"rulebook": {
|
|
74
|
+
"$ref": "#/definitions/RulebookReference"
|
|
75
|
+
},
|
|
76
|
+
"metadata": {
|
|
77
|
+
"type": "object",
|
|
78
|
+
"description": "Implementation specific metadata."
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"additionalProperties": false
|
|
82
|
+
},
|
|
83
|
+
"PromptConfig": {
|
|
84
|
+
"oneOf": [
|
|
85
|
+
{
|
|
86
|
+
"$ref": "#/definitions/RulebookPromptConfig"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"$ref": "#/definitions/LiteralPromptConfig"
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"RulebookPromptConfig": {
|
|
94
|
+
"type": "object",
|
|
95
|
+
"required": ["type"],
|
|
96
|
+
"properties": {
|
|
97
|
+
"type": {
|
|
98
|
+
"const": "rulebook"
|
|
99
|
+
},
|
|
100
|
+
"template": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"description": "Optional template with placeholders like {{rulebook}}."
|
|
103
|
+
},
|
|
104
|
+
"metadata": {
|
|
105
|
+
"type": "object",
|
|
106
|
+
"description": "Implementation specific metadata."
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"additionalProperties": false
|
|
110
|
+
},
|
|
111
|
+
"LiteralPromptConfig": {
|
|
112
|
+
"type": "object",
|
|
113
|
+
"required": ["type", "content"],
|
|
114
|
+
"properties": {
|
|
115
|
+
"type": {
|
|
116
|
+
"const": "literal"
|
|
117
|
+
},
|
|
118
|
+
"content": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"description": "Static system prompt to use verbatim."
|
|
121
|
+
},
|
|
122
|
+
"metadata": {
|
|
123
|
+
"type": "object",
|
|
124
|
+
"description": "Implementation specific metadata."
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"additionalProperties": false
|
|
128
|
+
},
|
|
129
|
+
"RulebookReference": {
|
|
130
|
+
"type": "object",
|
|
131
|
+
"required": ["file"],
|
|
132
|
+
"properties": {
|
|
133
|
+
"file": {
|
|
134
|
+
"type": "string",
|
|
135
|
+
"description": "Relative path to the rulebook JSON file."
|
|
136
|
+
},
|
|
137
|
+
"version": {
|
|
138
|
+
"type": "string",
|
|
139
|
+
"description": "Optional human readable version of the rulebook."
|
|
140
|
+
},
|
|
141
|
+
"contractVersion": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"description": "Optional contract version for the referenced rulebook."
|
|
144
|
+
},
|
|
145
|
+
"description": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Summary of what the rulebook enforces."
|
|
148
|
+
},
|
|
149
|
+
"metadata": {
|
|
150
|
+
"type": "object",
|
|
151
|
+
"description": "Implementation specific metadata."
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"additionalProperties": false
|
|
152
155
|
}
|
|
153
|
-
},
|
|
154
|
-
"additionalProperties": false
|
|
155
156
|
}
|
|
156
|
-
}
|
|
157
157
|
}
|