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.
@@ -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",