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>
64 lines
1.7 KiB
Markdown
64 lines
1.7 KiB
Markdown
All packages under `src/` are licensed according to the terms in
|
|
their respective `LICENSE` or `LICENSE.md` files.
|
|
|
|
The remainder of this project is licensed under the Blue Oak
|
|
Model License, as follows:
|
|
|
|
-----
|
|
|
|
# Blue Oak Model License
|
|
|
|
Version 1.0.0
|
|
|
|
## Purpose
|
|
|
|
This license gives everyone as much permission to work with
|
|
this software as possible, while protecting contributors
|
|
from liability.
|
|
|
|
## Acceptance
|
|
|
|
In order to receive this license, you must agree to its
|
|
rules. The rules of this license are both obligations
|
|
under that agreement and conditions to your license.
|
|
You must not do anything with this software that triggers
|
|
a rule that you cannot or will not follow.
|
|
|
|
## Copyright
|
|
|
|
Each contributor licenses you to do everything with this
|
|
software that would otherwise infringe that contributor's
|
|
copyright in it.
|
|
|
|
## Notices
|
|
|
|
You must ensure that everyone who gets a copy of
|
|
any part of this software from you, with or without
|
|
changes, also gets the text of this license or a link to
|
|
<https://blueoakcouncil.org/license/1.0.0>.
|
|
|
|
## Excuse
|
|
|
|
If anyone notifies you in writing that you have not
|
|
complied with [Notices](#notices), you can keep your
|
|
license by taking all practical steps to comply within 30
|
|
days after the notice. If you do not do so, your license
|
|
ends immediately.
|
|
|
|
## Patent
|
|
|
|
Each contributor licenses you to do everything with this
|
|
software that would otherwise infringe any patent claims
|
|
they can license or become able to license.
|
|
|
|
## Reliability
|
|
|
|
No contributor can revoke this license.
|
|
|
|
## No Liability
|
|
|
|
***As far as the law allows, this software comes as is,
|
|
without any warranty or condition, and no contributor
|
|
will be liable to anyone for any damages related to this
|
|
software or this license, under any kind of legal claim.***
|