Files
jackwener__opencli/clis/cursor/extract-code.js
jakevin d2974a9ff6 refactor(adapters): convert adapter layer from TypeScript to JavaScript (#928)
* refactor(adapters): convert adapter layer from TypeScript to JavaScript

Core framework stays TypeScript; adapter layer moves to JS-first.
Adapters are essentially "executable config + browser scripts" that
barely use TS features — this simplifies the build/distribution pipeline
by removing the dist/clis/ intermediate compilation step.

Changes:
- Convert all 753 adapter files in clis/ from .ts to .js
- Update tsconfig to exclude clis/ from compilation
- Simplify build-manifest to scan clis/*.js directly (no dist/clis/)
- Update discovery, main, fetch-adapters to load JS adapters from clis/
- Update generate-verified to output .js artifacts
- Update package.json files field: dist/clis/ → clis/
- Fix all test files for the .ts → .js transition

* fix(main): use findPackageRoot for BUILTIN_CLIS path

The previous relative path (../../clis from __dirname) only worked for
dist/src/main.js but broke dev mode (tsx src/main.ts) where __dirname
is <repo>/src — resolving to /clis instead of <repo>/clis.

Use findPackageRoot() which works for both dev and prod paths.
2026-04-10 14:52:18 +08:00

36 lines
1.3 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
export const extractCodeCommand = cli({
site: 'cursor',
name: 'extract-code',
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 }));
},
});