poe-code 3.0.407 → 3.0.408
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 +16 -0
- package/dist/cli/commands/gaslight.js.map +1 -1
- package/dist/cli/commands/pipeline.js +6 -1
- package/dist/cli/commands/pipeline.js.map +1 -1
- package/dist/cli/commands/ralph.js +4 -0
- package/dist/cli/commands/ralph.js.map +1 -1
- package/dist/index.js +110 -25
- package/dist/index.js.map +3 -3
- package/dist/metafile.json +1 -1
- package/dist/providers/poe-agent.js +20 -0
- package/dist/providers/poe-agent.js.map +2 -2
- package/dist/services/config.d.ts +39 -0
- package/dist/services/config.js +21 -0
- package/dist/services/config.js.map +1 -1
- package/package.json +1 -1
- package/packages/agent-gaslight/dist/config.js +7 -2
- package/packages/agent-gaslight/dist/run.js +29 -0
- package/packages/agent-gaslight/dist/types.d.ts +2 -0
- package/packages/pipeline/dist/run/pipeline.js +10 -8
- package/packages/pipeline/dist/types.d.ts +1 -0
- package/packages/ralph/dist/run/ralph.js +11 -9
- package/packages/ralph/dist/testing/simulation.d.ts +1 -0
- package/packages/ralph/dist/testing/simulation.js +1 -0
- package/packages/ralph/dist/types.d.ts +1 -0
|
@@ -57852,6 +57852,12 @@ var coreConfigScope = defineScope("core", {
|
|
|
57852
57852
|
}
|
|
57853
57853
|
});
|
|
57854
57854
|
var ralphConfigScope = defineScope("ralph", {
|
|
57855
|
+
archive: {
|
|
57856
|
+
type: "boolean",
|
|
57857
|
+
default: true,
|
|
57858
|
+
env: "POE_RALPH_ARCHIVE",
|
|
57859
|
+
doc: "Archive Ralph docs after successful completion"
|
|
57860
|
+
},
|
|
57855
57861
|
tui: {
|
|
57856
57862
|
type: "boolean",
|
|
57857
57863
|
default: false,
|
|
@@ -57860,6 +57866,12 @@ var ralphConfigScope = defineScope("ralph", {
|
|
|
57860
57866
|
}
|
|
57861
57867
|
});
|
|
57862
57868
|
var pipelineConfigScope = defineScope("pipeline", {
|
|
57869
|
+
archive: {
|
|
57870
|
+
type: "boolean",
|
|
57871
|
+
default: true,
|
|
57872
|
+
env: "POE_PIPELINE_ARCHIVE",
|
|
57873
|
+
doc: "Archive pipeline plans after successful completion"
|
|
57874
|
+
},
|
|
57863
57875
|
plan_directory: {
|
|
57864
57876
|
type: "string",
|
|
57865
57877
|
default: ".poe-code/pipeline/plans",
|
|
@@ -57873,6 +57885,14 @@ var pipelineConfigScope = defineScope("pipeline", {
|
|
|
57873
57885
|
doc: "Enable the Pipeline dashboard by default for terminal TTY runs"
|
|
57874
57886
|
}
|
|
57875
57887
|
});
|
|
57888
|
+
var gaslightConfigScope = defineScope("gaslight", {
|
|
57889
|
+
archive: {
|
|
57890
|
+
type: "boolean",
|
|
57891
|
+
default: false,
|
|
57892
|
+
env: "POE_GASLIGHT_ARCHIVE",
|
|
57893
|
+
doc: "Archive Gaslight plans after all follow-up rounds succeed"
|
|
57894
|
+
}
|
|
57895
|
+
});
|
|
57876
57896
|
var experimentConfigScope = defineScope("experiment", {
|
|
57877
57897
|
tui: {
|
|
57878
57898
|
type: "boolean",
|