@bohuyeshan/openagent-labforge-core 3.13.2 → 3.13.3
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 +2 -2
- package/dist/index.js +4 -3
- package/package.json +2 -2
package/dist/cli/index.js
CHANGED
|
@@ -33030,7 +33030,7 @@ var {
|
|
|
33030
33030
|
// package.json
|
|
33031
33031
|
var package_default = {
|
|
33032
33032
|
name: "@bohuyeshan/openagent-labforge-core",
|
|
33033
|
-
version: "3.13.
|
|
33033
|
+
version: "3.13.3",
|
|
33034
33034
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
33035
33035
|
main: "./dist/index.js",
|
|
33036
33036
|
types: "./dist/index.d.ts",
|
|
@@ -33122,7 +33122,7 @@ var package_default = {
|
|
|
33122
33122
|
"openagent-labforge-linux-x64-baseline": "3.11.2",
|
|
33123
33123
|
"openagent-labforge-linux-x64-musl": "3.11.2",
|
|
33124
33124
|
"openagent-labforge-linux-x64-musl-baseline": "3.11.2",
|
|
33125
|
-
"openagent-labforge-windows-x64": "3.13.
|
|
33125
|
+
"openagent-labforge-windows-x64": "3.13.3",
|
|
33126
33126
|
"openagent-labforge-windows-x64-baseline": "3.11.2"
|
|
33127
33127
|
},
|
|
33128
33128
|
overrides: {
|
package/dist/index.js
CHANGED
|
@@ -96149,7 +96149,8 @@ async function applyAgentConfig(params) {
|
|
|
96149
96149
|
const isSisyphusEnabled = params.pluginConfig.sisyphus_agent?.disabled !== true;
|
|
96150
96150
|
const builderEnabled = params.pluginConfig.sisyphus_agent?.default_builder_enabled ?? false;
|
|
96151
96151
|
const plannerEnabled = params.pluginConfig.sisyphus_agent?.planner_enabled ?? true;
|
|
96152
|
-
const replacePlan = params.pluginConfig.sisyphus_agent?.replace_plan ??
|
|
96152
|
+
const replacePlan = params.pluginConfig.sisyphus_agent?.replace_plan ?? false;
|
|
96153
|
+
const hijackBuild = params.pluginConfig.sisyphus_agent?.hijack_build ?? false;
|
|
96153
96154
|
const shouldDemotePlan = plannerEnabled && replacePlan;
|
|
96154
96155
|
const configuredDefaultAgent = getConfiguredDefaultAgent(params.config);
|
|
96155
96156
|
if (isSisyphusEnabled && builtinAgents.sisyphus) {
|
|
@@ -96182,7 +96183,7 @@ async function applyAgentConfig(params) {
|
|
|
96182
96183
|
});
|
|
96183
96184
|
}
|
|
96184
96185
|
const filteredConfigAgents = configAgent ? Object.fromEntries(Object.entries(configAgent).filter(([key]) => {
|
|
96185
|
-
if (key === "build")
|
|
96186
|
+
if (key === "build" && hijackBuild)
|
|
96186
96187
|
return false;
|
|
96187
96188
|
if (key === "plan" && shouldDemotePlan)
|
|
96188
96189
|
return false;
|
|
@@ -96209,7 +96210,7 @@ async function applyAgentConfig(params) {
|
|
|
96209
96210
|
...filterDisabledAgents(filteredProjectAgents),
|
|
96210
96211
|
...filterDisabledAgents(filteredPluginAgents),
|
|
96211
96212
|
...filteredConfigAgents,
|
|
96212
|
-
build: { ...migratedBuild, mode: "subagent", hidden: true },
|
|
96213
|
+
...hijackBuild ? { build: { ...migratedBuild, mode: "subagent", hidden: true } } : {},
|
|
96213
96214
|
...planDemoteConfig ? { plan: planDemoteConfig } : {}
|
|
96214
96215
|
};
|
|
96215
96216
|
} else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bohuyeshan/openagent-labforge-core",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.3",
|
|
4
4
|
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"openagent-labforge-linux-x64-baseline": "3.11.2",
|
|
93
93
|
"openagent-labforge-linux-x64-musl": "3.11.2",
|
|
94
94
|
"openagent-labforge-linux-x64-musl-baseline": "3.11.2",
|
|
95
|
-
"openagent-labforge-windows-x64": "3.13.
|
|
95
|
+
"openagent-labforge-windows-x64": "3.13.3",
|
|
96
96
|
"openagent-labforge-windows-x64-baseline": "3.11.2"
|
|
97
97
|
},
|
|
98
98
|
"overrides": {
|