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
36 lines
1.4 KiB
JavaScript
36 lines
1.4 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
export const readCommand = cli({
|
|
site: 'antigravity',
|
|
name: 'read',
|
|
access: 'read',
|
|
description: 'Read the latest chat messages from Antigravity AI',
|
|
domain: 'localhost',
|
|
strategy: Strategy.UI,
|
|
browser: true,
|
|
args: [
|
|
{ name: 'last', help: 'Number of recent messages to read (not fully implemented due to generic structure, currently returns full history text or latest chunk)' }
|
|
],
|
|
columns: ['role', 'content'],
|
|
func: async (page, kwargs) => {
|
|
// We execute a script inside Antigravity's Chromium environment to extract the text
|
|
// of the entire conversation pane.
|
|
const rawText = await page.evaluate(`
|
|
async () => {
|
|
const container = document.getElementById('conversation');
|
|
if (!container) throw new Error('Could not find conversation container');
|
|
|
|
// Extract the full visible text of the conversation
|
|
// In Electron/Chromium, innerText preserves basic visual line breaks nicely
|
|
return container.innerText;
|
|
}
|
|
`);
|
|
// We can do simple heuristic parsing based on typical visual markers if needed.
|
|
// For now, we return the entire text blob, or just the last 2000 characters if it's too long.
|
|
const cleanText = String(rawText).trim();
|
|
return [{
|
|
role: 'history',
|
|
content: cleanText
|
|
}];
|
|
},
|
|
});
|