@fortemi/core 2026.7.2 → 2026.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/aiwg-index-C2G7iy-b.d.ts +826 -0
- package/dist/aiwg-index.d.ts +1 -464
- package/dist/aiwg-index.js +1118 -89
- package/dist/aiwg-index.js.map +1 -1
- package/dist/index.d.ts +213 -300
- package/dist/index.js +2914 -222
- package/dist/index.js.map +1 -1
- package/package.json +15 -3
- package/tools/verify-fortemi-compatibility.mjs +82 -0
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ Most browser note and knowledge apps choose between a thin IndexedDB wrapper, a
|
|
|
39
39
|
| Queryable knowledge | SQL-backed repositories for notes, links, tags, collections, SKOS concepts, jobs, and search |
|
|
40
40
|
| Retrieval quality | Full-text search, pgvector-backed semantic search, hybrid ranking, snippets, facets, and filters |
|
|
41
41
|
| AI-ready workflows | Optional embeddings, local LLM capability discovery, job provenance, and fallback routing |
|
|
42
|
-
| Portable archives | Knowledge Shard tar.gz import/export with set-scoped exports, chunked imports, checksums, and JSON format parity |
|
|
42
|
+
| Portable archives | Knowledge Shard tar.gz import/export with set-scoped exports, chunked imports, checksums, attachment blob sidecars (BLAKE3-addressed), and JSON format parity |
|
|
43
43
|
| Agent integration | Manifest-backed tools and direct helper functions for bridge adapters and automation |
|
|
44
44
|
| UI freedom | A headless package you can use from React, another framework, a browser extension, or a custom host |
|
|
45
45
|
|
|
@@ -69,7 +69,7 @@ Runtime dependencies installed with the package:
|
|
|
69
69
|
| Dependency | Purpose |
|
|
70
70
|
|---|---|
|
|
71
71
|
| `@electric-sql/pglite` | PostgreSQL compiled to WASM, plus pgvector |
|
|
72
|
-
| `@noble/hashes` | SHA hashing for content and
|
|
72
|
+
| `@noble/hashes` | SHA hashing for content/integrity checks and BLAKE3 hashing for attachment blobs |
|
|
73
73
|
| `fflate` | Tar/gzip handling for Knowledge Shards |
|
|
74
74
|
| `uuid` | UUIDv7 identifiers |
|
|
75
75
|
| `zod` | Runtime input validation for tool helpers |
|
|
@@ -262,7 +262,7 @@ bytes.
|
|
|
262
262
|
| Event bus | Typed subscriptions for note, job, archive, and capability events |
|
|
263
263
|
| Capability system | Embeddings, local LLM, GPU detection, local-provider discovery, fallback routing |
|
|
264
264
|
| Job queue | Server-compatible background workflow for revisions, titles, embeddings, concepts, and links |
|
|
265
|
-
| Knowledge Shards | Tar.gz import/export with checksums, progress callbacks, yielding imports, set-scoped embedding exports, and JSON format parity |
|
|
265
|
+
| Knowledge Shards | Tar.gz import/export with checksums, attachment blob sidecars (BLAKE3-addressed), progress callbacks, yielding imports, set-scoped embedding exports, and JSON format parity |
|
|
266
266
|
| Service-worker helpers | Route registration primitives for standalone browser integration |
|
|
267
267
|
|
|
268
268
|
## Search and Knowledge Model
|