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>
163 lines
5.3 KiB
Markdown
163 lines
5.3 KiB
Markdown
# ✂️ Space trim
|
||
|
||
<!--Badges-->
|
||
<!--⚠️WARNING: This section was generated by https://github.com/hejny/batch-project-editor/blob/main/src/workflows/800-badges/badges.ts so every manual change will be overwritten.-->
|
||
|
||
|
||
[](https://www.npmjs.com/package/spacetrim)
|
||
[](https://packagequality.com/#?package=spacetrim)
|
||
[](https://github.com/hejny/spacetrim/actions/workflows/lint.yml)
|
||
[](https://github.com/hejny/spacetrim/actions/workflows/test.yml)
|
||
[](https://snyk.io/test/github/hejny/spacetrim)
|
||
[](https://github.com/hejny/spacetrim/issues)
|
||
[](https://socket.dev/npm/package/spacetrim)
|
||
<!--[](https://github.com/hejny/spacetrim/blob/main/LICENSE)-->
|
||
|
||
<!--/Badges-->
|
||
|
||
Spacetrim is trimming string from all 4 sides.
|
||
|
||
It is very helpful to keep pretty code indentation without keeping strange spaces inside a string.
|
||
|
||
<!--Wallpaper-->
|
||
<!--⚠️WARNING: This section was generated by https://github.com/hejny/batch-project-editor/blob/main/src//workflows/315-ai-generated-wallpaper/4-aiGeneratedWallpaperUseInReadme.ts so every manual change will be overwritten.-->
|
||
|
||
<!--
|
||
[](https://www.midjourney.com/app/jobs/425d6259-2bb1-4173-99f8-a19c6b8254a5)
|
||
-->
|
||
|
||
<!--/Wallpaper-->
|
||
|
||
> ░ is whitespace and `spaceTrim` will trim the string at the boundaries ╔═╗
|
||
|
||
```
|
||
░░░░░░░░░░░░░
|
||
░░░░░░░░░░░░░░
|
||
░░░░░░░╔═════╗░
|
||
░░░░░░░║Hello║░░
|
||
░░░░░░░║Space║░░░
|
||
░░░░░░░║Trim ║░░░░
|
||
░░░░░░░╚═════╝░░░░░
|
||
░░░░░░░░░░░░░░░░░░░░
|
||
```
|
||
|
||
## Usage
|
||
|
||
```bash
|
||
npm i spacetrim
|
||
```
|
||
|
||
```typescript
|
||
import spaceTrim from 'spacetrim';
|
||
|
||
const trimmed = spaceTrim(`
|
||
|
||
Hello
|
||
Space
|
||
Trim
|
||
|
||
|
||
`);
|
||
|
||
console.log(trimmed);
|
||
|
||
/*
|
||
Hello
|
||
Space
|
||
Trim
|
||
*/
|
||
```
|
||
|
||
_See more examples in [simple tests](./src/spaceTrim.test.ts)._
|
||
|
||
## Nesting
|
||
|
||
This is very usefull when you want to trim multiline strings inside multiline strings.
|
||
|
||
```typescript
|
||
import { spaceTrim } from 'spacetrim';
|
||
|
||
const trimmed = spaceTrim(
|
||
(block) => `
|
||
|
||
Numbers
|
||
${block(['1', '2', '3'].join('\n'))}
|
||
Chars
|
||
${block(['A', 'B', 'C'].join('\n'))}
|
||
|
||
`,
|
||
);
|
||
|
||
console.log(trimmed);
|
||
|
||
/*
|
||
Numbers
|
||
1
|
||
2
|
||
3
|
||
Chars
|
||
A
|
||
B
|
||
C
|
||
*/
|
||
```
|
||
|
||
_See more examples in [nesting tests](./src/nesting/nesting.test.ts)._
|
||
|
||
## Asynchronous nesting
|
||
|
||
You can also trim multiline strings which are fetched asynchronously inside multiline strings.
|
||
|
||
```typescript
|
||
import { spaceTrim } from 'spacetrim';
|
||
|
||
const trimmed = await spaceTrim(
|
||
async (block) => `
|
||
|
||
TypeScript:
|
||
${await fetch('https://en.wikipedia.org/wiki/TypeScript').then(
|
||
(result) => result.text(),
|
||
)}
|
||
|
||
|
||
`,
|
||
);
|
||
|
||
console.log(trimmed);
|
||
|
||
/*
|
||
TypeScript:
|
||
TypeScript is a free and open source programming language...
|
||
*/
|
||
```
|
||
|
||
_See more examples in [asynchronous nesting tests](./src/nesting/async-nesting.test.ts)._
|
||
|
||
<!--Contributing-->
|
||
<!--⚠️WARNING: This section was generated by https://github.com/hejny/batch-project-editor/blob/main/src/workflows/810-contributing/contributing.ts so every manual change will be overwritten.-->
|
||
|
||
## 🖋️ Contributing
|
||
|
||
I am open to pull requests, feedback, and suggestions. Or if you like this utility, you can [☕ buy me a coffee](https://www.buymeacoffee.com/hejny) or [donate via cryptocurrencies](https://github.com/hejny/hejny/blob/main/documents/crypto.md).
|
||
|
||
You can also ⭐ star the spacetrim package, [follow me on GitHub](https://github.com/hejny) or [various other social networks](https://www.pavolhejny.com/contact/).
|
||
|
||
<!--/Contributing-->
|
||
|
||
<!--Partners-->
|
||
<!--⚠️WARNING: This section was generated by https://github.com/hejny/batch-project-editor/blob/main/src/workflows/820-partners/partners.ts so every manual change will be overwritten.-->
|
||
|
||
## ✨ Partners
|
||
|
||
|
||
<a href="https://collboard.com/" title="Collboard"><img src="https://collboard.fra1.cdn.digitaloceanspaces.com/assets/18.12.1/logo-small.png#gh-light-mode-only" alt="Collboard" height="60"/></a>
|
||
|
||
<a href="https://webgpt.cz/?partner=ph&utm_medium=referral&utm_source=github-readme&utm_campaign=partner-ph" title="WebGPT"><img src="https://webgpt.cz/_next/static/media/webgpt-black.8d958d25.png#gh-light-mode-only" alt="WebGPT" height="60"/></a>
|
||
|
||
<a href="https://github.com/webgptorg/promptbook" title="Promptbook"><img src="https://raw.githubusercontent.com/webgptorg/promptbook/main/other/design/logo.png#gh-light-mode-only" alt="Promptbook" height="60"/></a>
|
||
|
||
|
||
[Become a partner](https://www.pavolhejny.com/contact/)
|
||
|
||
<!--/Partners-->
|