9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { selectorError } from '@jackwener/opencli/errors';
|
|
export const sendCommand = cli({
|
|
site: 'cursor',
|
|
name: 'send',
|
|
access: 'write',
|
|
description: 'Send a prompt directly into Cursor Composer/Chat',
|
|
domain: 'localhost',
|
|
strategy: Strategy.UI,
|
|
browser: true,
|
|
args: [{ name: 'text', required: true, positional: true, help: 'Text to send into Cursor' }],
|
|
columns: ['Status', 'InjectedText'],
|
|
func: async (page, kwargs) => {
|
|
const textToInsert = kwargs.text;
|
|
const injected = await page.evaluate(`(function(text) {
|
|
// Find the Lexical editor input for Composer or Chat
|
|
let composer = document.querySelector('.aislash-editor-input, [data-lexical-editor="true"], [contenteditable="true"]');
|
|
|
|
if (!composer) {
|
|
return false;
|
|
}
|
|
|
|
composer.focus();
|
|
document.execCommand('insertText', false, text);
|
|
return true;
|
|
})(${JSON.stringify(textToInsert)})`);
|
|
if (!injected) {
|
|
throw selectorError('Cursor Composer input element');
|
|
}
|
|
// Submit the command. In Cursor, Enter usually submits the chat.
|
|
await page.wait(0.5);
|
|
await page.pressKey('Enter');
|
|
await page.wait(1);
|
|
return [
|
|
{
|
|
Status: 'Success',
|
|
InjectedText: textToInsert,
|
|
},
|
|
];
|
|
},
|
|
});
|