poe-code 4.0.35 → 4.0.36
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/commands/gaslight.js +3 -3
- package/dist/cli/commands/gaslight.js.map +1 -1
- package/dist/cli/commands/pipeline.js +1 -1
- package/dist/cli/commands/pipeline.js.map +1 -1
- package/dist/cli/commands/ralph.js +1 -1
- package/dist/cli/commands/ralph.js.map +1 -1
- package/dist/index.js +16 -16
- package/dist/index.js.map +2 -2
- package/dist/metafile.json +1 -1
- package/dist/providers/poe-agent.js +6 -6
- package/dist/providers/poe-agent.js.map +2 -2
- package/dist/services/config.d.ts +12 -12
- package/dist/services/config.js +6 -6
- package/dist/services/config.js.map +1 -1
- package/package.json +1 -1
- package/packages/agent-gaslight/dist/config.js +5 -5
|
@@ -58454,10 +58454,10 @@ var coreConfigScope = defineScope("core", {
|
|
|
58454
58454
|
}
|
|
58455
58455
|
});
|
|
58456
58456
|
var ralphConfigScope = defineScope("ralph", {
|
|
58457
|
-
archive: {
|
|
58457
|
+
"auto-archive": {
|
|
58458
58458
|
type: "boolean",
|
|
58459
58459
|
default: true,
|
|
58460
|
-
env: "
|
|
58460
|
+
env: "POE_RALPH_AUTO_ARCHIVE",
|
|
58461
58461
|
doc: "Archive Ralph docs after successful completion"
|
|
58462
58462
|
},
|
|
58463
58463
|
tui: {
|
|
@@ -58468,10 +58468,10 @@ var ralphConfigScope = defineScope("ralph", {
|
|
|
58468
58468
|
}
|
|
58469
58469
|
});
|
|
58470
58470
|
var pipelineConfigScope = defineScope("pipeline", {
|
|
58471
|
-
archive: {
|
|
58471
|
+
"auto-archive": {
|
|
58472
58472
|
type: "boolean",
|
|
58473
58473
|
default: true,
|
|
58474
|
-
env: "
|
|
58474
|
+
env: "POE_PIPELINE_AUTO_ARCHIVE",
|
|
58475
58475
|
doc: "Archive pipeline plans after successful completion"
|
|
58476
58476
|
},
|
|
58477
58477
|
plan_directory: {
|
|
@@ -58488,10 +58488,10 @@ var pipelineConfigScope = defineScope("pipeline", {
|
|
|
58488
58488
|
}
|
|
58489
58489
|
});
|
|
58490
58490
|
var gaslightConfigScope = defineScope("gaslight", {
|
|
58491
|
-
archive: {
|
|
58491
|
+
"auto-archive": {
|
|
58492
58492
|
type: "boolean",
|
|
58493
58493
|
default: false,
|
|
58494
|
-
env: "
|
|
58494
|
+
env: "POE_GASLIGHT_AUTO_ARCHIVE",
|
|
58495
58495
|
doc: "Archive Gaslight plans after all follow-up rounds succeed"
|
|
58496
58496
|
}
|
|
58497
58497
|
});
|