@caupulican/pi-adaptative 0.80.98 → 0.80.100
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/CHANGELOG.md +36 -0
- package/dist/core/agent-session.d.ts +27 -3
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +200 -11
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/autonomy/foreground-envelope.d.ts +22 -0
- package/dist/core/autonomy/foreground-envelope.d.ts.map +1 -0
- package/dist/core/autonomy/foreground-envelope.js +65 -0
- package/dist/core/autonomy/foreground-envelope.js.map +1 -0
- package/dist/core/autonomy/status.d.ts +11 -0
- package/dist/core/autonomy/status.d.ts.map +1 -1
- package/dist/core/autonomy/status.js.map +1 -1
- package/dist/core/delegation/worker-actions.d.ts +50 -0
- package/dist/core/delegation/worker-actions.d.ts.map +1 -0
- package/dist/core/delegation/worker-actions.js +70 -0
- package/dist/core/delegation/worker-actions.js.map +1 -0
- package/dist/core/delegation/worker-runner.d.ts +9 -0
- package/dist/core/delegation/worker-runner.d.ts.map +1 -1
- package/dist/core/delegation/worker-runner.js +38 -4
- package/dist/core/delegation/worker-runner.js.map +1 -1
- package/dist/core/model-capability.d.ts +19 -0
- package/dist/core/model-capability.d.ts.map +1 -1
- package/dist/core/model-capability.js +19 -0
- package/dist/core/model-capability.js.map +1 -1
- package/dist/core/models/default-model-suggestions.d.ts +34 -0
- package/dist/core/models/default-model-suggestions.d.ts.map +1 -0
- package/dist/core/models/default-model-suggestions.js +58 -0
- package/dist/core/models/default-model-suggestions.js.map +1 -0
- package/dist/core/settings-manager.d.ts +3 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +5 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +1 -1
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector.js +20 -0
- package/dist/modes/interactive/components/settings-selector.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +10 -1
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
|
@@ -786,6 +786,20 @@ class WorkerDelegationSettingsSubmenu extends Container {
|
|
|
786
786
|
currentValue: String(this.state.maxWallClockMs),
|
|
787
787
|
values: RESEARCH_LANE_MAX_WALL_CLOCK_MS_VALUES,
|
|
788
788
|
},
|
|
789
|
+
{
|
|
790
|
+
id: "worker-delegation-write-enabled",
|
|
791
|
+
label: "Allow file writes",
|
|
792
|
+
description: "Let workers change files (code-writing lane). Requires write paths below; actions apply through the envelope path scope",
|
|
793
|
+
currentValue: String(this.state.writeEnabled ?? false),
|
|
794
|
+
values: ["true", "false"],
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
id: "worker-delegation-max-concurrent",
|
|
798
|
+
label: "Max concurrent workers",
|
|
799
|
+
description: "How many delegated workers may run at once",
|
|
800
|
+
currentValue: String(this.state.maxConcurrent ?? 1),
|
|
801
|
+
values: ["1", "2", "3"],
|
|
802
|
+
},
|
|
789
803
|
];
|
|
790
804
|
this.settingsList = new SettingsList(items, Math.min(items.length, 10), getSettingsListTheme(), (id, newValue) => {
|
|
791
805
|
switch (id) {
|
|
@@ -801,6 +815,12 @@ class WorkerDelegationSettingsSubmenu extends Container {
|
|
|
801
815
|
case "worker-delegation-max-wall-clock-ms":
|
|
802
816
|
this.state = { ...this.state, maxWallClockMs: Number(newValue) };
|
|
803
817
|
break;
|
|
818
|
+
case "worker-delegation-write-enabled":
|
|
819
|
+
this.state = { ...this.state, writeEnabled: newValue === "true" };
|
|
820
|
+
break;
|
|
821
|
+
case "worker-delegation-max-concurrent":
|
|
822
|
+
this.state = { ...this.state, maxConcurrent: Number(newValue) };
|
|
823
|
+
break;
|
|
804
824
|
default:
|
|
805
825
|
return;
|
|
806
826
|
}
|