Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
69 lines
3.0 KiB
TypeScript
69 lines
3.0 KiB
TypeScript
export default interface GeckoCommands {
|
|
/**
|
|
* Gecko Protocol Command
|
|
*
|
|
* Captures a screenshot of the entire page.
|
|
* @ref https://phabricator.services.mozilla.com/source/mozilla-central/browse/default/testing/geckodriver/src/command.rs$43-46
|
|
*
|
|
*/
|
|
fullPageScreenshot(): Promise<string>;
|
|
/**
|
|
* Gecko Protocol Command
|
|
*
|
|
* Get the context that is currently in effect, e.g. `CHROME` or `CONTENT`.
|
|
* @ref https://github.com/SeleniumHQ/selenium/blob/586affe0cf675b1d5c8abc756defa4a46d95391b/javascript/node/selenium-webdriver/firefox.js#L615-L622
|
|
*
|
|
* @example
|
|
* ```js
|
|
* console.log(await browser.getMozContext()); // outputs: 'CHROME'
|
|
* ```
|
|
*/
|
|
getMozContext(): Promise<string>;
|
|
/**
|
|
* Gecko Protocol Command
|
|
*
|
|
* Changes target context for commands between chrome- and content.<br /><br />Changing the current context has a stateful impact on all subsequent commands. The `CONTENT` context has normal web platform document permissions, as if you would evaluate arbitrary JavaScript. The `CHROME` context gets elevated permissions that lets you manipulate the browser chrome itself, with full access to the XUL toolkit.
|
|
* @ref https://github.com/SeleniumHQ/selenium/blob/586affe0cf675b1d5c8abc756defa4a46d95391b/javascript/node/selenium-webdriver/firefox.js#L615-L645
|
|
*
|
|
* @example
|
|
* ```js
|
|
* console.log(await browser.getMozContext()); // outputs: 'CHROME'
|
|
* browser.setMozContext('CONTENT');
|
|
* console.log(await browser.getMozContext()); // outputs: 'CONTENT'
|
|
* ```
|
|
*/
|
|
setMozContext(context: string): Promise<void>;
|
|
/**
|
|
* Gecko Protocol Command
|
|
*
|
|
* Installs a new addon with the current session. This function will return an ID that may later be used to uninstall the addon using `uninstallAddon`.
|
|
* @ref https://github.com/SeleniumHQ/selenium/blob/586affe0cf675b1d5c8abc756defa4a46d95391b/javascript/node/selenium-webdriver/firefox.js#L647-L668
|
|
*
|
|
* @example
|
|
* ```js
|
|
* // Create a buffer of the add on .zip file
|
|
* const extension = await fs.promises.readFile('/path/to/extension.zip')
|
|
* // Load extension in Firefox
|
|
* const id = await browser.installAddOn(extension.toString('base64'), false);
|
|
* ```
|
|
*/
|
|
installAddOn(addon: string, temporary: boolean): Promise<string>;
|
|
/**
|
|
* Gecko Protocol Command
|
|
*
|
|
* Uninstalls an addon from the current browser session's profile.
|
|
* @ref https://github.com/SeleniumHQ/selenium/blob/586affe0cf675b1d5c8abc756defa4a46d95391b/javascript/node/selenium-webdriver/firefox.js#L670-L687
|
|
*
|
|
* @example
|
|
* ```js
|
|
* // Create a buffer of the add on .zip file
|
|
* const extension = await fs.promises.readFile('/path/to/extension.zip')
|
|
* // Load extension in Firefox
|
|
* const id = await browser.installAddOn(extension.toString('base64'), false);
|
|
* // ...
|
|
* await browser.uninstallAddOn(id)
|
|
* ```
|
|
*/
|
|
uninstallAddOn(id: string): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=gecko.d.ts.map
|