@link-assistant/agent 0.0.11 → 0.0.12

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.11",
3
+ "version": "0.0.12",
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",
@@ -132,9 +132,10 @@ export const AuthLoginCommand = cmd({
132
132
  vercel: 5,
133
133
  };
134
134
 
135
- let provider = await prompts.autocomplete({
135
+ // Note: Using `select` instead of `autocomplete` because `autocomplete` is only
136
+ // available in @clack/prompts v1.0.0-alpha.1+, while this package uses stable v0.11.0
137
+ let provider = await prompts.select({
136
138
  message: 'Select provider',
137
- maxItems: 8,
138
139
  options: [
139
140
  ...pipe(
140
141
  providers,