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> |
||
|---|---|---|
| .. | ||
| README.md | ||
| zip-core.js | ||
| zip-core.min.js | ||
| zip-fs-core.js | ||
| zip-fs-core.min.js | ||
| zip-fs-native.js | ||
| zip-fs-native.min.js | ||
| zip-fs.js | ||
| zip-fs.min.js | ||
| zip-legacy.js | ||
| zip-legacy.min.js | ||
| zip-module.wasm | ||
| zip-native.js | ||
| zip-native.min.js | ||
| zip-web-worker-native.js | ||
| zip-web-worker.js | ||
| zip.js | ||
| zip.min.js | ||
Prebuilt zip.js bundles
Note: These bundles are not ES module compatible (you cannot import them directly). Use index.js at the project root or one of the zip-*.js files in /lib (e.g. /lib/zip-core.js) for ESM usage.
Contents:
zip.js/zip.min.js: FullZipWriter/ZipReaderbundles with embedded Web Worker code and WASM.zip-fs.js/zip-fs.min.js: FullZipWriter/ZipReaderplus virtual file system (fs), with embedded Web Worker code and WASM.zip-core.js/zip-core.min.js: MinimalZipWriter/ZipReader.zip-fs-core.js/zip-fs-core.min.js: MinimalZipWriter/ZipReaderplus virtual file system (fs).
Online builder:
Alternatively, you can build your own version of zip.js with the online builder, see https://gildas-lormeau.github.io/zip.js/builder.
Notes:
- Files suffixed with
-nativerely on a pure JavaScript implementation of Compression Streams instead of a WASM module. zip-legacy.min.jsis the equivalent ofzip.min.jsbefore the version2.8, it relies on a JavaScript implementation of Compression Streams (if used) but only in web workers. Alternativelyzip-native.min.jsincludes the Compression Streams implementation in the main environment and the web workers.