@deimoscloud/coreai 0.1.13 → 0.1.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deimoscloud/coreai",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "A configurable, team-ready AI agent orchestration platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -48,10 +48,17 @@
48
48
  "$ref": "#/$defs/behaviors"
49
49
  },
50
50
  "context_sources": {
51
- "$ref": "#/$defs/contextSources"
51
+ "$ref": "#/$defs/contextSources",
52
+ "description": "Deprecated: use knowledge_library instead. Legacy context source paths."
53
+ },
54
+ "knowledge_library": {
55
+ "$ref": "#/$defs/knowledgeLibrary"
52
56
  },
53
57
  "communication": {
54
58
  "$ref": "#/$defs/communication"
59
+ },
60
+ "protocols": {
61
+ "$ref": "#/$defs/protocols"
55
62
  }
56
63
  },
57
64
  "additionalProperties": false,
@@ -121,7 +128,8 @@
121
128
  "ticket-implementation",
122
129
  "bug-investigation",
123
130
  "code-review",
124
- "planning-estimation"
131
+ "planning-estimation",
132
+ "product-planning"
125
133
  ]
126
134
  },
127
135
  "quality_gates": {
@@ -133,7 +141,7 @@
133
141
  },
134
142
  "contextSources": {
135
143
  "type": "object",
136
- "description": "Context sources for the agent",
144
+ "description": "Deprecated: use knowledge_library instead. Legacy context source paths.",
137
145
  "properties": {
138
146
  "shared": {
139
147
  "type": "array",
@@ -152,9 +160,92 @@
152
160
  },
153
161
  "additionalProperties": false
154
162
  },
163
+ "knowledgeLibrary": {
164
+ "type": "object",
165
+ "description": "Knowledge library structure defining shared and personal context directories",
166
+ "properties": {
167
+ "shared": {
168
+ "type": "object",
169
+ "description": "Shared context accessible by all agents",
170
+ "properties": {
171
+ "context": {
172
+ "type": "string",
173
+ "description": "Path to shared project context file"
174
+ },
175
+ "architecture": {
176
+ "type": "string",
177
+ "description": "Path to architecture documentation"
178
+ },
179
+ "prd": {
180
+ "type": "string",
181
+ "description": "Path to product requirements document"
182
+ },
183
+ "remote": {
184
+ "type": "array",
185
+ "description": "Remote documentation sources (e.g., Confluence)",
186
+ "items": {
187
+ "type": "string"
188
+ }
189
+ }
190
+ },
191
+ "additionalProperties": false
192
+ },
193
+ "personal": {
194
+ "type": "object",
195
+ "description": "Personal agent directory structure",
196
+ "properties": {
197
+ "context": {
198
+ "type": "string",
199
+ "description": "Path to agent's current context file"
200
+ },
201
+ "history": {
202
+ "type": "string",
203
+ "description": "Path to archived context directory"
204
+ },
205
+ "inbox": {
206
+ "type": "string",
207
+ "description": "Path to incoming messages directory"
208
+ },
209
+ "outbox": {
210
+ "type": "string",
211
+ "description": "Path to outgoing messages directory"
212
+ },
213
+ "tech": {
214
+ "type": "string",
215
+ "description": "Path to technical artifacts directory"
216
+ },
217
+ "control": {
218
+ "type": "object",
219
+ "description": "Control files for objectives, decisions, and dependencies",
220
+ "properties": {
221
+ "objectives": {
222
+ "type": "string",
223
+ "description": "Path to current objectives file"
224
+ },
225
+ "decisions": {
226
+ "type": "string",
227
+ "description": "Path to decisions log file"
228
+ },
229
+ "dependencies": {
230
+ "type": "string",
231
+ "description": "Path to dependencies file"
232
+ },
233
+ "index": {
234
+ "type": "string",
235
+ "description": "Path to optional index file"
236
+ }
237
+ },
238
+ "additionalProperties": false
239
+ }
240
+ },
241
+ "additionalProperties": false
242
+ }
243
+ },
244
+ "additionalProperties": false
245
+ },
155
246
  "communication": {
156
247
  "type": "object",
157
- "description": "Communication paths for agent messaging",
248
+ "description": "Communication paths and conventions for agent messaging",
158
249
  "properties": {
159
250
  "inbox": {
160
251
  "type": "string",
@@ -163,6 +254,53 @@
163
254
  "outbox": {
164
255
  "type": "string",
165
256
  "description": "Path to outbox directory"
257
+ },
258
+ "message_format": {
259
+ "type": "string",
260
+ "description": "Naming convention for inbox messages (e.g., YYYYMMDD_HHMM-[agent-name]-[topic].txt)"
261
+ },
262
+ "outbox_format": {
263
+ "type": "string",
264
+ "description": "Naming convention for outbox messages (e.g., YYYYMMDD_HHMM-to-[agent-name]-[topic].txt)"
265
+ },
266
+ "processed_dir": {
267
+ "type": "string",
268
+ "description": "Subdirectory for processed inbox messages (e.g., inbox/processed/)"
269
+ }
270
+ },
271
+ "additionalProperties": false
272
+ },
273
+ "protocols": {
274
+ "type": "object",
275
+ "description": "Mandatory startup and completion protocols for the agent",
276
+ "properties": {
277
+ "startup": {
278
+ "type": "object",
279
+ "description": "Startup protocol steps",
280
+ "properties": {
281
+ "first_session": {
282
+ "type": "array",
283
+ "description": "Steps to execute on first invocation in a session",
284
+ "items": {
285
+ "type": "string"
286
+ }
287
+ },
288
+ "subsequent": {
289
+ "type": "array",
290
+ "description": "Steps to execute on subsequent invocations in the same session",
291
+ "items": {
292
+ "type": "string"
293
+ }
294
+ }
295
+ },
296
+ "additionalProperties": false
297
+ },
298
+ "completion": {
299
+ "type": "array",
300
+ "description": "Mandatory steps to execute before finishing any task",
301
+ "items": {
302
+ "type": "string"
303
+ }
166
304
  }
167
305
  },
168
306
  "additionalProperties": false