@semiont/content 0.2.32-build.69 → 0.2.32-build.70
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 +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,6 +14,12 @@ Content-addressed storage using SHA-256 checksums with automatic deduplication a
|
|
|
14
14
|
npm install @semiont/content
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
## Architecture Context
|
|
18
|
+
|
|
19
|
+
**Infrastructure Ownership**: In production applications, the representation store is **created and managed by [@semiont/make-meaning](../make-meaning/)'s `startMakeMeaning()` function**, which serves as the single orchestration point for all infrastructure components (EventStore, GraphDB, RepStore, InferenceClient, JobQueue, Workers).
|
|
20
|
+
|
|
21
|
+
The quick start example below shows direct instantiation for **testing, CLI tools, or content management scripts**. For backend integration, access the representation store through the `makeMeaning` context object.
|
|
22
|
+
|
|
17
23
|
## Quick Start
|
|
18
24
|
|
|
19
25
|
```typescript
|