@origintrail-official/dkg-okf 10.0.2 → 10.0.3

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.
Files changed (2) hide show
  1. package/README.md +9 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,13 +24,20 @@ dkg okf import ./bundle --context-graph-id my-graph --create-context-graph
24
24
  # Finalize + share to Shared Working Memory (free, team-visible)
25
25
  dkg okf import ./bundle --context-graph-id my-graph --share
26
26
 
27
+ # Import into a private invite-only Context Graph; still one KA per concept
28
+ dkg okf import ./bundle --context-graph-id private-graph --private --create-context-graph
29
+
27
30
  # Serialise a Context Graph back into a conformant OKF bundle (clean inverse)
28
31
  dkg okf export my-graph ./out
29
32
  ```
30
33
 
31
34
  Import defaults to **Working Memory** and never publishes to Verifiable Memory.
32
35
  `--share` advances to **Shared Working Memory**. On-chain VM promotion (real
33
- TRAC) is a separate, explicitly-gated operator step see `DEMO.md`.
36
+ TRAC) is a separate, explicitly-gated operator step with `dkg ka publish` or
37
+ `dkg ka publish-async`.
38
+ `--private` creates or uses an invite-only Context Graph and keeps the same
39
+ per-concept Knowledge Asset lifecycle, sharing each concept asset to SWM without
40
+ VM promotion.
34
41
 
35
42
  ## Use it as a library
36
43
 
@@ -45,9 +52,7 @@ console.log(quadsToNQuads(result.quads)); // canonical, byte-stable N-Quads
45
52
  ## Docs
46
53
 
47
54
  - **`CONTEXT.md`** — Language / Relationships / Flagged ambiguities.
48
- - **`docs/adr/0005-okf-rdf-mapping.md`** — the locked OKF→RDF mapping and the
49
- reuse-vs-fork decision.
50
- - **`docs/integrations/okf.md`** — the full-lifecycle article.
55
+ - **`../../docs/use-dkg/okf.md`** — CLI import/export/verify lifecycle guide.
51
56
  - **`DEMO.md`** — the live mainnet runbook (WM → SWM → join invitation → Hermes
52
57
  agent → rendered graph; VM promotion held as a deferred capstone).
53
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@origintrail-official/dkg-okf",
3
- "version": "10.0.2",
3
+ "version": "10.0.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",