ace-swarm 2.0.5 → 2.0.7
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/README.md +17 -0
- package/assets/.agents/skills/landing-review-watcher/SKILL.md +68 -0
- package/assets/.agents/skills/problem-triage/SKILL.md +57 -0
- package/assets/.agents/skills/problem-triage/agents/openai.yaml +3 -0
- package/assets/.agents/skills/skill-auditor/SKILL.md +52 -0
- package/assets/.github/hooks/ace-copilot.json +68 -0
- package/assets/agent-state/ACE_WORKFLOW.md +66 -0
- package/assets/agent-state/INTERFACE_REGISTRY.md +50 -0
- package/assets/agent-state/MODULES/gates/gate-typescript-public-surface.json +7 -0
- package/assets/agent-state/MODULES/registry.json +10 -2
- package/assets/agent-state/MODULES/schemas/ACE_RUNTIME_PROFILE.schema.json +210 -0
- package/assets/agent-state/MODULES/schemas/RUNTIME_EXECUTOR_SESSION_REGISTRY.schema.json +290 -0
- package/assets/agent-state/MODULES/schemas/RUNTIME_TOOL_SPEC_REGISTRY.schema.json +144 -0
- package/assets/agent-state/MODULES/schemas/TRACKER_SNAPSHOT.schema.json +134 -0
- package/assets/agent-state/MODULES/schemas/VERICIFY_BRIDGE_SNAPSHOT.schema.json +157 -0
- package/assets/agent-state/MODULES/schemas/VERICIFY_PROCESS_POST_LOG.schema.json +92 -0
- package/assets/agent-state/MODULES/schemas/WORKSPACE_SESSION_REGISTRY.schema.json +133 -0
- package/assets/agent-state/SKILL_CATALOG.md +48 -0
- package/assets/agent-state/runtime-executor-sessions.json +5 -0
- package/assets/agent-state/runtime-tool-specs.json +5 -0
- package/assets/agent-state/runtime-workspaces.json +5 -0
- package/assets/agent-state/tracker-snapshot.json +7 -0
- package/assets/agent-state/vericify/ace-bridge.json +60 -0
- package/assets/agent-state/vericify/process-posts.json +5 -0
- package/assets/scripts/bootstrap-workspace.sh +5 -0
- package/assets/scripts/copilot-hook-dispatch.mjs +267 -0
- package/dist/helpers.d.ts +1 -0
- package/dist/helpers.d.ts.map +1 -1
- package/dist/helpers.js +312 -2
- package/dist/helpers.js.map +1 -1
- package/dist/problem-triage.d.ts +23 -0
- package/dist/problem-triage.d.ts.map +1 -0
- package/dist/problem-triage.js +429 -0
- package/dist/problem-triage.js.map +1 -0
- package/dist/prompts.d.ts.map +1 -1
- package/dist/prompts.js +46 -0
- package/dist/prompts.js.map +1 -1
- package/dist/public-surface.d.ts +30 -0
- package/dist/public-surface.d.ts.map +1 -0
- package/dist/public-surface.js +310 -0
- package/dist/public-surface.js.map +1 -0
- package/dist/resources.d.ts.map +1 -1
- package/dist/resources.js +148 -0
- package/dist/resources.js.map +1 -1
- package/dist/runtime-command.d.ts +18 -0
- package/dist/runtime-command.d.ts.map +1 -0
- package/dist/runtime-command.js +76 -0
- package/dist/runtime-command.js.map +1 -0
- package/dist/runtime-executor.d.ts +104 -0
- package/dist/runtime-executor.d.ts.map +1 -0
- package/dist/runtime-executor.js +774 -0
- package/dist/runtime-executor.js.map +1 -0
- package/dist/runtime-profile.d.ts +98 -0
- package/dist/runtime-profile.d.ts.map +1 -0
- package/dist/runtime-profile.js +441 -0
- package/dist/runtime-profile.js.map +1 -0
- package/dist/runtime-tool-specs.d.ts +68 -0
- package/dist/runtime-tool-specs.d.ts.map +1 -0
- package/dist/runtime-tool-specs.js +424 -0
- package/dist/runtime-tool-specs.js.map +1 -0
- package/dist/schemas.d.ts +6 -0
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +305 -0
- package/dist/schemas.js.map +1 -1
- package/dist/shared.d.ts +36 -3
- package/dist/shared.d.ts.map +1 -1
- package/dist/shared.js +36 -3
- package/dist/shared.js.map +1 -1
- package/dist/skill-auditor.d.ts +26 -0
- package/dist/skill-auditor.d.ts.map +1 -0
- package/dist/skill-auditor.js +184 -0
- package/dist/skill-auditor.js.map +1 -0
- package/dist/skill-catalog.d.ts +60 -0
- package/dist/skill-catalog.d.ts.map +1 -0
- package/dist/skill-catalog.js +263 -0
- package/dist/skill-catalog.js.map +1 -0
- package/dist/status-events.d.ts.map +1 -1
- package/dist/status-events.js +51 -8
- package/dist/status-events.js.map +1 -1
- package/dist/tools-agent.d.ts.map +1 -1
- package/dist/tools-agent.js +869 -0
- package/dist/tools-agent.js.map +1 -1
- package/dist/tools-files.d.ts.map +1 -1
- package/dist/tools-files.js +212 -1
- package/dist/tools-files.js.map +1 -1
- package/dist/tools-framework.d.ts.map +1 -1
- package/dist/tools-framework.js +86 -0
- package/dist/tools-framework.js.map +1 -1
- package/dist/tools-skills.d.ts +3 -0
- package/dist/tools-skills.d.ts.map +1 -0
- package/dist/tools-skills.js +104 -0
- package/dist/tools-skills.js.map +1 -0
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +2 -0
- package/dist/tools.js.map +1 -1
- package/dist/tracker-adapters.d.ts +74 -0
- package/dist/tracker-adapters.d.ts.map +1 -0
- package/dist/tracker-adapters.js +777 -0
- package/dist/tracker-adapters.js.map +1 -0
- package/dist/tracker-sync.d.ts +10 -0
- package/dist/tracker-sync.d.ts.map +1 -0
- package/dist/tracker-sync.js +84 -0
- package/dist/tracker-sync.js.map +1 -0
- package/dist/vericify-bridge.d.ts +142 -0
- package/dist/vericify-bridge.d.ts.map +1 -0
- package/dist/vericify-bridge.js +481 -0
- package/dist/vericify-bridge.js.map +1 -0
- package/dist/workspace-manager.d.ts +103 -0
- package/dist/workspace-manager.d.ts.map +1 -0
- package/dist/workspace-manager.js +526 -0
- package/dist/workspace-manager.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "ace://schemas/runtime-executor-session-registry/1.0.0",
|
|
4
|
+
"title": "ACE Runtime Executor Session Registry",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"version",
|
|
9
|
+
"updated_at",
|
|
10
|
+
"sessions"
|
|
11
|
+
],
|
|
12
|
+
"properties": {
|
|
13
|
+
"version": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"const": 1
|
|
16
|
+
},
|
|
17
|
+
"updated_at": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"format": "date-time"
|
|
20
|
+
},
|
|
21
|
+
"sessions": {
|
|
22
|
+
"type": "array",
|
|
23
|
+
"items": {
|
|
24
|
+
"$ref": "#/$defs/session"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"$defs": {
|
|
29
|
+
"tool_call": {
|
|
30
|
+
"type": "object",
|
|
31
|
+
"additionalProperties": false,
|
|
32
|
+
"required": [
|
|
33
|
+
"tool_name",
|
|
34
|
+
"ok",
|
|
35
|
+
"summary",
|
|
36
|
+
"request_path",
|
|
37
|
+
"response_path",
|
|
38
|
+
"started_at",
|
|
39
|
+
"ended_at"
|
|
40
|
+
],
|
|
41
|
+
"properties": {
|
|
42
|
+
"tool_name": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"minLength": 1
|
|
45
|
+
},
|
|
46
|
+
"ok": {
|
|
47
|
+
"type": "boolean"
|
|
48
|
+
},
|
|
49
|
+
"summary": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"minLength": 1
|
|
52
|
+
},
|
|
53
|
+
"request_path": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"minLength": 1
|
|
56
|
+
},
|
|
57
|
+
"response_path": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"minLength": 1
|
|
60
|
+
},
|
|
61
|
+
"started_at": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"format": "date-time"
|
|
64
|
+
},
|
|
65
|
+
"ended_at": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"format": "date-time"
|
|
68
|
+
},
|
|
69
|
+
"output": {},
|
|
70
|
+
"error": {},
|
|
71
|
+
"validation_errors": {
|
|
72
|
+
"type": "array",
|
|
73
|
+
"items": {
|
|
74
|
+
"type": "string"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"turn": {
|
|
80
|
+
"type": "object",
|
|
81
|
+
"additionalProperties": false,
|
|
82
|
+
"required": [
|
|
83
|
+
"turn_number",
|
|
84
|
+
"task",
|
|
85
|
+
"started_at",
|
|
86
|
+
"ended_at",
|
|
87
|
+
"status",
|
|
88
|
+
"response_status",
|
|
89
|
+
"summary",
|
|
90
|
+
"prompt_path",
|
|
91
|
+
"request_path",
|
|
92
|
+
"response_path",
|
|
93
|
+
"exit_code",
|
|
94
|
+
"stdout",
|
|
95
|
+
"stderr",
|
|
96
|
+
"tool_calls"
|
|
97
|
+
],
|
|
98
|
+
"properties": {
|
|
99
|
+
"turn_number": {
|
|
100
|
+
"type": "integer",
|
|
101
|
+
"minimum": 1
|
|
102
|
+
},
|
|
103
|
+
"task": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"minLength": 1
|
|
106
|
+
},
|
|
107
|
+
"started_at": {
|
|
108
|
+
"type": "string",
|
|
109
|
+
"format": "date-time"
|
|
110
|
+
},
|
|
111
|
+
"ended_at": {
|
|
112
|
+
"type": "string",
|
|
113
|
+
"format": "date-time"
|
|
114
|
+
},
|
|
115
|
+
"status": {
|
|
116
|
+
"type": "string",
|
|
117
|
+
"enum": [
|
|
118
|
+
"completed",
|
|
119
|
+
"failed",
|
|
120
|
+
"blocked",
|
|
121
|
+
"stopped"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
"response_status": {
|
|
125
|
+
"type": "string",
|
|
126
|
+
"enum": [
|
|
127
|
+
"continue",
|
|
128
|
+
"done",
|
|
129
|
+
"blocked",
|
|
130
|
+
"failed"
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"summary": {
|
|
134
|
+
"type": "string",
|
|
135
|
+
"minLength": 1
|
|
136
|
+
},
|
|
137
|
+
"prompt_path": {
|
|
138
|
+
"type": "string",
|
|
139
|
+
"minLength": 1
|
|
140
|
+
},
|
|
141
|
+
"request_path": {
|
|
142
|
+
"type": "string",
|
|
143
|
+
"minLength": 1
|
|
144
|
+
},
|
|
145
|
+
"response_path": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"minLength": 1
|
|
148
|
+
},
|
|
149
|
+
"exit_code": {
|
|
150
|
+
"type": [
|
|
151
|
+
"integer",
|
|
152
|
+
"null"
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
"stdout": {
|
|
156
|
+
"type": "string"
|
|
157
|
+
},
|
|
158
|
+
"stderr": {
|
|
159
|
+
"type": "string"
|
|
160
|
+
},
|
|
161
|
+
"tool_calls": {
|
|
162
|
+
"type": "array",
|
|
163
|
+
"items": {
|
|
164
|
+
"$ref": "#/$defs/tool_call"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"session": {
|
|
170
|
+
"type": "object",
|
|
171
|
+
"additionalProperties": false,
|
|
172
|
+
"required": [
|
|
173
|
+
"session_id",
|
|
174
|
+
"status",
|
|
175
|
+
"task",
|
|
176
|
+
"current_task",
|
|
177
|
+
"runtime_profile_path",
|
|
178
|
+
"workspace_session_id",
|
|
179
|
+
"workspace_path",
|
|
180
|
+
"command",
|
|
181
|
+
"max_turns",
|
|
182
|
+
"turn_timeout_ms",
|
|
183
|
+
"turn_count",
|
|
184
|
+
"created_at",
|
|
185
|
+
"updated_at",
|
|
186
|
+
"workspace_cleanup_status",
|
|
187
|
+
"turns"
|
|
188
|
+
],
|
|
189
|
+
"properties": {
|
|
190
|
+
"session_id": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"minLength": 1
|
|
193
|
+
},
|
|
194
|
+
"status": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"enum": [
|
|
197
|
+
"starting",
|
|
198
|
+
"running",
|
|
199
|
+
"completed",
|
|
200
|
+
"failed",
|
|
201
|
+
"blocked",
|
|
202
|
+
"stopped"
|
|
203
|
+
]
|
|
204
|
+
},
|
|
205
|
+
"task": {
|
|
206
|
+
"type": "string",
|
|
207
|
+
"minLength": 1
|
|
208
|
+
},
|
|
209
|
+
"current_task": {
|
|
210
|
+
"type": "string",
|
|
211
|
+
"minLength": 1
|
|
212
|
+
},
|
|
213
|
+
"runtime_profile_path": {
|
|
214
|
+
"type": "string",
|
|
215
|
+
"minLength": 1
|
|
216
|
+
},
|
|
217
|
+
"workspace_session_id": {
|
|
218
|
+
"type": "string",
|
|
219
|
+
"minLength": 1
|
|
220
|
+
},
|
|
221
|
+
"workspace_path": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"minLength": 1
|
|
224
|
+
},
|
|
225
|
+
"objective_id": {
|
|
226
|
+
"type": "string"
|
|
227
|
+
},
|
|
228
|
+
"tracker_item_id": {
|
|
229
|
+
"type": "string"
|
|
230
|
+
},
|
|
231
|
+
"command": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"minLength": 1
|
|
234
|
+
},
|
|
235
|
+
"max_turns": {
|
|
236
|
+
"type": "integer",
|
|
237
|
+
"minimum": 1
|
|
238
|
+
},
|
|
239
|
+
"turn_timeout_ms": {
|
|
240
|
+
"type": "integer",
|
|
241
|
+
"minimum": 1
|
|
242
|
+
},
|
|
243
|
+
"turn_count": {
|
|
244
|
+
"type": "integer",
|
|
245
|
+
"minimum": 0
|
|
246
|
+
},
|
|
247
|
+
"created_at": {
|
|
248
|
+
"type": "string",
|
|
249
|
+
"format": "date-time"
|
|
250
|
+
},
|
|
251
|
+
"updated_at": {
|
|
252
|
+
"type": "string",
|
|
253
|
+
"format": "date-time"
|
|
254
|
+
},
|
|
255
|
+
"started_at": {
|
|
256
|
+
"type": "string",
|
|
257
|
+
"format": "date-time"
|
|
258
|
+
},
|
|
259
|
+
"ended_at": {
|
|
260
|
+
"type": "string",
|
|
261
|
+
"format": "date-time"
|
|
262
|
+
},
|
|
263
|
+
"result_summary": {
|
|
264
|
+
"type": "string"
|
|
265
|
+
},
|
|
266
|
+
"last_error": {
|
|
267
|
+
"type": "string"
|
|
268
|
+
},
|
|
269
|
+
"cleanup_error": {
|
|
270
|
+
"type": "string"
|
|
271
|
+
},
|
|
272
|
+
"workspace_cleanup_status": {
|
|
273
|
+
"type": "string",
|
|
274
|
+
"enum": [
|
|
275
|
+
"pending",
|
|
276
|
+
"removed",
|
|
277
|
+
"archived",
|
|
278
|
+
"failed"
|
|
279
|
+
]
|
|
280
|
+
},
|
|
281
|
+
"turns": {
|
|
282
|
+
"type": "array",
|
|
283
|
+
"items": {
|
|
284
|
+
"$ref": "#/$defs/turn"
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "ace://schemas/runtime-tool-spec-registry/1.0.0",
|
|
4
|
+
"title": "ACE Runtime Tool Spec Registry",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"version",
|
|
9
|
+
"updated_at",
|
|
10
|
+
"tools"
|
|
11
|
+
],
|
|
12
|
+
"properties": {
|
|
13
|
+
"version": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"const": 1
|
|
16
|
+
},
|
|
17
|
+
"updated_at": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"format": "date-time"
|
|
20
|
+
},
|
|
21
|
+
"tools": {
|
|
22
|
+
"type": "array",
|
|
23
|
+
"items": {
|
|
24
|
+
"$ref": "#/$defs/tool_spec"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"$defs": {
|
|
29
|
+
"scalar_enum_item": {
|
|
30
|
+
"type": [
|
|
31
|
+
"string",
|
|
32
|
+
"number",
|
|
33
|
+
"boolean",
|
|
34
|
+
"null"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"schema_node": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"additionalProperties": false,
|
|
40
|
+
"required": [
|
|
41
|
+
"type"
|
|
42
|
+
],
|
|
43
|
+
"properties": {
|
|
44
|
+
"type": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"enum": [
|
|
47
|
+
"object",
|
|
48
|
+
"array",
|
|
49
|
+
"string",
|
|
50
|
+
"number",
|
|
51
|
+
"integer",
|
|
52
|
+
"boolean",
|
|
53
|
+
"null"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
"description": {
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
"enum": {
|
|
60
|
+
"type": "array",
|
|
61
|
+
"items": {
|
|
62
|
+
"$ref": "#/$defs/scalar_enum_item"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"properties": {
|
|
66
|
+
"type": "object",
|
|
67
|
+
"additionalProperties": {
|
|
68
|
+
"$ref": "#/$defs/schema_node"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"required": {
|
|
72
|
+
"type": "array",
|
|
73
|
+
"items": {
|
|
74
|
+
"type": "string"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"additionalProperties": {
|
|
78
|
+
"type": "boolean"
|
|
79
|
+
},
|
|
80
|
+
"items": {
|
|
81
|
+
"$ref": "#/$defs/schema_node"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"executor": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"additionalProperties": false,
|
|
88
|
+
"required": [
|
|
89
|
+
"command"
|
|
90
|
+
],
|
|
91
|
+
"properties": {
|
|
92
|
+
"command": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"minLength": 1
|
|
95
|
+
},
|
|
96
|
+
"cwd": {
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"timeout_ms": {
|
|
100
|
+
"type": "integer",
|
|
101
|
+
"minimum": 1
|
|
102
|
+
},
|
|
103
|
+
"env": {
|
|
104
|
+
"type": "object",
|
|
105
|
+
"additionalProperties": {
|
|
106
|
+
"type": "string"
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"tool_spec": {
|
|
112
|
+
"type": "object",
|
|
113
|
+
"additionalProperties": false,
|
|
114
|
+
"required": [
|
|
115
|
+
"name",
|
|
116
|
+
"description",
|
|
117
|
+
"input_schema",
|
|
118
|
+
"executor"
|
|
119
|
+
],
|
|
120
|
+
"properties": {
|
|
121
|
+
"name": {
|
|
122
|
+
"type": "string",
|
|
123
|
+
"minLength": 1
|
|
124
|
+
},
|
|
125
|
+
"description": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"minLength": 1
|
|
128
|
+
},
|
|
129
|
+
"input_schema": {
|
|
130
|
+
"$ref": "#/$defs/schema_node"
|
|
131
|
+
},
|
|
132
|
+
"success_schema": {
|
|
133
|
+
"$ref": "#/$defs/schema_node"
|
|
134
|
+
},
|
|
135
|
+
"failure_schema": {
|
|
136
|
+
"$ref": "#/$defs/schema_node"
|
|
137
|
+
},
|
|
138
|
+
"executor": {
|
|
139
|
+
"$ref": "#/$defs/executor"
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "ace://schemas/tracker-snapshot/1.0.0",
|
|
4
|
+
"title": "ACE Tracker Snapshot",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": [
|
|
8
|
+
"version",
|
|
9
|
+
"adapter_kind",
|
|
10
|
+
"updated_at",
|
|
11
|
+
"items",
|
|
12
|
+
"comments"
|
|
13
|
+
],
|
|
14
|
+
"properties": {
|
|
15
|
+
"version": {
|
|
16
|
+
"type": "integer",
|
|
17
|
+
"const": 1
|
|
18
|
+
},
|
|
19
|
+
"adapter_kind": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"enum": [
|
|
22
|
+
"none",
|
|
23
|
+
"memory",
|
|
24
|
+
"external"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"updated_at": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": "date-time"
|
|
30
|
+
},
|
|
31
|
+
"items": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": {
|
|
34
|
+
"$ref": "#/$defs/item"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"comments": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"$ref": "#/$defs/comment"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"$defs": {
|
|
45
|
+
"item": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"additionalProperties": false,
|
|
48
|
+
"required": [
|
|
49
|
+
"item_id",
|
|
50
|
+
"title",
|
|
51
|
+
"state",
|
|
52
|
+
"labels",
|
|
53
|
+
"updated_at",
|
|
54
|
+
"metadata"
|
|
55
|
+
],
|
|
56
|
+
"properties": {
|
|
57
|
+
"item_id": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"minLength": 1
|
|
60
|
+
},
|
|
61
|
+
"external_id": {
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
"title": {
|
|
65
|
+
"type": "string",
|
|
66
|
+
"minLength": 1
|
|
67
|
+
},
|
|
68
|
+
"body": {
|
|
69
|
+
"type": "string"
|
|
70
|
+
},
|
|
71
|
+
"state": {
|
|
72
|
+
"type": "string",
|
|
73
|
+
"minLength": 1
|
|
74
|
+
},
|
|
75
|
+
"labels": {
|
|
76
|
+
"type": "array",
|
|
77
|
+
"items": {
|
|
78
|
+
"type": "string"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"assignee": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
"url": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
"updated_at": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"format": "date-time"
|
|
90
|
+
},
|
|
91
|
+
"metadata": {
|
|
92
|
+
"type": "object"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"comment": {
|
|
97
|
+
"type": "object",
|
|
98
|
+
"additionalProperties": false,
|
|
99
|
+
"required": [
|
|
100
|
+
"comment_id",
|
|
101
|
+
"item_id",
|
|
102
|
+
"body",
|
|
103
|
+
"author",
|
|
104
|
+
"created_at",
|
|
105
|
+
"metadata"
|
|
106
|
+
],
|
|
107
|
+
"properties": {
|
|
108
|
+
"comment_id": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"minLength": 1
|
|
111
|
+
},
|
|
112
|
+
"item_id": {
|
|
113
|
+
"type": "string",
|
|
114
|
+
"minLength": 1
|
|
115
|
+
},
|
|
116
|
+
"body": {
|
|
117
|
+
"type": "string",
|
|
118
|
+
"minLength": 1
|
|
119
|
+
},
|
|
120
|
+
"author": {
|
|
121
|
+
"type": "string",
|
|
122
|
+
"minLength": 1
|
|
123
|
+
},
|
|
124
|
+
"created_at": {
|
|
125
|
+
"type": "string",
|
|
126
|
+
"format": "date-time"
|
|
127
|
+
},
|
|
128
|
+
"metadata": {
|
|
129
|
+
"type": "object"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|