tftsr-devops_investigation/src-tauri/target/debug/build/libsodium-sys-stable-fcf8b83ea1efb6f7/out/source/libsodium-stable
Shaun Arman 8839075805 feat: initial implementation of TFTSR IT Triage & RCA application
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>
2026-03-14 22:36:25 -05:00
..
.github/workflows feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
builds feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
ci/appveyor feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
contrib feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
dist-build feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
m4 feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
packaging feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
regen-msvc feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
src feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
test feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
.gitignore feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
appveyor.yml feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
AUTHORS feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
autogen.sh feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
azure-pipelines.yml feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
build.zig feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
ChangeLog feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
CITATION.cff feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
configure.ac feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
lgtm.yml feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
libsodium-uninstalled.pc.in feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
libsodium.pc.in feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
LICENSE feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
logo.png feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
Makefile.am feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
README.markdown feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00
THANKS feat: initial implementation of TFTSR IT Triage & RCA application 2026-03-14 22:36:25 -05:00

GitHub CI Coverity Scan Build Status Azure build status CodeQL scan

libsodium

Sodium is an easy-to-use software library that provides a wide range of cryptographic operations including encryption, decryption, digital signatures, and secure password hashing.

It is a portable, cross-compilable, installable, and packageable fork of NaCl. While maintaining API compatibility, libsodium extends functionality to improve usability and simplify the development of secure applications.


Key Features

  • Encryption & Decryption: Securely encrypt and decrypt data with modern algorithms.
  • Digital Signatures: Create and verify signatures to ensure data authenticity.
  • Cross-Platform Compatibility: Supported on Windows (MinGW and Visual Studio, x86, x64 and arm64), iOS, Android, JavaScript, and WebAssembly.
  • User-Friendly API: Designed to provide all core cryptographic operations while remaining easy to integrate into your projects.

Documentation


Versioning

libsodium uses a two-tier release system:

  • Point releases (e.g., 1.0.19, 1.0.20, 1.0.21) are tagged when new features are added or significant changes are made.
  • Stable releases are frequent maintainance updates between point releases. They fix minor issues while remaining fully compatible with their parent point release. No new features, no breaking changes.

If your application depends on a specific point release, stable updates are safe to apply. Security fixes go to the stable branch immediately, with a new point release tagged shortly after.


Contributors

Code Contributors

This project thrives thanks to the valuable contributions from our community. View all the contributors:

Contributors

Financial Contributors

Your financial support helps us sustain and further develop libsodium.

Individuals

Individual Contributors

Organizations

Support libsodium with your organization and gain visibility through your logo and website link.

Organization Contributor

License

This project is distributed under the ISC license.