Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

37 lines
1.3 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
export const extractCodeCommand = cli({
site: 'cursor',
name: 'extract-code',
access: 'read',
description: 'Extract multi-line code blocks from the current Cursor conversation',
domain: 'localhost',
strategy: Strategy.UI,
browser: true,
args: [],
columns: ['Code'],
func: async (page) => {
const blocks = await page.evaluate(`
(function() {
// Find standard pre/code blocks
let elements = Array.from(document.querySelectorAll('pre code, .markdown-root pre'));
// Fallback to Monaco editor content inside the UI
if (elements.length === 0) {
elements = Array.from(document.querySelectorAll('.monaco-editor'));
}
// Generic fallback to any code tag that spans multiple lines
if (elements.length === 0) {
elements = Array.from(document.querySelectorAll('code')).filter(c => c.innerText.includes('\\n'));
}
return elements.map(el => el.innerText || el.textContent || '').filter(text => text.trim().length > 0);
})()
`);
if (!blocks || blocks.length === 0) {
return [{ Code: 'No code blocks found in Cursor.' }];
}
return blocks.map((code) => ({ Code: code }));
},
});