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
75 lines
3.0 KiB
JavaScript
75 lines
3.0 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { ArgumentError, selectorError } from '@jackwener/opencli/errors';
|
|
export const askCommand = cli({
|
|
site: 'cursor',
|
|
name: 'ask',
|
|
access: 'write',
|
|
description: 'Send a prompt and wait for the AI response (send + wait + read)',
|
|
domain: 'localhost',
|
|
strategy: Strategy.UI,
|
|
browser: true,
|
|
args: [
|
|
{ name: 'text', required: true, positional: true, help: 'Prompt to send' },
|
|
{ name: 'timeout', type: 'int', required: false, help: 'Max seconds to wait for response (default: 30)', default: 30 },
|
|
],
|
|
columns: ['Role', 'Text'],
|
|
func: async (page, kwargs) => {
|
|
const text = kwargs.text;
|
|
const timeout = kwargs.timeout;
|
|
if (!Number.isInteger(timeout) || timeout < 1) {
|
|
throw new ArgumentError('--timeout must be a positive integer (seconds)');
|
|
}
|
|
// Count existing messages before sending
|
|
const beforeCount = await page.evaluate(`
|
|
document.querySelectorAll('[data-message-role]').length
|
|
`);
|
|
// Inject text into the active editor and submit
|
|
const injected = await page.evaluate(`(function(text) {
|
|
let editor = document.querySelector('.aislash-editor-input, [data-lexical-editor="true"], [contenteditable="true"]');
|
|
if (!editor) return false;
|
|
editor.focus();
|
|
document.execCommand('insertText', false, text);
|
|
return true;
|
|
})(${JSON.stringify(text)})`);
|
|
if (!injected)
|
|
throw selectorError('Cursor input element');
|
|
await page.wait(0.5);
|
|
await page.pressKey('Enter');
|
|
// Poll until a new assistant message appears or timeout
|
|
const pollInterval = 2; // seconds
|
|
const maxPolls = Math.ceil(timeout / pollInterval);
|
|
let response = '';
|
|
for (let i = 0; i < maxPolls; i++) {
|
|
await page.wait(pollInterval);
|
|
const result = await page.evaluate(`
|
|
(function(prevCount) {
|
|
const msgs = document.querySelectorAll('[data-message-role]');
|
|
if (msgs.length <= prevCount) return null;
|
|
|
|
const lastMsg = msgs[msgs.length - 1];
|
|
const role = lastMsg.getAttribute('data-message-role');
|
|
if (role === 'human') return null; // Still waiting for assistant
|
|
|
|
const root = lastMsg.querySelector('.markdown-root');
|
|
const text = root ? root.innerText : lastMsg.innerText;
|
|
return text ? text.trim() : null;
|
|
})(${beforeCount})
|
|
`);
|
|
if (result) {
|
|
response = result;
|
|
break;
|
|
}
|
|
}
|
|
if (!response) {
|
|
return [
|
|
{ Role: 'User', Text: text },
|
|
{ Role: 'System', Text: `No response received within ${timeout}s. The AI may still be generating.` },
|
|
];
|
|
}
|
|
return [
|
|
{ Role: 'User', Text: text },
|
|
{ Role: 'Assistant', Text: response },
|
|
];
|
|
},
|
|
});
|