@basou/core 0.37.0 → 0.39.0
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/index.d.ts +35 -24
- package/dist/index.js +134 -28
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/event.schema.json +16 -2
- package/schemas/manifest.schema.json +20 -0
- package/schemas/session-import.schema.json +16 -2
package/package.json
CHANGED
|
@@ -441,7 +441,14 @@
|
|
|
441
441
|
"const": "command_executed"
|
|
442
442
|
},
|
|
443
443
|
"command": {
|
|
444
|
-
"
|
|
444
|
+
"anyOf": [
|
|
445
|
+
{
|
|
446
|
+
"type": "string"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"type": "null"
|
|
450
|
+
}
|
|
451
|
+
]
|
|
445
452
|
},
|
|
446
453
|
"args": {
|
|
447
454
|
"type": "array",
|
|
@@ -450,7 +457,14 @@
|
|
|
450
457
|
}
|
|
451
458
|
},
|
|
452
459
|
"cwd": {
|
|
453
|
-
"
|
|
460
|
+
"anyOf": [
|
|
461
|
+
{
|
|
462
|
+
"type": "string"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"type": "null"
|
|
466
|
+
}
|
|
467
|
+
]
|
|
454
468
|
},
|
|
455
469
|
"exit_code": {
|
|
456
470
|
"anyOf": [
|
|
@@ -228,6 +228,26 @@
|
|
|
228
228
|
],
|
|
229
229
|
"additionalProperties": {}
|
|
230
230
|
}
|
|
231
|
+
},
|
|
232
|
+
"channels": {
|
|
233
|
+
"type": "object",
|
|
234
|
+
"properties": {
|
|
235
|
+
"codex": {
|
|
236
|
+
"description": "Opt in to rendering this workspace's orientation into the user-global ~/.codex/AGENTS.md on `basou refresh` and `basou run codex`. Off when absent: that file is auto-loaded by Codex for every project on the machine, so nothing is written there unless the workspace says so.",
|
|
237
|
+
"type": "boolean"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"additionalProperties": {}
|
|
241
|
+
},
|
|
242
|
+
"policies": {
|
|
243
|
+
"type": "object",
|
|
244
|
+
"properties": {
|
|
245
|
+
"confidential": {
|
|
246
|
+
"description": "This workspace's provenance must not persist where another workspace's tool reads it. Today this means its orientation is never rendered into the user-global ~/.codex/AGENTS.md by `basou refresh` or `basou run codex`, regardless of `channels`. It does not yet govern `basou protocol sync`, and it gates writing only — it cannot keep another workspace's block out of this workspace's tool.",
|
|
247
|
+
"type": "boolean"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"additionalProperties": {}
|
|
231
251
|
}
|
|
232
252
|
},
|
|
233
253
|
"required": [
|
|
@@ -685,7 +685,14 @@
|
|
|
685
685
|
"const": "command_executed"
|
|
686
686
|
},
|
|
687
687
|
"command": {
|
|
688
|
-
"
|
|
688
|
+
"anyOf": [
|
|
689
|
+
{
|
|
690
|
+
"type": "string"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"type": "null"
|
|
694
|
+
}
|
|
695
|
+
]
|
|
689
696
|
},
|
|
690
697
|
"args": {
|
|
691
698
|
"type": "array",
|
|
@@ -694,7 +701,14 @@
|
|
|
694
701
|
}
|
|
695
702
|
},
|
|
696
703
|
"cwd": {
|
|
697
|
-
"
|
|
704
|
+
"anyOf": [
|
|
705
|
+
{
|
|
706
|
+
"type": "string"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"type": "null"
|
|
710
|
+
}
|
|
711
|
+
]
|
|
698
712
|
},
|
|
699
713
|
"exit_code": {
|
|
700
714
|
"anyOf": [
|