@basou/core 0.38.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 +12 -15
- package/dist/index.js +42 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/manifest.schema.json +20 -0
package/package.json
CHANGED
|
@@ -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": [
|