@fortemi/core 2026.8.0 → 2026.9.1
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 +9 -1
- package/benchmarks/dataset-materialization/small-corpus.v1.json +12 -0
- package/dist/index.d.ts +1255 -134
- package/dist/index.js +2734 -763
- package/dist/index.js.map +1 -1
- package/package.json +13 -1
- package/schemas/dataset-execution-capabilities/fixtures/browser-local.json +14 -0
- package/schemas/dataset-execution-capabilities/fixtures/invalid-field-lineage-without-evidence.json +10 -0
- package/schemas/dataset-execution-capabilities/fixtures/invalid-incremental-without-checkpoint.json +10 -0
- package/schemas/dataset-execution-capabilities/fixtures/portable-shard.json +12 -0
- package/schemas/dataset-execution-capabilities/fixtures/remote-alpha.json +12 -0
- package/schemas/dataset-execution-capabilities/fixtures/static-cache.json +12 -0
- package/schemas/dataset-execution-capabilities/v1.schema.json +164 -0
- package/schemas/dataset-ingest/v1.schema.json +138 -0
- package/schemas/dataset-lineage/fixtures/golden-observed-field.json +20 -0
- package/schemas/dataset-lineage/v1.schema.json +126 -0
- package/schemas/dataset-materialization/fixtures/browser.json +11 -0
- package/schemas/dataset-materialization/fixtures/degraded.json +12 -0
- package/schemas/dataset-materialization/fixtures/deterministic.json +11 -0
- package/schemas/dataset-materialization/fixtures/external-adapter.json +11 -0
- package/schemas/dataset-materialization/fixtures/nondeterministic.json +11 -0
- package/schemas/dataset-materialization/fixtures/server.json +11 -0
- package/schemas/dataset-materialization/fixtures/supported.json +12 -0
- package/schemas/dataset-materialization/fixtures/unsupported.json +11 -0
- package/schemas/dataset-materialization/v1.schema.json +169 -0
- package/schemas/source-note-upsert/contract.receipt.json +78 -0
- package/schemas/source-note-upsert/v1.conformance.json +100 -0
package/README.md
CHANGED
|
@@ -353,7 +353,15 @@ bytes.
|
|
|
353
353
|
| Capability system | Embeddings, local LLM, GPU detection, local-provider discovery, fallback routing |
|
|
354
354
|
| Job queue | Server-compatible background workflow for revisions, titles, embeddings, concepts, and links |
|
|
355
355
|
| Knowledge Shards | Tar.gz import/export with checksums, BLAKE3-addressed blob sidecars, progress callbacks, yielding imports, set-scoped embedding exports, and profile-scoped conformance |
|
|
356
|
-
| Lifecycle controls |
|
|
356
|
+
| Lifecycle controls | Fortemi `source-note-upsert/1.0.0` on PGlite and RecordStore, metadata-scoped search locators, and terminal purge receipts that omit raw external ids and content |
|
|
357
|
+
|
|
358
|
+
Source-addressed import is a live-persistence contract, separate from Knowledge
|
|
359
|
+
Shard state transfer. `SourceUpsertRepository.upsertRequest()` and
|
|
360
|
+
`upsertRecordStoreRequest()` consume the same server-owned `1.0.0` fixture with
|
|
361
|
+
bounded atomic batches, dry-run, checkpoints, exact replay, and
|
|
362
|
+
`replace`/`version`/`conflict` policies. Current shard profiles omit source
|
|
363
|
+
identity and report `source-identity-outside-profile`; they do not provide a
|
|
364
|
+
source-identity backup.
|
|
357
365
|
| Service-worker helpers | Route registration primitives for standalone browser integration |
|
|
358
366
|
|
|
359
367
|
## Search and Knowledge Model
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contract": "fortemi.dataset-materialization-profile/v1", "schemaVersion": "1.0.0", "evidenceType": "benchmark",
|
|
3
|
+
"benchmarkId": "fortemi-core-small-lexical-2026-09-03",
|
|
4
|
+
"corpus": { "id": "fortemi-materialization-fixture", "revision": "fixture-v1", "digest": "sha256:1010101010101010101010101010101010101010101010101010101010101010", "records": 100, "bytes": 65536 },
|
|
5
|
+
"hardware": { "runtime": "node-22-linux-x64", "cpu": "generic-ci-2-vcpu", "memoryBytes": 4294967296 },
|
|
6
|
+
"implementation": { "id": "fortemi-core-lexical", "version": "2026.8.0", "digest": "sha256:1111111111111111111111111111111111111111111111111111111111111111" },
|
|
7
|
+
"profile": { "id": "fortemi.lexical.default", "version": "1.0.0", "digest": "sha256:1212121212121212121212121212121212121212121212121212121212121212", "configurationDigest": "sha256:1313131313131313131313131313131313131313131313131313131313131313" },
|
|
8
|
+
"correctness": { "passed": true, "suite": "dataset-materialization-profiles.test.ts", "receiptDigest": "sha256:1414141414141414141414141414141414141414141414141414141414141414" },
|
|
9
|
+
"freshness": { "measuredAt": "2026-09-03T00:00:00Z", "sourceRevision": "fixture-v1" },
|
|
10
|
+
"measurements": [{ "name": "full-build", "value": 12.4, "unit": "ms" }, { "name": "throughput", "value": 8064.5, "unit": "records/s" }],
|
|
11
|
+
"claims": { "corpusScoped": true, "universalScaleLimit": false }
|
|
12
|
+
}
|