@link-assistant/agent 0.0.16 → 0.0.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/agent",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "A minimal, public domain AI CLI agent compatible with OpenCode's JSON interface. Bun-only runtime.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -704,7 +704,7 @@ export namespace SessionPrompt {
704
704
  // When --system-message is provided, use it exclusively without any
705
705
  // additional context (no environment, no custom instructions, no header).
706
706
  // This is critical for models with low token limits (e.g., qwen3-32b with 6K TPM).
707
- if (input.system) {
707
+ if (input.system !== undefined) {
708
708
  return [input.system];
709
709
  }
710
710