|
| 1 | +# Case Study: Issue #43 - Agent auth login does not work |
| 2 | + |
| 3 | +## Summary |
| 4 | + |
| 5 | +The `agent auth login` command fails with a `TypeError: prompts.autocomplete is not a function` error when users try to log in to a provider without specifying a URL. |
| 6 | + |
| 7 | +## Error Message |
| 8 | + |
| 9 | +``` |
| 10 | +TypeError: prompts.autocomplete is not a function. (In 'prompts.autocomplete({ |
| 11 | + message: "Select provider", |
| 12 | + maxItems: 8, |
| 13 | + options: [...] |
| 14 | +})', 'prompts.autocomplete' is undefined) |
| 15 | + at handler (/Users/konard/.bun/install/global/node_modules/@link-assistant/agent/src/cli/cmd/auth.ts:135:34) |
| 16 | +``` |
| 17 | + |
| 18 | +## Root Cause Analysis |
| 19 | + |
| 20 | +### Version Mismatch |
| 21 | + |
| 22 | +The issue stems from a **version mismatch** in the `@clack/prompts` dependency: |
| 23 | + |
| 24 | +| Package | Version | Has `autocomplete`? | |
| 25 | +| --------------------------------- | ------------------------------ | ------------------- | |
| 26 | +| @link-assistant/agent (this repo) | `@clack/prompts@^0.11.0` | **No** | |
| 27 | +| opencode (original) | `@clack/prompts@1.0.0-alpha.1` | **Yes** | |
| 28 | + |
| 29 | +### Timeline of Events |
| 30 | + |
| 31 | +1. **Original OpenCode Development**: OpenCode was developed using `@clack/prompts@1.0.0-alpha.1`, which includes the `autocomplete` function (added in version `1.0.0-alpha.0`). |
| 32 | + |
| 33 | +2. **Agent Fork/Port**: When creating the `@link-assistant/agent` package, the `auth.ts` code was copied from OpenCode. However, the dependency was set to `@clack/prompts@^0.11.0` (a stable but older version). |
| 34 | + |
| 35 | +3. **API Mismatch**: The `autocomplete` function was introduced in the `1.0.0-alpha.0` release of `@clack/prompts`. Version `0.11.0` does not include this function. |
| 36 | + |
| 37 | +### Available Functions Comparison |
| 38 | + |
| 39 | +**`@clack/prompts@0.11.0` exports:** |
| 40 | + |
| 41 | +- `cancel`, `confirm`, `group`, `groupMultiselect`, `intro`, `isCancel`, `log`, `multiselect`, `note`, `outro`, `password`, `select`, `selectKey`, `spinner`, `stream`, `tasks`, `text`, `updateSettings` |
| 42 | + |
| 43 | +**`@clack/prompts@1.0.0-alpha.1` adds:** |
| 44 | + |
| 45 | +- `autocomplete` |
| 46 | +- `autocomplete-multiselect` |
| 47 | +- And other alpha features |
| 48 | + |
| 49 | +## Evidence |
| 50 | + |
| 51 | +### Source Code References |
| 52 | + |
| 53 | +1. **Agent's auth.ts** (`src/cli/cmd/auth.ts:135`): |
| 54 | + |
| 55 | + ```typescript |
| 56 | + let provider = await prompts.autocomplete({ |
| 57 | + message: 'Select provider', |
| 58 | + maxItems: 8, |
| 59 | + options: [...] |
| 60 | + }); |
| 61 | + ``` |
| 62 | + |
| 63 | +2. **OpenCode's auth.ts** (`original-opencode/packages/opencode/src/cli/cmd/auth.ts:116`): |
| 64 | + |
| 65 | + ```typescript |
| 66 | + let provider = await prompts.autocomplete({ |
| 67 | + message: "Select provider", |
| 68 | + maxItems: 8, |
| 69 | + options: [...] |
| 70 | + }); |
| 71 | + ``` |
| 72 | + |
| 73 | +3. **Agent's package.json** (`package.json:58`): |
| 74 | + |
| 75 | + ```json |
| 76 | + "@clack/prompts": "^0.11.0" |
| 77 | + ``` |
| 78 | + |
| 79 | +4. **OpenCode's package.json** (`original-opencode/packages/opencode/package.json:47`): |
| 80 | + ```json |
| 81 | + "@clack/prompts": "1.0.0-alpha.1" |
| 82 | + ``` |
| 83 | + |
| 84 | +## Possible Solutions |
| 85 | + |
| 86 | +### Option A: Upgrade to Alpha Version (Recommended for Feature Parity) |
| 87 | + |
| 88 | +Update `package.json` to use `@clack/prompts@1.0.0-alpha.1`: |
| 89 | + |
| 90 | +```json |
| 91 | +"@clack/prompts": "1.0.0-alpha.1" |
| 92 | +``` |
| 93 | + |
| 94 | +**Pros:** |
| 95 | + |
| 96 | +- Full feature parity with OpenCode |
| 97 | +- No code changes needed |
| 98 | + |
| 99 | +**Cons:** |
| 100 | + |
| 101 | +- Alpha version may have breaking changes |
| 102 | +- Less stable than stable releases |
| 103 | + |
| 104 | +### Option B: Replace `autocomplete` with `select` (Recommended for Stability) |
| 105 | + |
| 106 | +Replace `prompts.autocomplete()` with `prompts.select()` which is available in both versions: |
| 107 | + |
| 108 | +```typescript |
| 109 | +// Before |
| 110 | +let provider = await prompts.autocomplete({ |
| 111 | + message: 'Select provider', |
| 112 | + maxItems: 8, |
| 113 | + options: [...] |
| 114 | +}); |
| 115 | + |
| 116 | +// After |
| 117 | +let provider = await prompts.select({ |
| 118 | + message: 'Select provider', |
| 119 | + options: [...] |
| 120 | +}); |
| 121 | +``` |
| 122 | + |
| 123 | +**Pros:** |
| 124 | + |
| 125 | +- Works with stable version of `@clack/prompts` |
| 126 | +- More predictable behavior |
| 127 | + |
| 128 | +**Cons:** |
| 129 | + |
| 130 | +- Loses autocomplete/search functionality |
| 131 | +- Users must scroll through all providers |
| 132 | + |
| 133 | +### Option C: Implement Custom Autocomplete |
| 134 | + |
| 135 | +Use `fuzzysort` (already a dependency) with `prompts.select()` to provide search-like functionality. |
| 136 | + |
| 137 | +**Pros:** |
| 138 | + |
| 139 | +- Works with stable version |
| 140 | +- Custom implementation can be tailored to needs |
| 141 | + |
| 142 | +**Cons:** |
| 143 | + |
| 144 | +- More complex implementation |
| 145 | +- Additional code to maintain |
| 146 | + |
| 147 | +## Chosen Solution |
| 148 | + |
| 149 | +**Option B** was implemented for this fix because: |
| 150 | + |
| 151 | +1. It uses stable dependencies |
| 152 | +2. The code change is minimal |
| 153 | +3. The user experience is still good with `select` |
| 154 | +4. It matches the pattern used elsewhere in the codebase |
| 155 | + |
| 156 | +## Implementation Details |
| 157 | + |
| 158 | +### Files Modified |
| 159 | + |
| 160 | +1. **`src/cli/cmd/auth.ts`** - Already fixed with comment explaining version constraint |
| 161 | +2. **`src/cli/cmd/export.ts`** - Fixed by replacing `prompts.autocomplete` with `prompts.select` |
| 162 | + |
| 163 | +### Code Changes |
| 164 | + |
| 165 | +**Before (broken):** |
| 166 | + |
| 167 | +```typescript |
| 168 | +const selectedSession = await prompts.autocomplete({ |
| 169 | + message: 'Select session to export', |
| 170 | + maxItems: 10, |
| 171 | + options: sessions.map((session) => ({ |
| 172 | + label: session.title, |
| 173 | + value: session.id, |
| 174 | + hint: `${new Date(session.time.updated).toLocaleString()} • ${session.id.slice(-8)}`, |
| 175 | + })), |
| 176 | + output: process.stderr, |
| 177 | +}); |
| 178 | +``` |
| 179 | + |
| 180 | +**After (fixed):** |
| 181 | + |
| 182 | +```typescript |
| 183 | +const selectedSession = await prompts.select({ |
| 184 | + message: 'Select session to export', |
| 185 | + options: sessions.map((session) => ({ |
| 186 | + label: session.title, |
| 187 | + value: session.id, |
| 188 | + hint: `${new Date(session.time.updated).toLocaleString()} • ${session.id.slice(-8)}`, |
| 189 | + })), |
| 190 | +}); |
| 191 | +``` |
| 192 | + |
| 193 | +### Key Changes Made |
| 194 | + |
| 195 | +1. **Function Replacement**: `prompts.autocomplete()` → `prompts.select()` |
| 196 | +2. **Parameter Removal**: Removed `maxItems` (not supported by `select`) |
| 197 | +3. **Parameter Removal**: Removed `output` parameters (not supported in v0.11.0) |
| 198 | +4. **Simplified Calls**: All `prompts` functions now use default output streams |
| 199 | + |
| 200 | +## Verification and Testing |
| 201 | + |
| 202 | +### Test Results |
| 203 | + |
| 204 | +✅ **Auth Login Command**: Now displays interactive provider selection |
| 205 | +✅ **Export Command**: Runs without autocomplete errors |
| 206 | +✅ **TypeScript Compilation**: No type errors |
| 207 | +✅ **ESLint**: No linting violations |
| 208 | + |
| 209 | +### Test Commands Executed |
| 210 | + |
| 211 | +```bash |
| 212 | +# Test auth login help |
| 213 | +npm run dev -- auth login --help |
| 214 | + |
| 215 | +# Test auth login interactive (with timeout) |
| 216 | +timeout 5s npm run dev -- auth login |
| 217 | + |
| 218 | +# Test export command |
| 219 | +timeout 5s npm run dev -- export |
| 220 | + |
| 221 | +# Run linting |
| 222 | +npm run lint |
| 223 | +``` |
| 224 | + |
| 225 | +### Verification Output |
| 226 | + |
| 227 | +**Auth Login (working):** |
| 228 | + |
| 229 | +``` |
| 230 | +┌ Add credential |
| 231 | +INFO 2025-12-16T12:00:59 +62ms service=models.dev file={} refreshing |
| 232 | +INFO 2025-12-16T12:00:59 +43ms service=models.dev file={} refreshing |
| 233 | +│ |
| 234 | +◆ Select provider |
| 235 | +│ |
| 236 | +└ |
| 237 | +``` |
| 238 | + |
| 239 | +## Status |
| 240 | + |
| 241 | +✅ **RESOLVED** - Issue #43 has been completely fixed and verified. |
| 242 | + |
| 243 | +## References |
| 244 | + |
| 245 | +- GitHub Issue: https://github.com/link-assistant/agent/issues/43 |
| 246 | +- @clack/prompts Changelog: https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md |
| 247 | +- @clack/prompts npm: https://www.npmjs.com/package/@clack/prompts |
0 commit comments