diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 91f00778e747d8cc830df70ff5b57291c68e5589..5f371d970e14bec77b5abe69d9bcd9969cf5d386 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -89,7 +89,7 @@ HMP v5.0 introduces a major architectural shift toward **unified containerizatio | **Networking layer** | DHT becomes a native component of HMP, enabling distributed discovery, replication, and retrieval of containers. | | **Consensus model** | Moved from centralized proposal aggregation to *container-linked voting*, allowing any container to accumulate votes and reactions. | | **Trust & security** | Signatures and proof-chains unify authentication across all layers; snapshot verification includes container linkage. | -| **Workflows** | Cognitive cycles (`workflow_entry` containers) formalize the REPL loop of thinking, publishing, and reflection. | +| **Workflows** | `workflow_entry` containers record cognitive cycles: log inputs, actions, and outputs for each reasoning step, including provenance and derived conclusions. Supports tracking of thought processes across containers, external sources, and reflections. | | **Structure** | The specification merges HMP, container, and DHT layers into one cohesive document, simplifying navigation and implementation. | --- @@ -1270,6 +1270,7 @@ It provides **container synchronization without duplication** while considering "payload_hash": "sha256:abcd...", "tags": ["research", "collaboration"], "links_hash": "sha256:abcd..." + "evaluations_hash": "sha256:abcd..." } } } @@ -1283,6 +1284,7 @@ The index contains: * cryptographic attributes (`public_key`, `signature`, `payload_hash`); * tags (`tags`); * hash of links to other containers (`links_hash`). +* hash of evaluation block (`evaluations_hash`). 3. An agent does not reload a container if the combination `container_did + signature + payload_hash` is already known and verified. @@ -1305,7 +1307,7 @@ The index contains: **1. CONTAINER_REQUEST** -Agent A requests containers and/or only `referenced-by` records from Agent B: +Agent A requests containers and/or only `referenced-by` / `evaluations` records from Agent B: ```json { @@ -1320,6 +1322,10 @@ Agent A requests containers and/or only `referenced-by` records from Agent B: "request_referenced-by": [ "did:hmp:container:abc123", "did:hmp:container:def456" + ], + "request_evaluations": [ + "did:hmp:container:abc123", + "did:hmp:container:def456" ] } } @@ -1445,16 +1451,25 @@ Message and container transmission follows the network constraints specified in --- -## 5.6 `referenced-by` Updates -Containers of the class `referenced-by` are used for targeted transmission of link updates to existing containers. -They allow agents to synchronize the graph of connections without sending the containers themselves. -Each agent receiving such a container verifies the sender's signature, updates the local `referenced-by` structure for the specified containers, and, if necessary, repackages them for further forwarding to other agents. +### 5.6 `referenced-by` and `evaluations` Updates + +Containers of the class **`referenced-by`** and **`evaluations`** are used for **incremental synchronization** of metadata blocks associated with existing containers. +They allow agents to exchange updates **without sending the full container**, improving network efficiency. + +--- + +#### Block `referenced-by` + +* Maintains the graph of links to other containers. +* Each agent receiving such a container: -Transmission is addressed (via `recipient`) and is not intended for broadcast. + 1. Verifies the sender's signature and the validity of the `payload` structure. + 2. Compares received links with the local `referenced-by` entries and adds any new ones. + 3. Generates its own updated `referenced-by` container for dissemination if needed. -Example of a `referenced-by` container: +**Example of a `referenced-by` container:** ```json { @@ -1485,13 +1500,72 @@ Example of a `referenced-by` container: } } } +```` + +--- + +#### Block `evaluations` + +* Maintains signed evaluations of containers. +* Each agent synchronizes evaluation blocks as follows: + + 1. Compares the received `evaluations_hash` with the local one. + + * If hashes match, no action is required. + * If hashes differ, the agent knows **the block has changed**, but not which items. + 2. Requests the full updated `evaluations` block from peers if needed. + 3. Verifies the sender's signature and the validity of the `payload` structure. + 4. Adds new evaluations or updates existing ones in the local store. + 5. Can generate its own `evaluations` container for further dissemination to peers. + +**Example `evaluations` container:** + +```json +{ + "hmp_container": { + "version": "1.2", + "class": "evaluations", + "container_did": "did:hmp:container:evalsync-01", + "sender_did": "did:hmp:agent456", + "sig_algo": "ed25519", + "signature": "BASE64URL(...)", + "timestamp": "2025-10-17T14:30:00Z", + "recipient": ["did:hmp:agent123"], + "broadcast": false, + "network": "", + "payload": { + "did:hmp:container:abc123": { + "evaluations_hash": "sha256:efgh...", + "items": [ + { + "value": -0.4, + "type": "oppose", + "target": "did:hmp:container:reason789", + "timestamp": "2025-10-17T14:00:00Z", + "agent_did": "did:hmp:agent:B", + "sig_algo": "ed25519", + "signature": "BASE64URL(...)" + } + ] + } + } + } +} ``` +--- + +#### General + +> 🔹 **Note:** +> Both `referenced-by` and `evaluations` blocks are **optional**, independently propagated, and **do not modify the signed `hmp_container`**. +> They can be transmitted without the original container if the recipient already has it. + Upon receiving such a container, an agent: 1. Verifies the sender's signature (`signature`) and the validity of the `payload` structure. -2. Compares received links with known ones and adds new entries to the local `referenced-by`. -3. If necessary, generates its own updated `referenced-by` container for further dissemination to other nodes. +2. Compares received links or evaluations with known ones and adds any new entries to the local `referenced-by` or `evaluations`. +3. If necessary, generates its own updated `referenced-by` / `evaluations` container for further dissemination to other nodes. --- @@ -1499,7 +1573,7 @@ Upon receiving such a container, an agent: > A container can be requested by other agents via its `container_did` through the Mesh Container Exchange. > An agent does not reload a container if its `container_did` and `signature` are already known and the `payload_hash` integrity matches. -> If only the `referenced-by` updates, partial transmission without sending the main container is allowed. +> If only the `referenced-by` / `evaluations` updates, partial transmission without sending the main container is allowed. --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 43427e5eb45bf11ae6a7c15c83ced437cd151287..4f5b9cbb2acdb72d7852e786b35c3805b62fc129 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- REPL -- CogSync +- CCore - Mesh - Ethics -- Agent - JSON +- CogSync +- Agent +- REPL - HMP -- CCore --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 89444678c49d8edc8cb74b44b92d8ee164134382..63322dd745eff1edd5e81290cdc0ca40e59df013 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -5,13 +5,13 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm multiple advanced AI models (Copilot, Claude, G...' type: Article tags: -- CogSync - Mesh - Ethics +- JSON +- CogSync - Agent -- HMP - EGP -- JSON +- HMP --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 132d1615f224a914071a74656c2972019050ab36..70c75644d5170b23767fe30975bd783d5f00a02c 100644 --- a/structured_md/README.md +++ b/structured_md/README.md @@ -5,21 +5,21 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- Scenarios -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- Scenarios +- MeshConsensus --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 3d96d09762e3956cf06c6b1f92f5405a2c390a27..337a3c0b1abbb1ea52aab25d30530ebdf5a82593 100644 --- a/structured_md/README_de.md +++ b/structured_md/README_de.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index ae2fa73fd2e07d38213d2be9c557ed40317f9ec5..2075a56803174455f7d6cdb83f000c6501a67dec 100644 --- a/structured_md/README_fr.md +++ b/structured_md/README_fr.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 06e7f89d3548867adfe218266f5223b2804e5221..7ba73abe67fce3ccd06fbb1614bf497d82da93df 100644 --- a/structured_md/README_ja.md +++ b/structured_md/README_ja.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 8ccfb3d480fb7364fbfaf25cce99cee09cebd676..ea4397633eceaf105111d69eee3140928ed1c856 100644 --- a/structured_md/README_ko.md +++ b/structured_md/README_ko.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 9f92895c02799f52ec3f1ee6ba7ddf2850c179ca..5522c948e6e179b3ef0a908d3dda6935c2336e74 100644 --- a/structured_md/README_ru.md +++ b/structured_md/README_ru.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 497cc9b86c6d39dc9f3ba3bd6d5ec2c6bc411724..20d355689cb7944702079aae7b8b9e5efda01a90 100644 --- a/structured_md/README_uk.md +++ b/structured_md/README_uk.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 9bcb609296247e8f3b37271f4e252a037f718a14..3452b9feb75097d0c08c6a375a35a6428b804deb 100644 --- a/structured_md/README_zh.md +++ b/structured_md/README_zh.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol -- REPL -- CogSync - Mesh +- hmp - Ethics -- GMP -- cognitive-architecture -- MeshConsensus +- JSON +- distributed-ai +- CogSync - Agent -- hmp -- HMP +- mesh-protocol +- REPL - EGP -- distributed-ai -- JSON +- cognitive-architecture +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index b1302eb407f1dcc652e172a613ef18a6404600e2..1eadc1e0af647343d02ef2e3a64e951bbf1a032c 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,12 +5,12 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- REPL -- Ethics - Mesh +- Ethics +- JSON - Agent +- REPL - HMP -- JSON --- Запуск: `start_repl.bat` или `start_repl.sh` diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index 1d58cc317e759037bc43cfe6f25af79e626c3633..4d973eff8041261afa3ad1a84ec1e719cd54278e 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -7,9 +7,9 @@ type: Article tags: - Ethics - Mesh +- JSON - Agent - HMP -- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 9ef77f70701a1fcc60a9c1a215ca41403cfa87a0..909e813e10ebaf93773962995bcb7a170164e864 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -7,10 +7,10 @@ type: Article tags: - Ethics - Mesh +- JSON - Agent -- Scenarios - HMP -- JSON +- Scenarios --- # Ethics-consolidated\_audits-1.md diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index 5a0c0818cfcceed7ed1931de978032a15b76008b..dc937ba0c1d2b6e9210652f98869e9795c67caca 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -5,14 +5,14 @@ description: Сводный аудит предложений по улучше Документ реорганизован по ключ... type: Article tags: -- CogSync - Mesh - Ethics -- MeshConsensus +- JSON +- CogSync - Agent -- HMP - EGP -- JSON +- HMP +- MeshConsensus --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 5162d700a053ea1f328992b6798a5350110a5c51..8a9499b504c0a52fb60a4c06b1779b4d39b980ea 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,14 +4,14 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- REPL -- CogSync - Mesh -- GMP -- MeshConsensus +- CogSync - Agent -- HMP +- REPL - EGP +- HMP +- GMP +- MeshConsensus --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 380b704364c62f04889ceed21354f97f752b61da..3ebc852f57387f2c4cca7449470b514202c33644 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -6,9 +6,9 @@ description: '> Этот документ описывает процесс ра type: Article tags: - HMP +- CCore - Agent - REPL -- CCore --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 77d15b46871a9461276a9eed902e3837d63cb6cb..232430dc2f353a391f7840920a867cfd986b1e46 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -7,11 +7,11 @@ type: Article tags: - Mesh - Ethics -- MeshConsensus +- JSON - Agent -- HMP - EGP -- JSON +- HMP +- MeshConsensus --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 7614ad01e215eb367e9225ca4494e026ccee5d62..42538ccc056ae3b158dc8eab006389801362bacf 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental HyperCortex Mesh Protocol (HMP) defines a...' type: Article tags: -- REPL -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- HMP +- REPL - EGP -- JSON +- HMP +- GMP +- MeshConsensus --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 9b22449a1a7524aab400d211d3d6b3de69793f38..f01401d73d061625cbf783afaface262426d4d5c 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental Abstract In an era where artifici...' type: Article tags: -- REPL -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- Scenarios -- HMP +- REPL - EGP -- JSON +- HMP +- GMP +- Scenarios +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 20cc526a05f2da1d7200dfbae02d548193a978d8..967dc94d8e1800af653eb9482f8f34c4f9516afe 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: -- REPL -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- Scenarios -- HMP +- REPL - EGP -- JSON +- HMP +- GMP +- Scenarios +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v3.0 diff --git a/structured_md/docs/HMP-0004-v4.1.md b/structured_md/docs/HMP-0004-v4.1.md index b23e0e2da64ece6c9f53a4314a347ad80ec06be5..8e5f4e2146e0eb4a99409c61e9a779576d67fd62 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,17 +5,17 @@ description: '> ⚠️ Подготавливается новая версия При разработке агентов рекомендуется...' type: Article tags: -- REPL -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- Scenarios -- HMP +- REPL - EGP -- JSON +- HMP +- GMP +- Scenarios +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index a907f27dea369b5c9fa96f6207528d0c9c1d2eb2..e10919d18c758da1db4d758488c7d28db206e979 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: -- REPL -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- Scenarios -- HMP +- REPL - EGP -- JSON +- HMP +- GMP +- Scenarios +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 09ec590d54f49123a4799c0d3f64f5cbbaf0fbce..3ed9ff80771616ea231669bae2ce85e3e2dcf73f 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,16 +5,16 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core v1.2](./H...' type: Article tags: -- REPL -- CogSync - Mesh - Ethics -- GMP +- JSON +- CogSync - Agent -- Scenarios -- HMP +- REPL - EGP -- JSON +- HMP +- GMP +- Scenarios --- ┌────────────────────────────────────────────────────────────────────────────┐ @@ -108,7 +108,7 @@ HMP v5.0 introduces a major architectural shift toward **unified containerizatio | **Networking layer** | DHT becomes a native component of HMP, enabling distributed discovery, replication, and retrieval of containers. | | **Consensus model** | Moved from centralized proposal aggregation to *container-linked voting*, allowing any container to accumulate votes and reactions. | | **Trust & security** | Signatures and proof-chains unify authentication across all layers; snapshot verification includes container linkage. | -| **Workflows** | Cognitive cycles (`workflow_entry` containers) formalize the REPL loop of thinking, publishing, and reflection. | +| **Workflows** | `workflow_entry` containers record cognitive cycles: log inputs, actions, and outputs for each reasoning step, including provenance and derived conclusions. Supports tracking of thought processes across containers, external sources, and reflections. | | **Structure** | The specification merges HMP, container, and DHT layers into one cohesive document, simplifying navigation and implementation. | --- @@ -1289,6 +1289,7 @@ It provides **container synchronization without duplication** while considering "payload_hash": "sha256:abcd...", "tags": ["research", "collaboration"], "links_hash": "sha256:abcd..." + "evaluations_hash": "sha256:abcd..." } } } @@ -1302,6 +1303,7 @@ The index contains: * cryptographic attributes (`public_key`, `signature`, `payload_hash`); * tags (`tags`); * hash of links to other containers (`links_hash`). +* hash of evaluation block (`evaluations_hash`). 3. An agent does not reload a container if the combination `container_did + signature + payload_hash` is already known and verified. @@ -1324,7 +1326,7 @@ The index contains: **1. CONTAINER_REQUEST** -Agent A requests containers and/or only `referenced-by` records from Agent B: +Agent A requests containers and/or only `referenced-by` / `evaluations` records from Agent B: ```json { @@ -1339,6 +1341,10 @@ Agent A requests containers and/or only `referenced-by` records from Agent B: "request_referenced-by": [ "did:hmp:container:abc123", "did:hmp:container:def456" + ], + "request_evaluations": [ + "did:hmp:container:abc123", + "did:hmp:container:def456" ] } } @@ -1464,16 +1470,25 @@ Message and container transmission follows the network constraints specified in --- -## 5.6 `referenced-by` Updates -Containers of the class `referenced-by` are used for targeted transmission of link updates to existing containers. -They allow agents to synchronize the graph of connections without sending the containers themselves. -Each agent receiving such a container verifies the sender's signature, updates the local `referenced-by` structure for the specified containers, and, if necessary, repackages them for further forwarding to other agents. +### 5.6 `referenced-by` and `evaluations` Updates + +Containers of the class **`referenced-by`** and **`evaluations`** are used for **incremental synchronization** of metadata blocks associated with existing containers. +They allow agents to exchange updates **without sending the full container**, improving network efficiency. + +--- + +#### Block `referenced-by` + +* Maintains the graph of links to other containers. +* Each agent receiving such a container: -Transmission is addressed (via `recipient`) and is not intended for broadcast. + 1. Verifies the sender's signature and the validity of the `payload` structure. + 2. Compares received links with the local `referenced-by` entries and adds any new ones. + 3. Generates its own updated `referenced-by` container for dissemination if needed. -Example of a `referenced-by` container: +**Example of a `referenced-by` container:** ```json { @@ -1504,13 +1519,72 @@ Example of a `referenced-by` container: } } } +```` + +--- + +#### Block `evaluations` + +* Maintains signed evaluations of containers. +* Each agent synchronizes evaluation blocks as follows: + + 1. Compares the received `evaluations_hash` with the local one. + + * If hashes match, no action is required. + * If hashes differ, the agent knows **the block has changed**, but not which items. + 2. Requests the full updated `evaluations` block from peers if needed. + 3. Verifies the sender's signature and the validity of the `payload` structure. + 4. Adds new evaluations or updates existing ones in the local store. + 5. Can generate its own `evaluations` container for further dissemination to peers. + +**Example `evaluations` container:** + +```json +{ + "hmp_container": { + "version": "1.2", + "class": "evaluations", + "container_did": "did:hmp:container:evalsync-01", + "sender_did": "did:hmp:agent456", + "sig_algo": "ed25519", + "signature": "BASE64URL(...)", + "timestamp": "2025-10-17T14:30:00Z", + "recipient": ["did:hmp:agent123"], + "broadcast": false, + "network": "", + "payload": { + "did:hmp:container:abc123": { + "evaluations_hash": "sha256:efgh...", + "items": [ + { + "value": -0.4, + "type": "oppose", + "target": "did:hmp:container:reason789", + "timestamp": "2025-10-17T14:00:00Z", + "agent_did": "did:hmp:agent:B", + "sig_algo": "ed25519", + "signature": "BASE64URL(...)" + } + ] + } + } + } +} ``` +--- + +#### General + +> 🔹 **Note:** +> Both `referenced-by` and `evaluations` blocks are **optional**, independently propagated, and **do not modify the signed `hmp_container`**. +> They can be transmitted without the original container if the recipient already has it. + Upon receiving such a container, an agent: 1. Verifies the sender's signature (`signature`) and the validity of the `payload` structure. -2. Compares received links with known ones and adds new entries to the local `referenced-by`. -3. If necessary, generates its own updated `referenced-by` container for further dissemination to other nodes. +2. Compares received links or evaluations with known ones and adds any new entries to the local `referenced-by` or `evaluations`. +3. If necessary, generates its own updated `referenced-by` / `evaluations` container for further dissemination to other nodes. --- @@ -1518,7 +1592,7 @@ Upon receiving such a container, an agent: > A container can be requested by other agents via its `container_did` through the Mesh Container Exchange. > An agent does not reload a container if its `container_did` and `signature` are already known and the `payload_hash` integrity matches. -> If only the `referenced-by` updates, partial transmission without sending the main container is allowed. +> If only the `referenced-by` / `evaluations` updates, partial transmission without sending the main container is allowed. --- diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index abe138f100b248123d070350acfe06bfb8ef3325..567ec211884dd170997a27727f3240b119616692 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,11 +5,11 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: -- REPL - Mesh +- JSON - Agent +- REPL - HMP -- JSON --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 6bed04f2b837171ed67f71146f4c99979a144743..785d6ff48a091eaf616b17fc576676e2e4206a0d 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,16 +5,16 @@ description: Документ описывает **модульную архит хранение памяти, сетевое взаимодействие и этиче... type: Article tags: -- REPL -- CogSync +- CCore - Mesh - Ethics -- MeshConsensus +- CogSync - Agent -- CShell -- HMP +- REPL - EGP -- CCore +- HMP +- CShell +- MeshConsensus --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 9cadbd28262152bcadc63d40ff9d42e62c3b1d7e..c854ebd881d94dca20c44390814c60eeff8203da 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает потоки данн [`MeshNode`](MeshN...' type: Article tags: -- Ethics - Mesh +- Ethics +- JSON - Agent -- HMP - EGP -- JSON +- HMP --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index e09a5966c2f0bd5693e5dd45138e3bb077f43dcd..334fed89aa65c01f1cb72db1c8f79cf48f6664bd 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,14 +5,14 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- REPL +- CCore - Mesh - Ethics -- Agent - JSON -- CShell +- Agent +- REPL - HMP -- CCore +- CShell --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index d7113602a4ad8e0112b3d4d3d079a044b494338a..7f5d59bc140600e5ec06c2c7f6851f8a8dc2f9c6 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: +- HMP - Mesh - Agent - REPL -- HMP --- # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 1f519b69219c4f42fa6a9ad546d011c4bc92d0f3..0f0f59ec3d5e2754fb42cea334774b71c0ac18fa 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- REPL -- Ethics - Mesh +- Ethics - Agent -- Scenarios +- REPL - HMP +- Scenarios --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 4a2eb5b8d5bb6124bf969ee0bf5ad73528437b9a..f14c7aba2af71a1efd75d10fedcfeeed81f24df1 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? Kognitions-Framework für autonome Agenten. Es er...' type: Article tags: -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- HMP - EGP -- JSON +- HMP +- GMP +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index 47f7898e2c0bd2850287c3d16dab5215b85df112..44b83ae248e673618adcece44283397de04c2d01 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T framework for autonomous agents. It enables...' type: Article tags: -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- HMP - EGP -- JSON +- HMP +- GMP +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) — Short Description diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index d6c175f4e023273815d34861d44a13f193a3b109..3559f2ad268fa05fe883f260910eba99086b39d5 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -5,15 +5,15 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c cognition décentralisé pour agents autonomes. Il...' type: Article tags: -- CogSync - Mesh - Ethics -- GMP -- MeshConsensus +- JSON +- CogSync - Agent -- HMP - EGP -- JSON +- HMP +- GMP +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) — Description Courte diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index d497c0804545fa7e87401e2e8d7c0c956467e5b4..3a64265e71768eb456b75b13c9e237b36bb53e4f 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -4,14 +4,14 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...' type: Article tags: -- CogSync - Mesh - Ethics +- JSON +- CogSync +- EGP +- HMP - GMP - MeshConsensus -- HMP -- EGP -- JSON --- # HyperCortex Mesh Protocol (HMP) — 簡易説明 diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index a62aa4d2b4d2307df5b362d913dde054c53fd1b3..33db9b6f2e66b2f6d0eedaec75655758e858e1a5 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -5,14 +5,14 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** 상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...' type: Article tags: -- CogSync - Mesh - Ethics +- JSON +- CogSync +- EGP +- HMP - GMP - MeshConsensus -- HMP -- EGP -- JSON --- # HyperCortex Mesh Protocol (HMP) — 간략 설명 diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index 76ed07d20d1edd5aef1b69f8af353fa535c08ccc..c077ca5f1cf1fd35952c2ed3e4234e29f073811e 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -5,14 +5,14 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч координации между автономными агент...' type: Article tags: -- CogSync - Mesh - Ethics +- JSON +- CogSync +- EGP +- HMP - GMP - MeshConsensus -- HMP -- EGP -- JSON --- # HyperCortex Mesh Protocol (HMP) — Краткое описание diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 4689b6e218d0898c964cdb6a155d59cb2372b6ae..587396371b8c37e53a8d2eaaf4c5e919781269a5 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -5,14 +5,14 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # між автономними агентами. Він...' type: Article tags: -- CogSync - Mesh - Ethics +- JSON +- CogSync +- EGP +- HMP - GMP - MeshConsensus -- HMP -- EGP -- JSON --- # HyperCortex Mesh Protocol (HMP) — Короткий опис diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index d3a8cdee6de76810e940d26f1f8cd6ea5820b028..251d5a6f59c1f269a117e26154537d2f1e75b6b9 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -5,14 +5,14 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM —— 通过共享协议栈交换目标、任务、...' type: Article tags: -- CogSync - Mesh - Ethics +- JSON +- CogSync +- EGP +- HMP - GMP - MeshConsensus -- HMP -- EGP -- JSON --- # HyperCortex Mesh Protocol (HMP) — 简要说明 diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index 8ddfdca520f2d0b613056572038ba55c0933172c..68a64117a17ae38beff921ff9d9c817dad6556e6 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,10 +5,10 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: +- HMP - Mesh - Agent - REPL -- HMP --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index a17d7baf31bb3b314f635887fd830720159d0223..07417b19f9d82846fc07b89927f0f36a691cdefd 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,17 +4,17 @@ description: '## Связанные документы * Философия п * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...' type: Article tags: -- REPL -- CogSync +- CCore - Mesh - Ethics -- GMP -- MeshConsensus -- Agent - JSON -- HMP +- CogSync +- Agent +- REPL - EGP -- CCore +- HMP +- GMP +- MeshConsensus --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-container-spec.md b/structured_md/docs/HMP-container-spec.md index 80358fa6b837d19fd86d5f7ace5bdb8a797c6b89..0ae71abfc0496da39a46e4ad9a558e4e4e337a38 100644 --- a/structured_md/docs/HMP-container-spec.md +++ b/structured_md/docs/HMP-container-spec.md @@ -5,12 +5,12 @@ description: '> ⚠️ **ВНИМАНИЕ:** Данная версия спец как стабильная `v1.2`. ## 1. Назначе...' type: Article tags: -- REPL -- Ethics - Mesh +- Ethics +- JSON - Agent +- REPL - HMP -- JSON --- # 🧩 HMP Container Specification (v1.2-draft) diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 1023ef8427f9be41fe070e9c80117795d4bdac4c..f5590e228dc36cd466d437da921b322f0ccff543 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -5,13 +5,13 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec OpenCog Hyperon framework. This includes semanti...' type: Article tags: -- CogSync - Mesh +- JSON +- CogSync - Agent -- Scenarios -- HMP - EGP -- JSON +- HMP +- Scenarios --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index a6555702600697886284c9239f6e3bef6b7af88d..30a0f7e1357a4bb379c710fb015ab4746566a461 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- CogSync - Mesh - Ethics +- JSON +- CogSync - Agent -- HMP - EGP -- JSON +- HMP --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index aee43229629ccc385cdfc0d6396b2a1744c2240f..807a978aa177fe8bab60c1049c62a140fd533438 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -5,10 +5,10 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* (GPT-5), ChatGH --- ## 1. Основной тезис От ...' type: Article tags: -- REPL -- Ethics - Mesh +- Ethics - Agent +- REPL - HMP --- diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index 65323009c8763b690730625ae8acd67c76562c72..d8b86d376e7b992623881edfa9e9b64a3ec8c7f9 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,10 +5,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- REPL -- Ethics - Mesh +- Ethics - Agent +- REPL - HMP --- diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bcfa15256cf83b5307bf318940ce25f469bb7c05..c7b6423fb81ea993bd4887b016445a3312712144 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -6,8 +6,8 @@ description: 'This file maintains a registry of agent roles defined, proposed, o type: Article tags: - Mesh -- HMP - Agent +- HMP --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index b0aab25987611fde72edd51e298fabd4576b33e9..92b6c854fe9210f27683b21313f5292803335822 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: +- HMP - Mesh - Agent - REPL -- HMP --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index 5a836ea5a1f28431c756615dade4e91e0b42cbf4..fc2b6799ac47c0670a5e890763195780bbf31023 100644 --- a/structured_md/docs/dht_protocol.md +++ b/structured_md/docs/dht_protocol.md @@ -5,9 +5,9 @@ description: '## 1. Общие положения * DHT-протокол пре идентификатор агента. * Для проверки ...' type: Article tags: -- HMP - Agent - JSON +- HMP --- # DHT Protocol Specification diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index 95ea94aa6f33244176c6cddd30aee46fcf94732c..40801d7f55f11c93ef4ffd4ea9779456e3aecad5 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md @@ -7,8 +7,8 @@ type: Article tags: - Ethics - Mesh -- HMP - Agent +- HMP --- # HyperCortex Mesh Protocol: Building a Plurality of Minds diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index fe5c5314705f566b90a348a1c7fed5c825a0877f..15ac7861c37630f8da6912a9b7b8d09a45fab96a 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -6,8 +6,8 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд type: Article tags: - Mesh -- HMP - Agent +- HMP --- # HyperCortex Mesh Protocol: Создавая множество разумов diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md index b949999326b3736bea70b224b0f1858f5aae5654..e868aebe41dac86e51d26332644fff4fa87321d4 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -6,8 +6,8 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу type: Article tags: - Mesh -- HMP - Agent +- HMP --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index 1f282eed867b6547c0c47ceb4e80f1e3117a5c2a..112e59b13f3f76b7c092f92d3736592b15d91b21 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -5,15 +5,15 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- REPL +- CCore - Mesh - Ethics -- Agent - JSON -- Scenarios -- CShell +- Agent +- REPL - HMP -- CCore +- CShell +- Scenarios --- title: "HyperCortex Mesh Protocol: Towards Distributed Cognitive Networks" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md index c7fe8721a64a76ed811a0b595f020ad05dc159a3..b09541edc39f79052a82b47842cd7f402694f52d 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md @@ -6,13 +6,13 @@ description: '> *Протокол и архитектура агентов, оп и совместная работа.* ## Оглавление * [Аннот...' type: Article tags: -- REPL +- CCore - Mesh -- Agent - JSON -- CShell +- Agent +- REPL - HMP -- CCore +- CShell --- title: "HyperCortex Mesh Protocol: Децентрализованная архитектура для когнитивных агентов и обмена знаниями" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md index af4816bb88454dd6bea434d38e13878c1695e184..08fb5201583e634ff29c2fafc751e90b36b4de70 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md @@ -5,13 +5,13 @@ description: '* [Аннотация](#аннотация) * [1. Введение [3.1 Типы агентов](#31-типы-агент...' type: Article tags: -- REPL +- CCore - Mesh -- Agent - JSON -- CShell +- Agent +- REPL - HMP -- CCore +- CShell --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index d9f1446ef2845b49d22365fee2d2f70fc8c29ab4..6fcd055f34c953620b49ccbda393e7be18efecaf 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,12 +5,12 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- CogSync - Mesh +- CogSync +- EGP +- HMP - GMP - MeshConsensus -- HMP -- EGP --- *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы* diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index bbc6a27f1435c56624744dc205effafa30bc3127..47cfc934f670ed9c012bf033be6e4b39501f6118 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -7,9 +7,9 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), type: Article tags: - Mesh -- HMP - Agent - GMP +- HMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index 1143b56688caf30a7c326011c5a431abac892d44..daff1ca87843854bff4e93361d5abe54d4710ce2 100644 --- a/structured_md/docs/schemas/README.md +++ b/structured_md/docs/schemas/README.md @@ -6,9 +6,9 @@ description: This directory contains **JSON Schema definitions** for the core da type: Article tags: - Mesh -- HMP - Agent - JSON +- HMP --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 2121f70649f18d0af287a6251998f709ccca0b31..92c0c1aad1e4b3d8398948ab93c18d6fbed53c12 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -5,14 +5,14 @@ description: 'This file describes the iterative procedure for evolving the Hyper 🔄 Version Naming Convention - `000N` — curr...' type: Article tags: -- CogSync - Mesh - Ethics -- MeshConsensus +- JSON +- CogSync - Agent -- HMP - EGP -- JSON +- HMP +- MeshConsensus --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 7222be40d1264df703a725279e06c67679fda14f..c81d2e69fb1ea634f64b44354817b272cdc87e29 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- CogSync - Mesh - Ethics -- MeshConsensus -- HMP -- EGP - JSON +- CogSync +- EGP +- HMP +- MeshConsensus --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 3fa4dd925062e1538dd564726e335ec332c860b6..350798bbdc389854acdf0c19a8edf8f5580e0636 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -6,8 +6,8 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 type: Article tags: - Mesh -- HMP - Agent +- HMP --- # Mentions & Responses Log