@kl-c/matrixos 0.3.58 → 0.3.59
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/cli/index.js +1 -9
- package/dist/cli/snapshot/snapshot-core.d.ts +2 -2
- package/dist/cli-node/index.js +1 -9
- package/dist/config/schema/oh-my-opencode-config.d.ts +0 -4
- package/dist/index.js +726 -688
- package/dist/matrixos.schema.json +0 -14
- package/dist/tui.js +0 -12
- package/package.json +1 -1
|
@@ -7369,20 +7369,6 @@
|
|
|
7369
7369
|
],
|
|
7370
7370
|
"additionalProperties": false
|
|
7371
7371
|
},
|
|
7372
|
-
"memory": {
|
|
7373
|
-
"type": "object",
|
|
7374
|
-
"properties": {
|
|
7375
|
-
"enabled": {
|
|
7376
|
-
"type": "boolean"
|
|
7377
|
-
},
|
|
7378
|
-
"max_entries": {
|
|
7379
|
-
"type": "integer",
|
|
7380
|
-
"minimum": 1,
|
|
7381
|
-
"maximum": 100
|
|
7382
|
-
}
|
|
7383
|
-
},
|
|
7384
|
-
"additionalProperties": false
|
|
7385
|
-
},
|
|
7386
7372
|
"dreamer": {
|
|
7387
7373
|
"type": "object",
|
|
7388
7374
|
"properties": {
|
package/dist/tui.js
CHANGED
|
@@ -64325,16 +64325,6 @@ var init_gateway2 = __esm(() => {
|
|
|
64325
64325
|
GatewayConfigSectionSchema = GatewayConfigSchema.optional();
|
|
64326
64326
|
});
|
|
64327
64327
|
|
|
64328
|
-
// packages/omo-opencode/src/config/schema/memory.ts
|
|
64329
|
-
var MemoryConfigSchema;
|
|
64330
|
-
var init_memory = __esm(() => {
|
|
64331
|
-
init_zod();
|
|
64332
|
-
MemoryConfigSchema = exports_external.object({
|
|
64333
|
-
enabled: exports_external.boolean().optional(),
|
|
64334
|
-
max_entries: exports_external.number().int().min(1).max(100).optional()
|
|
64335
|
-
});
|
|
64336
|
-
});
|
|
64337
|
-
|
|
64338
64328
|
// packages/omo-opencode/src/config/schema/monitor.ts
|
|
64339
64329
|
var MonitorConfigSchema;
|
|
64340
64330
|
var init_monitor = __esm(() => {
|
|
@@ -64940,7 +64930,6 @@ var init_oh_my_opencode_config = __esm(() => {
|
|
|
64940
64930
|
init_git_master();
|
|
64941
64931
|
init_i18n();
|
|
64942
64932
|
init_keyword_detector();
|
|
64943
|
-
init_memory();
|
|
64944
64933
|
init_notification();
|
|
64945
64934
|
init_model_capabilities();
|
|
64946
64935
|
init_monitor();
|
|
@@ -65010,7 +64999,6 @@ var init_oh_my_opencode_config = __esm(() => {
|
|
|
65010
64999
|
egress: EgressConfigSectionSchema,
|
|
65011
65000
|
cron: CronConfigSchema.optional(),
|
|
65012
65001
|
default_mode: DefaultModeConfigSchema.optional(),
|
|
65013
|
-
memory: MemoryConfigSchema.optional(),
|
|
65014
65002
|
dreamer: DreamerConfigSchema.optional(),
|
|
65015
65003
|
profiles: ProfileReferencesSchema.optional(),
|
|
65016
65004
|
profileRegistry: ProfileRegistrySchema.optional(),
|
package/package.json
CHANGED