From b0158f8acf28d41e4ab5eb5c22e9d4ea4aca858d Mon Sep 17 00:00:00 2001 From: Gitea Actions Date: Thu, 11 Jun 2026 01:37:17 +0000 Subject: [PATCH] docs: sync from docs/wiki/ at commit 2b4f6483 --- Architecture.md | 4 ++-- Home.md | 6 +++++- Shell-Execution.md | 3 +-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Architecture.md b/Architecture.md index 639a837..e5303a5 100644 --- a/Architecture.md +++ b/Architecture.md @@ -50,7 +50,7 @@ All command handlers receive `State<'_, AppState>` as a Tauri-injected parameter | `commands/integrations.rs` | Confluence / ServiceNow / ADO โ€” v0.2 stubs | | `ai/provider.rs` | `Provider` trait + `create_provider()` factory | | `pii/detector.rs` | Multi-pattern PII scanner with overlap resolution | -| `db/migrations.rs` | Versioned schema (17 migrations in `_migrations` table) | +| `db/migrations.rs` | Versioned schema (15 migrations in `_migrations` table) | | `db/models.rs` | All DB types โ€” see `IssueDetail` note below | | `docs/rca.rs` + `docs/postmortem.rs` | Markdown template builders | | `audit/log.rs` | `write_audit_event()` โ€” called before every external send | @@ -178,7 +178,7 @@ Use `detail.issue.title`, **not** `detail.title`. ## Incident Response Methodology -The application integrates a comprehensive incident response framework via system prompt injection. The `INCIDENT_RESPONSE_FRAMEWORK` constant in `src/lib/domainPrompts.ts` is appended to all 17 domain-specific system prompts (Linux, Windows, Network, Kubernetes, Databases, Virtualization, Hardware, Observability, and others). +The application integrates a comprehensive incident response framework via system prompt injection. The `INCIDENT_RESPONSE_FRAMEWORK` constant in `src/lib/domainPrompts.ts` is appended to all 15 domain-specific system prompts (Linux, Windows, Network, Kubernetes, Databases, Virtualization, Hardware, Observability, Telephony, Security, Public Safety, Application, Automation, HPE, Dell, Identity). **5-Phase Framework:** diff --git a/Home.md b/Home.md index 954ce22..d2cce37 100644 --- a/Home.md +++ b/Home.md @@ -38,7 +38,10 @@ | Version | Status | Highlights | |---------|--------|-----------| -| v0.2.6 | ๐Ÿš€ Latest | Custom REST AI gateway support, OAuth2 shell permissions, user ID tracking | +| v1.1.0 | ๐Ÿš€ Latest | Kubernetes Management UI with PTY terminals, metrics, port forwarding, YAML editor | +| v1.0.1 | Released | Domain prompt fix, UI contrast improvements, ARM64 Linux build | +| v1.0.0 | Released | Core application with PII detection, Shell Execution, 5-Whys AI triage | +| v0.2.6 | Released | Custom REST AI gateway support, OAuth2 shell permissions, user ID tracking | | v0.2.5 | Released | Image attachments with PII detection and approval workflow | | v0.2.3 | Released | Confluence/ServiceNow/ADO REST API clients (19 TDD tests) | | v0.1.1 | Released | Core application with PII detection, RCA generation | @@ -56,6 +59,7 @@ Download from [Releases](https://gogs.tftsr.com/sarman/tftsr-devops_investigatio | Phase 10 (Integrations) | โœ… Complete โ€” Confluence, ServiceNow, Azure DevOps fully implemented with OAuth2 | | Phase 11 (CI/CD) | โœ… Complete โ€” Gitea Actions fully operational | | Phase 12 (Release packaging) | โœ… linux/amd64 ยท linux/arm64 (native) ยท windows/amd64 | +| Phase 13 (Kubernetes Management) | โœ… Complete โ€” PTY terminals, metrics, port forwarding, YAML editor | ## Tech Stack diff --git a/Shell-Execution.md b/Shell-Execution.md index a525506..3686dbe 100644 --- a/Shell-Execution.md +++ b/Shell-Execution.md @@ -642,8 +642,6 @@ CREATE INDEX idx_approval_decisions_session ON approval_decisions(session_id); - Export execution history as CSV/JSON - Integration with issue timeline (show commands executed during incident) - Proxmox advanced commands (cluster management, backups) -- Multi-kubeconfig context switching within single file -- Auto-detection of ~/.kube/config on startup (pending AppHandle fix) **Stretch Goals**: - Parallel command execution (run multiple commands concurrently) @@ -662,4 +660,5 @@ CREATE INDEX idx_approval_decisions_session ON approval_decisions(session_id); ## Version History +- **v1.1.0** (2026-06-06): Production-ready with three-tier safety classification, kubectl bundling, and multi-cluster support - **v1.0.0** (2026-06-02): Initial release with three-tier safety classification, kubectl bundling, and multi-cluster support