yakmesh 2.6.0 → 2.6.2

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 CHANGED
@@ -17,64 +17,7 @@
17
17
 
18
18
  YAKMESH is a high-resiliency, decentralized networking layer designed for the 2026 threat landscape. Built with quantum-resistant cryptography at its core and anchored by PCIe atomic timing synchronization, YAKMESH provides a "sturdy" substrate for distributed systems that cannot afford to fail.
19
19
 
20
- ## Why YAKMESH?
21
-
22
- In an era where traditional ECDSA is increasingly vulnerable and network jitter can desynchronize global state, YAKMESH offers a three-pillar solution:
23
-
24
- 🌿 **Yielding Resilience**: A self-healing mesh topology that adapts to node failure and adversarial interference without central authority.
25
-
26
- ⚛️ **Atomic Precision**: Integrated support for PCIe atomic clock hardware, enabling hardware timestamping with support for high-precision time sources for low-latency synchronization.
27
-
28
- 🔐 **Quantum Hardened**: Fully compatible with Project Zond and the QRL (Quantum Resistant Ledger) ecosystem, utilizing stateless lattice-based signatures (ML-DSA) from Genesis.
29
-
30
- ---
31
-
32
- ## The Y.A.K.M.E.S.H. Philosophy
33
-
34
- | Letter | Principle | Description |
35
- |--------|-----------|-------------|
36
- | **Y** | **Yielding** | Not brittle; flexible enough to absorb network shocks |
37
- | **A** | **Atomic** | Grounded in the absolute truth of physical time |
38
- | **K** | **Kernel** | The essential, innermost part of the secure stack |
39
- | **M** | **Modular** | Swap out encryption primitives or transport layers as tech evolves |
40
- | **E** | **Encryption** | Privacy and integrity by default |
41
- | **S** | **Secured** | Hardened against both classical and quantum vectors |
42
- | **H** | **Hub** | A nexus for decentralized data and peer-to-peer logic |
43
-
44
- ---
45
-
46
- ## Features
47
-
48
- - 🔒 **Post-Quantum Secure** - ML-DSA-65 (NIST FIPS 204) signatures
49
- - 🔮 **Self-Verifying Oracle** - Deterministic validation without external trust
50
- - 🌐 **Mesh Networking** - P2P WebSocket communication with gossip protocol
51
- - ⏱️ **Precision Timing** - Support for atomic clocks, GPS, PTP, NTP
52
- - 🔌 **Plugin Architecture** - Adapters for any database or API
53
- - 🛡️ **Phase Modulation** - Time-based anti-replay protection
54
- - 🌍 **Geographic Exclusion** - Speed-of-light physics prove where nodes CANNOT be
55
-
56
- ### v2.5 — The Complete Stack
57
-
58
- **Identity & Trust:**
59
- - 🧭 **NAMCHE Gateway** - 7-gate mathematical verification (no CA required)
60
- - 📜 **DOKO Identity** - Self-sovereign identity documents verified by mesh
61
- - 🏆 **Trust Tiers** - ORACLE/ANCHOR/SENTINEL/PARTICIPANT hierarchy
62
- - 🔬 **Hardware Attestation** - AES-NI timing proves real silicon
63
- - ⚖️ **Silicon Parity** - "One silicon = one vote" anti-farm defense
64
- - ⚠️ **Strike System** - Three strikes with hardware fingerprint tracking
65
-
66
- **Networking:**
67
- - 🏔️ **SHERPA Discovery** - Decentralized peer discovery via public web beacons
68
- - 🎒 **NAKPAK Routing** - Post-quantum onion routing for anonymity
69
- - 🔐 **ANNEX Channels** - ML-KEM768 encrypted P2P with perfect forward secrecy
70
- - 🔗 **YAK:// Protocol** - Mesh-native URL scheme with bookmarks
71
-
72
- **Advanced:**
73
- - 🌍 **Geographic Proof** - Speed-of-light exclusion zones
74
- - 🕵️ **Sybil Detection** - Graph analysis for fake identity clusters
75
- - 📡 **ECHO Ranging** - Privacy-preserving topology discovery
76
- - 💓 **PULSE Heartbeat** - Liveness detection and partition recovery
77
- - 🚨 **BEACON Alerts** - Priority emergency broadcast
20
+ > **📚 Full documentation: [yakmesh.dev](https://yakmesh.dev)** | **[docs/](docs/)** for specifications
78
21
 
79
22
  ## Quick Start
80
23
 
@@ -93,194 +36,58 @@ const node = new YakmeshNode({
93
36
  await node.start();
94
37
  ```
95
38
 
96
- ## CLI
97
-
98
- ```bash
99
- # Initialize a new node
100
- npx yakmesh init
101
-
102
- # Start the node
103
- npx yakmesh start
104
-
105
- # Check status
106
- npx yakmesh status
107
- ```
39
+ ## Features
108
40
 
109
- ## Documentation
41
+ - 🔒 **Post-Quantum Secure** - ML-DSA-65 (NIST FIPS 204) signatures
42
+ - 🔮 **TATTVA Oracle** - Self-verifying validation without external trust
43
+ - 🌐 **Mesh Networking** - P2P WebSocket communication with gossip protocol
44
+ - ⏱️ **Precision Timing** - Support for atomic clocks, GPS, PTP, NTP
45
+ - 🧭 **NAMCHE Gateway** - 7-gate mathematical identity verification
46
+ - 🏔️ **SHERPA Discovery** - Decentralized peer discovery
47
+ - 🔐 **ANNEX Channels** - ML-KEM768 encrypted P2P with forward secrecy
48
+ - 🌍 **Geographic Proof** - Speed-of-light exclusion zones
110
49
 
111
- Full documentation available at **[yakmesh.dev](https://yakmesh.dev)**
50
+ > See [yakmesh.dev](https://yakmesh.dev) for complete feature documentation
112
51
 
113
52
  ## Architecture
114
53
 
115
54
  ```
116
55
  yakmesh/
117
56
  ├── security/ # NAMCHE gateway, DOKO identity, trust models
118
- ├── namche-gateway.js # 7-gate verification
119
- ├── doko-identity.js # Self-sovereign identity
120
- │ ├── hybrid-trust.js # Multi-factor trust scoring
121
- │ ├── tls-binding.js # mTLS certificate binding
122
- │ ├── domain-consensus.js # Mesh-verified domains
123
- │ └── geo-proof.js # Speed-of-light geographic exclusion
124
- ├── oracle/ # Self-verifying validation engine
125
- ├── mesh/ # WebSocket P2P networking
126
- │ ├── sherpa-discovery.js # Decentralized peer discovery
127
- │ ├── nakpak-routing.js # Onion routing
128
- │ └── annex-channel.js # Encrypted P2P channels
57
+ ├── oracle/ # TATTVA self-verifying validation engine
58
+ ├── mesh/ # SHERPA, NAKPAK, ANNEX networking
129
59
  ├── gossip/ # Epidemic-style message propagation
60
+ ├── protocol/ # STUPA, LAMA, MANI, KARMA, MANDALA
130
61
  ├── adapters/ # Platform integration plugins
131
- ├── webserver/ # Embedded Caddy web server
62
+ ├── embedded-docs/ # GRANTH documentation bundle
132
63
  └── server/ # HTTP/WS server
133
64
  ```
134
65
 
135
66
  ## Network Identity
136
67
 
137
- Each YAKMESH network has a unique identity derived from the **oracle's code hash** — a deterministic fingerprint of the codebase itself. This means the code IS the identity.
68
+ Each YAKMESH network has a unique identity derived from the **oracle's code hash** — the code IS the identity.
138
69
 
139
70
  ```javascript
140
- // Network identity is AUTOMATIC - derived from code hash
141
- // When you run a node, it computes:
142
- // 1. Code hash → cryptographic identity of the codebase
143
- // 2. Network name → human-readable name (e.g., "factor-primitive-bose")
144
- // 3. Verification phrase → speakable phrase for verbal verification
145
-
146
- // The identity functions are available for inspection:
147
71
  import { deriveNetworkName, deriveVerificationPhrase } from 'yakmesh/oracle/network-identity.js';
148
72
 
149
73
  // Same code = same network. Different code = different network.
150
74
  // No configuration needed - the math handles network separation.
151
75
  ```
152
76
 
153
- **Key Principle:** Two nodes running the same YAKMESH version will automatically be on the same network. Fork the code or modify the oracle, and you're on a different network entirely.
154
-
155
- ## Time Source Trust Levels
156
-
157
- | Level | Source | Tolerance | Oracle Capable |
158
- |-------|--------|-----------|----------------|
159
- | ATOMIC | PCIe atomic clock | ±100ms | ✅ Yes |
160
- | GPS | GPS with PPS | ±500ms | ✅ Yes |
161
- | PTP | IEEE 1588 (Meinberg) | ±500ms | ⚠️ Partial |
162
- | NTP | Standard NTP | ±5000ms | ❌ No |
163
-
164
- ## Adapters
165
-
166
- Create custom adapters by extending `BaseAdapter`:
167
-
168
- ```javascript
169
- import { BaseAdapter } from 'yakmesh/adapters/base-adapter.js';
170
-
171
- class MyAdapter extends BaseAdapter {
172
- async init() { /* Connect to your database */ }
173
- getSchema() { return { tables: ['users', 'orders'] }; }
174
- async fetchChanges(since) { /* Return changed records */ }
175
- async applyChange(table, record, op) { /* Write to database */ }
176
- }
177
- ```
178
-
179
- ### Official Adapters
180
-
181
- - `@yakmesh/adapter-peerquanta` - PeerQuanta phpBB marketplace
182
-
183
- ## v2.2.0 — YAK:// Protocol & Identity Recovery
184
-
185
- ### 🔗 YAK:// Protocol
186
-
187
- Custom URL protocol for mesh-native addressing. Escape HTTP entirely!
188
-
189
- ```bash
190
- # Built-in routes
191
- yak://dashboard # Node dashboard
192
- yak://peers # Connected peers
193
- yak://content/<hash> # Content by hash
194
-
195
- # Personal bookmarks (pet names)
196
- yakmesh bookmark add alice /site/alice-homepage
197
- yak://alice # Opens your bookmark
198
- ```
199
-
200
- ### 📚 Remote Bookmarks
201
-
202
- Share bookmark lists between nodes via gossip protocol:
203
-
204
- ```javascript
205
- import { getRemoteBookmarkSync } from 'yakmesh/protocol/yak-protocol';
206
-
207
- const sync = getRemoteBookmarkSync({ nodeId: 'my-node' });
208
-
209
- // Subscribe to another node's bookmarks
210
- sync.subscribe('trusted-node-id');
211
-
212
- // Publish your bookmarks to the mesh
213
- sync.publish('my-bookmarks', ['project', 'docs', 'friends']);
214
-
215
- // Resolve remote bookmarks
216
- sync.resolveRemote('alice'); // Returns target from subscribed node
217
- ```
218
-
219
- ### 🔐 DOKO Revocation
220
-
221
- Key compromise recovery with self-revocation and emergency "break-glass" certificates:
222
-
223
- ```javascript
224
- import { DOKORevocation, REVOCATION_REASONS } from 'yakmesh/security/doko-identity';
225
-
226
- const revocation = new DOKORevocation({ generator, nodeId });
227
-
228
- // Normal self-revocation
229
- const cert = revocation.revoke(dokoId, REVOCATION_REASONS.KEY_COMPROMISED, privateKey);
230
-
231
- // Emergency revocation (primary key compromised, use backup)
232
- const emergencyCert = revocation.createEmergencyCertificate(
233
- dokoId,
234
- REVOCATION_REASONS.KEY_COMPROMISED,
235
- backupPrivateKey
236
- );
237
-
238
- // Check revocation status
239
- revocation.isRevoked(dokoId); // true
240
- ```
241
-
242
- **Revocation Reasons:**
243
- - `KEY_COMPROMISED` - Private key was exposed
244
- - `DOKO_SUPERSEDED` - Replaced with new identity
245
- - `IDENTITY_RETIRED` - No longer in use
246
- - `LOST_ACCESS` - Cannot access keys
247
- - `AFFILIATION_ENDED` - Organization membership ended
77
+ ## API Reference
248
78
 
249
- ## API Endpoints
79
+ Full API documentation at [yakmesh.dev/docs/api](https://yakmesh.dev/docs/api)
250
80
 
251
- | Endpoint | Method | Description |
252
- |----------|--------|-------------|
253
- | `/health` | GET | Node health status |
254
- | `/node` | GET | Node identity info |
255
- | `/peers` | GET | Connected peers |
256
- | `/oracle/status` | GET | Oracle integrity check |
257
- | `/network/identity` | GET | Network identity (hash obfuscated) |
258
- | `/time/status` | GET | Time source detection |
259
- | `/time/capabilities` | GET | Time oracle eligibility |
260
- | `/connect` | POST | Connect to a peer |
261
- | `/bookmarks` | GET | List local bookmarks |
262
- | `/bookmarks` | POST | Add a bookmark |
263
- | `/bookmarks/:name` | DELETE | Remove a bookmark |
264
- | `/bookmarks/remote` | GET | List remote bookmarks |
265
- | `/bookmarks/remote/subscribe` | POST | Subscribe to node |
266
- | `/bookmarks/remote/publish` | POST | Publish bookmark list |
267
- | `/bookmarks/remote/status` | GET | Remote sync status |
268
- | `/security/doko/stats` | GET | DOKO identity stats |
269
- | `/security/namche/gates` | GET | Gateway verification status |
270
- | `/geo/status` | GET | Geographic proof status |
271
- | `/geo/landmarks` | GET/POST | List or add landmarks |
272
- | `/geo/zones` | GET | List exclusion zones |
273
- | `/geo/prove` | POST | Generate geographic proof |
274
- | `/geo/verify` | POST | Verify another node's claims |
275
-
276
- ## Pro Features
277
-
278
- YAKMESH Pro includes additional security features:
279
-
280
- - 🔐 **WebSocket Authentication** - Challenge-response auth with signatures
281
- - 🔒 **Message Encryption** - XChaCha20-Poly1305 encrypted messages
282
- - 📋 **Peer Allowlist/Blocklist** - Access control for private networks
283
- - 🛡️ **Connection Rate Limiting** - DDoS protection
81
+ | Endpoint | Description |
82
+ |----------|-------------|
83
+ | `/health` | Node health status |
84
+ | `/node` | Node identity info |
85
+ | `/peers` | Connected peers |
86
+ | `/oracle/status` | Oracle integrity check |
87
+ | `/network/identity` | Network identity |
88
+ | `/time/status` | Time source detection |
89
+ | `/security/namche/gates` | Gateway verification status |
90
+ | `/geo/status` | Geographic proof status |
284
91
 
285
92
  ## License
286
93
 
@@ -307,3 +114,4 @@ See [TRADEMARK.md](TRADEMARK.md) for trademark usage policy.
307
114
  <br>
308
115
  <sub>YAKMESH™ is a trademark of PeerQuanta, application pending (Serial No. 99594620).</sub>
309
116
  </div>
117
+
@@ -6,7 +6,7 @@
6
6
  * Regenerate with: npm run build:docs
7
7
  * Source: website/docs/
8
8
  *
9
- * @generated 2026-02-01T03:15:20.104Z
9
+ * @generated 2026-02-01T08:00:56.059Z
10
10
  * @module embedded-docs/bundle
11
11
  */
12
12
 
@@ -14,18 +14,18 @@
14
14
  * Master hash of the entire documentation bundle.
15
15
  * Computed as: SHA3-256(sorted individual file hashes joined)
16
16
  */
17
- export const BUNDLE_HASH = 'd431166e8bf0458df547a93d6d388b9599e8219ea76a322654a0f8342da4dae4';
17
+ export const BUNDLE_HASH = '5d332d50b703ba3491e235634a4713dad62d1ed81c61b13d35773c913d0c2763';
18
18
 
19
19
  /**
20
20
  * Version of the documentation bundle.
21
21
  * Matches the npm package version at build time.
22
22
  */
23
- export const BUNDLE_VERSION = '2.6.0';
23
+ export const BUNDLE_VERSION = '2.6.2';
24
24
 
25
25
  /**
26
26
  * Build timestamp (ISO 8601)
27
27
  */
28
- export const BUNDLE_BUILT_AT = '2026-02-01T03:15:20.104Z';
28
+ export const BUNDLE_BUILT_AT = '2026-02-01T08:00:56.059Z';
29
29
 
30
30
  /**
31
31
  * Index of all files in the documentation bundle.
@@ -39,33 +39,33 @@ export const BUNDLE_BUILT_AT = '2026-02-01T03:15:20.104Z';
39
39
  */
40
40
  export const FILE_INDEX = {
41
41
  "adapters.html": {
42
- "hash": "a4725f50254405c2707ad6ba97727c03ae18746724a1f7425df4abd196a68de8",
43
- "size": 11778,
42
+ "hash": "76e77e2aa12dc46a28450726ea65481c0d873860fc55b25002f8ba23d17349ac",
43
+ "size": 11864,
44
44
  "contentType": "text/html; charset=utf-8"
45
45
  },
46
46
  "advanced-systems.html": {
47
- "hash": "cd95be42f7a41f924a9595017fa9b3de6aa33e7da3a5003faf86db470852a3bd",
48
- "size": 22922,
47
+ "hash": "b022e80d4c1d95270b66664a9b22f189b0da6597021883fb1a0db072a24812fc",
48
+ "size": 23008,
49
49
  "contentType": "text/html; charset=utf-8"
50
50
  },
51
51
  "annex.html": {
52
- "hash": "49ac93e2e79a786760b006bb03d046f4968c6d7ed101fa893b3791f2301cd7c1",
53
- "size": 28147,
52
+ "hash": "3ac7e862073ebdc6d1e7edd777be4465a4ef839ecea3f2734655ee68cc8720c0",
53
+ "size": 28233,
54
54
  "contentType": "text/html; charset=utf-8"
55
55
  },
56
56
  "api.html": {
57
- "hash": "38e59308cb3c16fddd71705651ada0846d0b26b50ddffee31302d685c257dfdb",
58
- "size": 18875,
57
+ "hash": "6a9c67efb6b50359e5b97374cb6fdc0615c640382daab452ac05eb287a08f184",
58
+ "size": 18961,
59
59
  "contentType": "text/html; charset=utf-8"
60
60
  },
61
61
  "cli.html": {
62
- "hash": "236c17ee7e57d7b733e87f5dc1f1f4aee3754fd638e84db9539858cb2e7bb6e1",
63
- "size": 38666,
62
+ "hash": "e3a3d1ce64e2710864def2731c5cdc5648a9eb83fd1347e86ff74b015e43172a",
63
+ "size": 38752,
64
64
  "contentType": "text/html; charset=utf-8"
65
65
  },
66
66
  "configuration.html": {
67
- "hash": "c0fb9aca6c21f856db7d60721877ea9a100c3e71eef3e2661ae19f5151e9d292",
68
- "size": 33144,
67
+ "hash": "9840d881819a159118a41a8432e65b1fb7f87531408955cd3271c5da1985858b",
68
+ "size": 33230,
69
69
  "contentType": "text/html; charset=utf-8"
70
70
  },
71
71
  "docs-bundle.html": {
@@ -74,8 +74,8 @@ export const FILE_INDEX = {
74
74
  "contentType": "text/html; charset=utf-8"
75
75
  },
76
76
  "docs.css": {
77
- "hash": "a5cc0ed95d5405e0e3824055abf215e8bdb45a89eb8f714a19b22ffdda2d597d",
78
- "size": 36002,
77
+ "hash": "ca89938091648e40b0d3a9ecfdec35602292ed8d75d54046a66e7697c7fdedb9",
78
+ "size": 37157,
79
79
  "contentType": "text/css; charset=utf-8"
80
80
  },
81
81
  "docs.js": {
@@ -84,63 +84,63 @@ export const FILE_INDEX = {
84
84
  "contentType": "application/javascript; charset=utf-8"
85
85
  },
86
86
  "doko.html": {
87
- "hash": "7d7eb43e93196612a5c85bb61d97922750f4214ff63ec06bb9e1d6fd775932ce",
88
- "size": 20893,
87
+ "hash": "73076d02a1d62a21db5afcf21d1341fa6b9c8d40d3cb7d2a96f8193f4ea66940",
88
+ "size": 21342,
89
89
  "contentType": "text/html; charset=utf-8"
90
90
  },
91
91
  "geo-proof.html": {
92
- "hash": "33e0ec948fa10c85a2d8806bee6823708a75e8d4d1d363c25a954c470bb5ee5e",
93
- "size": 15543,
92
+ "hash": "27530d4abba99391e9b7c560dcd292c686c05b9f13f9c87a7edcdef15b44f61a",
93
+ "size": 15629,
94
94
  "contentType": "text/html; charset=utf-8"
95
95
  },
96
96
  "getting-started.html": {
97
- "hash": "5dc03a8f417d306af232c1f20a35d6e5832640eee2e6af0737bcbabc38e238ea",
98
- "size": 13401,
97
+ "hash": "bdf88c551fed05b3c0c00b4bcdfdba1c5afcae3d3371fe2773b3c686e00fe67f",
98
+ "size": 13865,
99
99
  "contentType": "text/html; charset=utf-8"
100
100
  },
101
101
  "index.html": {
102
- "hash": "56a4148a1c594976e52bb3e17a175a3e8586aa92fa9bbac40c0ed096ef36c54a",
103
- "size": 12944,
102
+ "hash": "1a93c4181eea8fe03a45ff6247bb2754949a9b675f43a6b3d18b4245b892d2ed",
103
+ "size": 13030,
104
104
  "contentType": "text/html; charset=utf-8"
105
105
  },
106
106
  "karma.html": {
107
- "hash": "a86ef77a6873b8f404df22f364ce017872b0d6039388cd3d42ae043a07f18860",
108
- "size": 18123,
107
+ "hash": "bb1f3c743871140b8461eb329955427abbf953eef207255e529e98674a1bbcfe",
108
+ "size": 18209,
109
109
  "contentType": "text/html; charset=utf-8"
110
110
  },
111
111
  "lama.html": {
112
- "hash": "20fc0c463049659771212eacc12a7d5def640ba75afecb3eb79565d7f917be7d",
113
- "size": 16483,
112
+ "hash": "a9d4713a92a039f56d44606f6678543e29d50229de91518573a93c9b8f884d6f",
113
+ "size": 16569,
114
114
  "contentType": "text/html; charset=utf-8"
115
115
  },
116
116
  "mandala.html": {
117
- "hash": "50a667cc5d75450e67012b2ff7b81bc1c7012a312cd988b912d6d27ae26e4060",
118
- "size": 19988,
117
+ "hash": "d74d66f7bbd381e426b8b9764c340f8573772ee5182f2d487fb32fc9bb88541e",
118
+ "size": 20099,
119
119
  "contentType": "text/html; charset=utf-8"
120
120
  },
121
121
  "mani.html": {
122
- "hash": "f0c4f8f6f65c68dc70d38d9790a3d62d7b048a0bb6b190d5e10a4e9a71f6653a",
123
- "size": 15992,
122
+ "hash": "efea3f4d2617cc4e8f6df9d429f23ceaf1376552c4258075a95e8342a3b74c36",
123
+ "size": 16078,
124
124
  "contentType": "text/html; charset=utf-8"
125
125
  },
126
126
  "mantra.html": {
127
- "hash": "76c3bff0a66c2d8d923dd3ddcb4f88c93ef9e390cd36de6f828c8da0da404302",
128
- "size": 21140,
127
+ "hash": "a454ec0a218d43a91d1b3be2c307e5703bc6c778e0cfccce8dd07b23eb959053",
128
+ "size": 21226,
129
129
  "contentType": "text/html; charset=utf-8"
130
130
  },
131
131
  "mesh.html": {
132
- "hash": "db779eaf76998f53cf29209b89613dc2571b1a4b19c8b8ae7d6ba0e7f57bf6a4",
133
- "size": 46268,
132
+ "hash": "b3142d7972b863de63d8c4e4edc723bbd97271a970b5b3ce173639620c6dcbb4",
133
+ "size": 46354,
134
134
  "contentType": "text/html; charset=utf-8"
135
135
  },
136
136
  "nakpak.html": {
137
- "hash": "521bfd22b47a3876f25f1747ef46d30b155f7672e1f31546a9516c8d5e06f2f7",
138
- "size": 16535,
137
+ "hash": "efcad0fb5314de125ceac174fd4806e420532cd93a693101a3ea8fbf73dc97fb",
138
+ "size": 16621,
139
139
  "contentType": "text/html; charset=utf-8"
140
140
  },
141
141
  "namche.html": {
142
- "hash": "bb5070ab9f016ba2050c33743a1b8bee495852c3f743c0cb42fa60dadb52c7e0",
143
- "size": 17615,
142
+ "hash": "893a50f77d81104242e697d868a50518922d60b3a26f000ff56df8a4fc53df3f",
143
+ "size": 17708,
144
144
  "contentType": "text/html; charset=utf-8"
145
145
  },
146
146
  "privacy.html": {
@@ -149,18 +149,18 @@ export const FILE_INDEX = {
149
149
  "contentType": "text/html; charset=utf-8"
150
150
  },
151
151
  "sherpa.html": {
152
- "hash": "e5b97f5d68e8a89df4fa3358d50ea7340ff9fafe16b1e272d171320a0a2af202",
153
- "size": 14989,
152
+ "hash": "fdf5101516f09f046d185b6b1130e8fefa50652ab6cde3e2ec59f19e57c551c5",
153
+ "size": 15093,
154
154
  "contentType": "text/html; charset=utf-8"
155
155
  },
156
156
  "stupa.html": {
157
- "hash": "9c79a8984aab8b6e8d5b80170945030538b7ca6c4a41f9ed0ca6098f50551496",
158
- "size": 16908,
157
+ "hash": "6ed6547c60052e5c0d6bbe9f4a77ae5f7a70caf3889328aa76e7a37d24b4481b",
158
+ "size": 16994,
159
159
  "contentType": "text/html; charset=utf-8"
160
160
  },
161
161
  "tattva.html": {
162
- "hash": "e4dd2105547b6f1b93fcca0f2ac34e9bf6e561c4f0956db06680b96b40786a01",
163
- "size": 40704,
162
+ "hash": "8c8183378520c0e02851dfee0a6ea87e0f4657be5e32e01ece12bc599ca0af6e",
163
+ "size": 40790,
164
164
  "contentType": "text/html; charset=utf-8"
165
165
  },
166
166
  "terms.html": {
@@ -169,8 +169,8 @@ export const FILE_INDEX = {
169
169
  "contentType": "text/html; charset=utf-8"
170
170
  },
171
171
  "time-sources.html": {
172
- "hash": "90e9c5cd635d1b71010e87e0ea246bbacf188aad56351670b5004c691d4ad5f6",
173
- "size": 43621,
172
+ "hash": "2f05f15c3e0cb84919c751a612b4aeb2757d44d4a4761a1c5a82e6792b3bf885",
173
+ "size": 43707,
174
174
  "contentType": "text/html; charset=utf-8"
175
175
  },
176
176
  "trademark-policy.html": {
@@ -179,18 +179,18 @@ export const FILE_INDEX = {
179
179
  "contentType": "text/html; charset=utf-8"
180
180
  },
181
181
  "trust-security.html": {
182
- "hash": "504f324d0197e2edf41da03cb2f2ef738f9e3d023b2ebfae9bee7292d6fedf62",
183
- "size": 22932,
182
+ "hash": "0a6dc905632e46df5bfb6163f48e12bcb355bf53f6b1424097d32ecd9540f950",
183
+ "size": 23018,
184
184
  "contentType": "text/html; charset=utf-8"
185
185
  },
186
186
  "webserver.html": {
187
- "hash": "6639bf4f609ab1d8f08e05fbfccd15421c702d09e3476217253e2a0eeed95a5e",
188
- "size": 12349,
187
+ "hash": "cc996dd55cde77864f48d3d680eba4db6addf37d5b37fd7f6b71e3491d3a9bbe",
188
+ "size": 12435,
189
189
  "contentType": "text/html; charset=utf-8"
190
190
  },
191
191
  "yak-protocol.html": {
192
- "hash": "016cae60a3657c5f18843a634b83720e9b42efaaa6da2e599929c7813f7d5e3b",
193
- "size": 18748,
192
+ "hash": "61f7772d42b1125950724c5d0bd2343e46201b331deb2e399db1f9fa09f9a01a",
193
+ "size": 18834,
194
194
  "contentType": "text/html; charset=utf-8"
195
195
  },
196
196
  "assets/silhouettes/adapters.svg": {
@@ -249,8 +249,8 @@ export const FILE_INDEX = {
249
249
  "contentType": "image/svg+xml"
250
250
  },
251
251
  "assets/silhouettes/karma-wheel.svg": {
252
- "hash": "7f19d8646e21aefa249c41837734d90b1e61d8d93b329568b0cfa17890ab39f0",
253
- "size": 8840,
252
+ "hash": "4ac5ad4bd22cdb387458eceda1596b374a5fb0f7cb07edf4f503cd209ef7bb84",
253
+ "size": 8844,
254
254
  "contentType": "image/svg+xml"
255
255
  },
256
256
  "assets/silhouettes/lama-council.svg": {
@@ -259,8 +259,8 @@ export const FILE_INDEX = {
259
259
  "contentType": "image/svg+xml"
260
260
  },
261
261
  "assets/silhouettes/mandala-network.svg": {
262
- "hash": "c87d81102804ef014fa34a1e640cc0b9e02c5c612c42125b459241b877b9f273",
263
- "size": 9991,
262
+ "hash": "01e20bcb91c104622efe366e50eec2c8d50cd55ec619f30e1863fbd90886024e",
263
+ "size": 9995,
264
264
  "contentType": "image/svg+xml"
265
265
  },
266
266
  "assets/silhouettes/mani-stones.svg": {
package/oracle/README.md CHANGED
@@ -1,8 +1,10 @@
1
- # PeerQuanta ValidationOracle System
1
+ # TATTVA: The Self-Verifying Oracle System
2
+
3
+ > *Truth Attestation Through Temporal Validation Architecture*
2
4
 
3
5
  ## Overview
4
6
 
5
- The ValidationOracle system implements a "code is the oracle" approach to distributed consensus.
7
+ The TATTVA oracle system implements a "code is the oracle" approach to distributed consensus.
6
8
  Instead of relying on voting or social trust, nodes prove they're running identical validation
7
9
  code and therefore MUST arrive at the same conclusions about data validity.
8
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yakmesh",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "YAKMESH: Yielding Atomic Kernel Modular Encryption Secured Hub - Post-quantum secure P2P mesh network for the 2026 threat landscape",
5
5
  "type": "module",
6
6
  "main": "server/index.js",
package/yakmesh-2.5.0.tgz DELETED
Binary file