| 1 | import type { AgentDef } from '../types.js'; |
| 2 | |
| 3 | export const cursorAgent: AgentDef = { |
| 4 | id: 'cursor-agent', |
| 5 | name: 'Cursor Agent', |
| 6 | bin: 'cursor-agent', |
| 7 | versionArgs: ['--version'], |
| 8 | buildArgs(_prompt, _ctx) { |
| 9 | return ['--print']; |
| 10 | }, |
| 11 | streamFormat: 'plain', |
| 12 | promptViaStdin: true, |
| 13 | installUrl: 'https://cursor.com/cli', |
| 14 | }; |
| 15 |