9b395f5cc3
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
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
import * as fs from 'node:fs';
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
export const exportCommand = cli({
|
|
site: 'chatwise',
|
|
name: 'export',
|
|
access: 'read',
|
|
description: 'Export the current ChatWise conversation to a Markdown file',
|
|
domain: 'localhost',
|
|
strategy: Strategy.UI,
|
|
browser: true,
|
|
args: [
|
|
{ name: 'output', required: false, help: 'Output file (default: /tmp/chatwise-export.md)' },
|
|
],
|
|
columns: ['Status', 'File', 'Messages'],
|
|
func: async (page, kwargs) => {
|
|
const outputPath = kwargs.output || '/tmp/chatwise-export.md';
|
|
const md = await page.evaluate(`
|
|
(function() {
|
|
const selectors = [
|
|
'[data-message-id]',
|
|
'[class*="message"]',
|
|
'[class*="chat-item"]',
|
|
'[class*="bubble"]',
|
|
];
|
|
|
|
for (const sel of selectors) {
|
|
const nodes = document.querySelectorAll(sel);
|
|
if (nodes.length > 0) {
|
|
return Array.from(nodes).map((n, i) => '## Message ' + (i + 1) + '\\n\\n' + (n.innerText || n.textContent).trim()).join('\\n\\n---\\n\\n');
|
|
}
|
|
}
|
|
|
|
const main = document.querySelector('main, [role="main"], [class*="chat-container"]');
|
|
if (main) return main.innerText || main.textContent;
|
|
return document.body.innerText;
|
|
})()
|
|
`);
|
|
fs.writeFileSync(outputPath, '# ChatWise Conversation Export\\n\\n' + md);
|
|
return [
|
|
{
|
|
Status: 'Success',
|
|
File: outputPath,
|
|
Messages: md.split('## Message').length - 1,
|
|
},
|
|
];
|
|
},
|
|
});
|