@bohuyeshan/openagent-labforge-core 3.13.0 → 3.13.1

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/README.md CHANGED
@@ -176,7 +176,13 @@ The migration audit reference lives at:
176
176
 
177
177
  ## Installation Reality
178
178
 
179
- This project is still optimized for local-first use.
179
+ This project is still optimized for local-first use, but there is now a real
180
+ published path for `Windows x64`.
181
+
182
+ Current install reality:
183
+
184
+ - `Windows x64`: published npm package path is available
185
+ - other platforms: local build + local install remains the reliable path
180
186
 
181
187
  Recommended workflow:
182
188
 
package/README.zh-cn.md CHANGED
@@ -178,7 +178,13 @@ OpenAgent Labforge 是一个面向 OpenCode 的插件分支,当前聚焦三件
178
178
 
179
179
  ## 当前安装现实
180
180
 
181
- 这个项目仍以本地优先为主。
181
+ 这个项目仍以本地优先为主,但 `Windows x64` 现在已经有可用的
182
+ npm 发布路径。
183
+
184
+ 当前安装现实:
185
+
186
+ - `Windows x64`:可以走已发布 npm 包
187
+ - 其他平台:仍以本地构建 + 本地安装为准
182
188
 
183
189
  推荐流程:
184
190
 
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.0",
33033
+ version: "3.13.1",
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.0",
33125
+ "openagent-labforge-windows-x64": "3.13.1",
33126
33126
  "openagent-labforge-windows-x64-baseline": "3.11.2"
33127
33127
  },
33128
33128
  overrides: {
package/dist/index.js CHANGED
@@ -20518,13 +20518,16 @@ function isAgentRegistered(name) {
20518
20518
  }
20519
20519
  var sessionAgentMap = new Map;
20520
20520
  var ultraworkAutonomousSessionMap = new Map;
20521
+ function normalizeSessionAgentName(agent) {
20522
+ return getAgentConfigKey(agent);
20523
+ }
20521
20524
  function setSessionAgent(sessionID, agent) {
20522
20525
  if (!sessionAgentMap.has(sessionID)) {
20523
- sessionAgentMap.set(sessionID, agent);
20526
+ sessionAgentMap.set(sessionID, normalizeSessionAgentName(agent));
20524
20527
  }
20525
20528
  }
20526
20529
  function updateSessionAgent(sessionID, agent) {
20527
- sessionAgentMap.set(sessionID, agent);
20530
+ sessionAgentMap.set(sessionID, normalizeSessionAgentName(agent));
20528
20531
  }
20529
20532
  function getSessionAgent(sessionID) {
20530
20533
  return sessionAgentMap.get(sessionID);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bohuyeshan/openagent-labforge-core",
3
- "version": "3.13.0",
3
+ "version": "3.13.1",
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.0",
95
+ "openagent-labforge-windows-x64": "3.13.1",
96
96
  "openagent-labforge-windows-x64-baseline": "3.11.2"
97
97
  },
98
98
  "overrides": {