qwen-agent-server 0.11.3 → 0.11.4

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/version.js CHANGED
@@ -9,5 +9,5 @@
9
9
  // Bump this in lockstep with .claude-plugin/plugin.json and
10
10
  // .claude-plugin/marketplace.json (metadata.version and plugins[0].version).
11
11
  // The version_consistency test enforces equality across all four sites.
12
- export const SUPERVISOR_VERSION = "0.11.3";
12
+ export const SUPERVISOR_VERSION = "0.11.4";
13
13
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qwen-agent-server",
3
- "version": "0.11.3",
3
+ "version": "0.11.4",
4
4
  "description": "Stateful MCP supervisor exposing Qwen Code as a multi-backend agent — see docs/rdr/RDR-001",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -15,7 +15,8 @@
15
15
  "qwen-agent-server": "dist/server.js"
16
16
  },
17
17
  "files": [
18
- "dist"
18
+ "dist",
19
+ "scripts"
19
20
  ],
20
21
  "scripts": {
21
22
  "build": "tsc",
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env bash
2
+ # Read the resolved extension list from env, prepend as a CLI flag,
3
+ # delegate to the real qwen binary.
4
+ exec "$QWEN_REAL_BIN" \
5
+ ${QWEN_AGENT_EXTENSIONS:+--extensions "$QWEN_AGENT_EXTENSIONS"} \
6
+ "$@"