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
46 lines
1.7 KiB
JavaScript
46 lines
1.7 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
export const extractDiffCommand = cli({
|
|
site: 'codex',
|
|
name: 'extract-diff',
|
|
access: 'read',
|
|
description: 'Extract visual code review diff patches from Codex',
|
|
domain: 'localhost',
|
|
strategy: Strategy.UI,
|
|
browser: true,
|
|
columns: ['File', 'Diff'],
|
|
func: async (page) => {
|
|
const diffs = await page.evaluate(`
|
|
(function() {
|
|
const results = [];
|
|
// Assuming diffs are rendered with standard diff classes or monaco difference editors
|
|
const diffBlocks = document.querySelectorAll('.diff-editor, .monaco-diff-editor, [data-testid="diff-view"]');
|
|
|
|
diffBlocks.forEach((block, index) => {
|
|
// Very roughly scrape text representing additions/deletions mapped from the inner wrapper
|
|
results.push({
|
|
File: block.getAttribute('data-filename') || \`DiffBlock_\${index+1}\`,
|
|
Diff: block.innerText || block.textContent
|
|
});
|
|
});
|
|
|
|
// If no structured diffs found, try to find any code blocks labeled as patches
|
|
if (results.length === 0) {
|
|
const codeBlocks = document.querySelectorAll('pre code.language-diff, pre code.language-patch');
|
|
codeBlocks.forEach((code, index) => {
|
|
results.push({
|
|
File: \`Patch_\${index+1}\`,
|
|
Diff: code.innerText || code.textContent
|
|
});
|
|
});
|
|
}
|
|
|
|
return results;
|
|
})()
|
|
`);
|
|
if (diffs.length === 0) {
|
|
return [{ File: 'No diffs found', Diff: 'Try running opencli codex send "/review" first' }];
|
|
}
|
|
return diffs;
|
|
},
|
|
});
|