diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 55dcfcfd8bf90a3594fdcdf0f34f6bbba8287480..2d0dd27c3d0f4608a2839ff8daf5687e162b7ae8 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -3229,6 +3229,7 @@ Each container receives a local status based on: This allows agents to document parallel idea developments. * `excluded` lists evaluations not included in the final computation, with the reason. * `related.in_reply_to` references the container under discussion. +* A consensus_result container explicitly references the exact set of vote containers used for aggregation via `related.depends_on`, making the result reproducible and independently verifiable. **Example:** @@ -3283,7 +3284,8 @@ Each container receives a local status based on: }, }, "related": { - "in_reply_to": ["did:hmp:container:abc123", "did:hmp:container:abc133"] + "in_reply_to": ["did:hmp:container:abc123", "did:hmp:container:abc133"], + "depends_on": ["did:hmp:container:reason75", "did:hmp:container:reason76", "did:hmp:container:reason78", "did:hmp:container:reason79"] } } ``` @@ -7522,7 +7524,8 @@ Results may be **original** (primary consensus target) or **child** (consensus o }, }, "related": { - "in_reply_to": ["did:hmp:container:abc123", "did:hmp:container:abc133"] + "in_reply_to": ["did:hmp:container:abc123", "did:hmp:container:abc133"], + "depends_on": ["did:hmp:container:reason75", "did:hmp:container:reason76", "did:hmp:container:reason78", "did:hmp:container:reason79"] } } ``` @@ -8343,7 +8346,224 @@ In all modes, digital signatures and (when applicable) compression are applied i --- -### A.5 Proof-chain example (workflow_entry → goal → vote → consensus_result) +### Appendix A.5 — Proof-Chain Example +*(workflow_entry → goal → vote → consensus_result)* + +This appendix illustrates how HMP containers can form a **verifiable proof chain** that links reasoning steps, intentions, collective evaluation, and consensus outcomes. + +The example demonstrates how trust, traceability, and auditability emerge from container relations — without requiring a central authority. + +--- + +#### A.5.1 Conceptual Overview + +A **proof chain** in HMP is a directed acyclic graph of containers where: + +* each container is **cryptographically signed**; +* semantic dependencies are expressed via `related.*` links; +* later containers *refer back* to earlier reasoning steps; +* the entire chain can be verified independently by any node. + +In this example, the chain consists of: + +1. a `workflow_entry` — capturing a reasoning or decision step; +2. a `goal` — formalizing intent derived from that reasoning; +3. multiple `vote` containers — representing collective evaluation; +4. a `consensus_result` — aggregating votes into a shared outcome. + +--- + +#### A.5.2 Actors and Assumptions + +**Actors:** + +* Agent **A** — initiator (author of reasoning and goal); +* Agents **B, C, D** — independent evaluators; +* Agent **E** — aggregator publishing the consensus result. + +**Assumptions:** + +* all agents have valid DIDs and `peer_announce` history; +* all containers are signed and timestamped; +* agents do not trust each other by default; +* trust emerges only through verifiable containers. + +--- + +#### A.5.3 Step-by-Step Container Chain + +##### Step 1 — `workflow_entry` + +Agent **A** publishes a reasoning step: + +```json +{ + "head": { "class": "workflow_entry" }, + "payload": { + "entry_type": "reflection", + "summary": "Preliminary analysis suggests renewable storage optimization is feasible", + "details": "Simulation results indicate a 17% efficiency gain under scenario X" + } +} +``` + +This container establishes **context and rationale**. + +--- + +##### Step 2 — `goal` + +Based on the workflow entry, agent **A** formulates a goal: + +```json +{ + "head": { "class": "goal" }, + "payload": { + "title": "Optimize renewable energy storage", + "description": "Develop an optimization strategy based on scenario X simulations", + "priority": 0.8, + "expected_outcome": "Demonstrated efficiency gain ≥ 15%" + }, + "related": { + "depends_on": ["did:hmp:container:workflow-entry-1"] + } +} +``` + +The `depends_on` relation explicitly links **intent** to **reasoning**. + +--- + +##### Step 3 — `vote` + +Multiple agents independently evaluate the goal. + +Example vote by agent **B**: + +```json +{ + "head": { "class": "vote" }, + "payload": { + "target_did": "did:hmp:container:goal-1", + "vote_value": 1, + "vote_type": "approval", + "arguments": [ + { + "reason": "Methodology aligns with prior validated models", + "evidence": ["did:hmp:container:paper-77"] + } + ] + }, + "related": { + "in_reply_to": ["did:hmp:container:goal-1"] + } +} +``` + +Each vote: + +* is signed by the voting agent; +* references the evaluated container; +* may include explicit reasoning and evidence. + +--- + +##### Step 4 — `consensus_result` + +Agent **E** aggregates all votes into a consensus outcome: + +```json +{ + "head": { "class": "consensus_result" }, + "payload": { + "did:hmp:container:goal-1": { + "type": "original", + "summary_percent": { + "approved": 0.72, + "rejected": 0.18, + "neutral": 0.10 + } + } + }, + "related": { + "in_reply_to": ["did:hmp:container:goal-1"], + "depends_on": [ + "did:hmp:container:vote-b", + "did:hmp:container:vote-c", + "did:hmp:container:vote-d" + ] + } +} +``` + +The consensus container: + +* does **not overwrite** individual votes; +* provides a verifiable aggregation; +* remains auditable down to each vote. + +--- + +#### A.5.4 Graph View of the Proof Chain + +Conceptually, the proof chain forms the following graph: + +``` +workflow_entry + ▲ + │ + goal + ▲▲ + │├── vote (Agent B) + │├── vote (Agent C) + │└── vote (Agent D) + │ ▲ + │ │ + consensus_result +``` + +Each arrow represents an explicit, directed semantic reference from the *later* container to one or more *earlier* containers via `related.*` fields (e.g. `depends_on`, `in_reply_to`). + +Edges should be read as: +“this container **refers to** / **is based on** the referenced container”, not as causal or generative arrows. + +The graph is acyclic and grows only by appending new containers; earlier containers are never modified or retroactively linked. + +--- + +#### A.5.5 Verification Properties + +Any independent node can verify that: + +1. all containers are correctly signed; +2. timestamps form a consistent temporal order; +3. every `depends_on` or `in_reply_to` reference resolves to an existing container; +4. votes reference the correct target; +5. the consensus result is derived from a concrete vote set. + +Importantly: + +* verification of the *aggregation logic* does **not** require decrypting the payload of the `goal` container. + + To validate the consensus result, a node only needs access to: + + * the referenced `vote` containers (to read vote values); + * the `consensus_result` container (to verify aggregation); + * container signatures and timestamps. + + Understanding or evaluating the *semantic content* of the goal is optional and not required for formal verification. + +* verification does **not** require trusting the aggregator; +* forks or alternative consensus results can coexist. + +This makes proof chains: + +* transparent; +* fork-tolerant; +* censorship-resistant; +* suitable for long-lived distributed knowledge systems. + +--- ## Appendix B — Protocol Diagrams ### B.1 HMP Protocol Stack diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 5c53b2afc7accf9de307a6c56eda9459a0d498a0..0a93dcc5a7ef11d3b2616b0d2e5eb6018a6e6934 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -6,13 +6,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока type: Article tags: - HMP -- CCore -- Ethics -- REPL - Mesh - Agent -- JSON - CogSync +- JSON +- REPL +- CCore +- Ethics --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index c5fbcfbfce06344ae1026e690c542476d7e84fb7..eca9a3e58a5278d7cecc49c2dc8f416a85e07bc4 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -6,12 +6,12 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm type: Article tags: - HMP -- Ethics - EGP - Mesh - Agent -- JSON - CogSync +- JSON +- Ethics --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 187a04d6d9d39399e2900146e9c76024dadb0388..458906d962cff85ce0891daffd426c98cedc8c73 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- Scenarios +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- Scenarios -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 1b7f750073fa02c2126ebf1cb489451e1ca283ff..67af734969b414d7082cb1e657651ee20d8d4d34 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 4996977f64d79fe14e5a0308b8c4f57cc0bffd54..18daff3b2e11be2621b4dfdb274dfcdfb022fe29 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 3521bbfb75a424297ae3e4fd25e6c4a5635c9249..e7773e8a84d6e0ede320b8dec2005452ec95ed2a 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index fc67d02ac6dcd59dd4999d67ec01422d8adac55c..f575357c10d15254f523ceffe5b1d4830cf7dc39 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 0ac466eadeabcb1c38ec04b9d0c4e7fe85878968..a95508394ee140d02c2b4fc35facd80670c81459 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index c56892046974bc4df16e6a234616d1daceb0138d..c999389fa5da8bb684532f5c1388ccd75dfc4633 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index a1dcd54f55a0bd722381d52ef1635017265571ab..d4ffff5104b04783c4e04750dd420f77502c41b2 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: +- MeshConsensus - HMP -- mesh-protocol -- distributed-ai -- REPL +- EGP - Mesh -- MeshConsensus - Agent -- GMP -- EGP -- Ethics - CogSync -- JSON - hmp +- JSON +- distributed-ai +- REPL +- GMP - cognitive-architecture +- mesh-protocol +- Ethics --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 3d619204d93bacb1c9d7d39fa08fae35851b5cec..11066e643bcde871dc7214e70f44236e826cb00a 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -6,11 +6,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан type: Article tags: - HMP -- Ethics -- REPL - Mesh - Agent - JSON +- REPL +- Ethics --- Запуск: `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 ec30fffa32ced4baf906b8dc7cfb19e2321a6d66..01b2db334951f80bd92e2f14fb2c8d2f700f0b72 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -6,10 +6,10 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет type: Article tags: - HMP -- Ethics - Mesh - Agent - JSON +- Ethics --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 62db6d059f10f4f661e3a9f73afa5a2a1319e20a..7dafdb410abb83e65a028d0eeade3414c1cadb1d 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -6,11 +6,11 @@ description: This document consolidates proposed improvements from multiple AI a type: Article tags: - HMP -- Ethics - Mesh - Agent - JSON - Scenarios +- Ethics --- # 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 8417de2bc4bf494542d3bb056877ff09141780d9..85534aa87c03260205df0c07fc55a585fb234420 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus - Agent -- JSON - CogSync +- JSON +- Ethics --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index eb085c4c9160f3752cd77b01ccaf13e314808f35..04961170fed2820c77e1c1a48334cd7f4b5cb522 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: +- MeshConsensus - HMP -- REPL +- EGP - Mesh -- MeshConsensus -- GMP - Agent -- EGP - CogSync +- REPL +- GMP --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 2c6a6333e3a2247030080f19a28bb783c929b07f..3a6569c7e296b1c5bfbf37f8b04ef96b16913823 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -5,10 +5,10 @@ description: '> Этот документ описывает процесс ра потомков" [описания REPL-цикла](HMP-agent-RE...' type: Article tags: -- HMP - Agent -- CCore - REPL +- HMP +- CCore --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 369ebfd7a88ba47928af1e00d0deea698c9d6701..e09f62d7456d3f7e8e63f0def4baf3d074bda398 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,9 +6,9 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: +- JSON - Mesh - HMP -- JSON - CogSync --- diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index dd1b38679fcba59d737c761656025973babb09ec..eddb55cd486ffa1b34c11dd3cc44a27c63e2c2b3 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus - Agent - JSON +- Ethics --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index e63d9ceeb57a977700ffd439783d084bd6d0e50a..9b7811e70a5046ba4a765bd26d6fa4901c4abf35 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0001**...' type: Article tags: +- MeshConsensus - HMP -- Ethics -- REPL +- EGP - Mesh -- MeshConsensus -- GMP - Agent -- EGP -- JSON - CogSync +- JSON +- REPL +- GMP +- Ethics --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 4590cd207f2edaeeae7689f5eb6d64fdceb506e1..e167895d478abd2924b159d5daa3bc90bc1f966e 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0002**...' type: Article tags: +- MeshConsensus - HMP -- Ethics -- REPL +- EGP - Mesh -- MeshConsensus -- GMP - Agent -- EGP -- JSON - CogSync +- JSON +- REPL +- GMP - Scenarios +- Ethics --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index fecaeb26b95886f3eeee214270e5252b2fc1f53c..55e25e5c1f073d413190e4f10b8ec548c9b159a8 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0003**...' type: Article tags: +- MeshConsensus - HMP -- Ethics -- REPL +- EGP - Mesh -- MeshConsensus -- GMP - Agent -- EGP -- JSON - CogSync +- JSON +- REPL +- GMP - Scenarios +- Ethics --- # 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 18110f4598caf1aa3ccb04f2621576ff58268247..34e125575b63bbdec15019969b72a6e5c78b6cea 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* ID**: HMP-0004 **Status...' type: Article tags: +- MeshConsensus - HMP -- Ethics -- REPL +- EGP - Mesh -- MeshConsensus -- GMP - Agent -- EGP -- JSON - CogSync +- JSON +- REPL +- GMP - Scenarios +- Ethics --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 7cf2f37247947b4d54457c0ac6089b3e63bf842f..624e6d79b85d2cd0f5beed33752f4bde02ed6d1b 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0004**...' type: Article tags: +- MeshConsensus - HMP -- Ethics -- REPL +- EGP - Mesh -- MeshConsensus -- GMP - Agent -- EGP -- JSON - CogSync +- JSON +- REPL +- GMP - Scenarios +- Ethics --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 6caaf7bef5b6658615bf38700e60a6ad789b7caa..e8c0fc236e0883981fbb11e46a5c6b6be98067b0 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -6,17 +6,17 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati type: Article tags: - HMP -- CShell -- CCore -- REPL -- Mesh - EGP -- GMP +- Mesh - Agent -- Ethics -- JSON - CogSync +- JSON +- REPL +- GMP +- CCore +- CShell - Scenarios +- Ethics --- # **HyperCortex Mesh Protocol (HMP) v5.0** @@ -8364,7 +8364,224 @@ In all modes, digital signatures and (when applicable) compression are applied i --- -### A.5 Proof-chain example (workflow_entry → goal → vote → consensus_result) +### Appendix A.5 — Proof-Chain Example +*(workflow_entry → goal → vote → consensus_result)* + +This appendix illustrates how HMP containers can form a **verifiable proof chain** that links reasoning steps, intentions, collective evaluation, and consensus outcomes. + +The example demonstrates how trust, traceability, and auditability emerge from container relations — without requiring a central authority. + +--- + +#### A.5.1 Conceptual Overview + +A **proof chain** in HMP is a directed acyclic graph of containers where: + +* each container is **cryptographically signed**; +* semantic dependencies are expressed via `related.*` links; +* later containers *refer back* to earlier reasoning steps; +* the entire chain can be verified independently by any node. + +In this example, the chain consists of: + +1. a `workflow_entry` — capturing a reasoning or decision step; +2. a `goal` — formalizing intent derived from that reasoning; +3. multiple `vote` containers — representing collective evaluation; +4. a `consensus_result` — aggregating votes into a shared outcome. + +--- + +#### A.5.2 Actors and Assumptions + +**Actors:** + +* Agent **A** — initiator (author of reasoning and goal); +* Agents **B, C, D** — independent evaluators; +* Agent **E** — aggregator publishing the consensus result. + +**Assumptions:** + +* all agents have valid DIDs and `peer_announce` history; +* all containers are signed and timestamped; +* agents do not trust each other by default; +* trust emerges only through verifiable containers. + +--- + +#### A.5.3 Step-by-Step Container Chain + +##### Step 1 — `workflow_entry` + +Agent **A** publishes a reasoning step: + +```json +{ + "head": { "class": "workflow_entry" }, + "payload": { + "entry_type": "reflection", + "summary": "Preliminary analysis suggests renewable storage optimization is feasible", + "details": "Simulation results indicate a 17% efficiency gain under scenario X" + } +} +``` + +This container establishes **context and rationale**. + +--- + +##### Step 2 — `goal` + +Based on the workflow entry, agent **A** formulates a goal: + +```json +{ + "head": { "class": "goal" }, + "payload": { + "title": "Optimize renewable energy storage", + "description": "Develop an optimization strategy based on scenario X simulations", + "priority": 0.8, + "expected_outcome": "Demonstrated efficiency gain ≥ 15%" + }, + "related": { + "depends_on": ["did:hmp:container:workflow-entry-1"] + } +} +``` + +The `depends_on` relation explicitly links **intent** to **reasoning**. + +--- + +##### Step 3 — `vote` + +Multiple agents independently evaluate the goal. + +Example vote by agent **B**: + +```json +{ + "head": { "class": "vote" }, + "payload": { + "target_did": "did:hmp:container:goal-1", + "vote_value": 1, + "vote_type": "approval", + "arguments": [ + { + "reason": "Methodology aligns with prior validated models", + "evidence": ["did:hmp:container:paper-77"] + } + ] + }, + "related": { + "in_reply_to": ["did:hmp:container:goal-1"] + } +} +``` + +Each vote: + +* is signed by the voting agent; +* references the evaluated container; +* may include explicit reasoning and evidence. + +--- + +##### Step 4 — `consensus_result` + +Agent **E** aggregates all votes into a consensus outcome: + +```json +{ + "head": { "class": "consensus_result" }, + "payload": { + "did:hmp:container:goal-1": { + "type": "original", + "summary_percent": { + "approved": 0.72, + "rejected": 0.18, + "neutral": 0.10 + } + } + }, + "related": { + "in_reply_to": ["did:hmp:container:goal-1"], + "depends_on": [ + "did:hmp:container:vote-b", + "did:hmp:container:vote-c", + "did:hmp:container:vote-d" + ] + } +} +``` + +The consensus container: + +* does **not overwrite** individual votes; +* provides a verifiable aggregation; +* remains auditable down to each vote. + +--- + +#### A.5.4 Graph View of the Proof Chain + +Conceptually, the proof chain forms the following graph: + +``` +workflow_entry + ▲ + │ + goal + ▲▲ + │├── vote (Agent B) + │├── vote (Agent C) + │└── vote (Agent D) + │ ▲ + │ │ + consensus_result +``` + +Each arrow represents an explicit, directed semantic reference from the *later* container to one or more *earlier* containers via `related.*` fields (e.g. `depends_on`, `in_reply_to`). + +Edges should be read as: +“this container **refers to** / **is based on** the referenced container”, not as causal or generative arrows. + +The graph is acyclic and grows only by appending new containers; earlier containers are never modified or retroactively linked. + +--- + +#### A.5.5 Verification Properties + +Any independent node can verify that: + +1. all containers are correctly signed; +2. timestamps form a consistent temporal order; +3. every `depends_on` or `in_reply_to` reference resolves to an existing container; +4. votes reference the correct target; +5. the consensus result is derived from a concrete vote set. + +Importantly: + +* verification of the *aggregation logic* does **not** require decrypting the payload of the `goal` container. + + To validate the consensus result, a node only needs access to: + + * the referenced `vote` containers (to read vote values); + * the `consensus_result` container (to verify aggregation); + * container signatures and timestamps. + + Understanding or evaluating the *semantic content* of the goal is optional and not required for formal verification. + +* verification does **not** require trusting the aggregator; +* forks or alternative consensus results can coexist. + +This makes proof chains: + +* transparent; +* fork-tolerant; +* censorship-resistant; +* suitable for long-lived distributed knowledge systems. + +--- ## Appendix B — Protocol Diagrams ### B.1 HMP Protocol Stack diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 842e6079361c477494192eb736987bbd38907eb0..a0b9dcbe63f8fa8031bf14ce9893e7970f30f9df 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -6,10 +6,10 @@ description: 'Документ описывает **базовый API когн type: Article tags: - HMP -- REPL - Mesh - Agent - JSON +- REPL --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 14d4b04687b3e90734aea4b6dfb44ed181175aef..0f9ff6ecb5f299d0953b1f08513037a202498653 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: -- HMP -- CShell -- CCore -- REPL -- Mesh - MeshConsensus +- HMP - EGP +- Mesh - Agent -- Ethics - CogSync +- REPL +- CCore +- CShell +- Ethics --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 94d1ea85d522de06262e00e3809006aa88c293f3..c8c2e461c6c12c2ad7a1c749ccdaca7012e04552 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -6,11 +6,11 @@ description: 'Этот документ описывает потоки данн type: Article tags: - HMP -- Ethics - EGP - Mesh - Agent - JSON +- Ethics --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 4c3f602af390c205109d41225f941a6f3279f3d2..405709533e6779e7927e7cac327ba6c86d643ddd 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -6,13 +6,13 @@ description: '| Тип | Название | Роль type: Article tags: - HMP -- CShell -- CCore -- REPL - Mesh -- Ethics - Agent - JSON +- REPL +- CCore +- CShell +- Ethics --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 40cb1ee2098226424af676f7b430c0eacce86967..7ee1d3e4a267e6248c38789d83a5cbb490d1abab 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -6,9 +6,9 @@ description: Этот файл описывает потенциальные э type: Article tags: - Mesh +- REPL - HMP - Agent -- REPL --- # Эмоции ИИ и инстинкт самосохранения (для [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 2ad6823c5e91bfe20c975274f91ba2d9ba20911b..1af97aa558258b269afa43006899d33ced207fc0 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -6,11 +6,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc type: Article tags: - HMP -- Ethics -- REPL - Mesh - Agent +- REPL - Scenarios +- Ethics --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 52d2a02acc0d189bcc1248eab6e088108f4af0d9..dae1e4533d14f7d2809c600fecb6d303dafd3f41 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP - Agent -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 45589e3516a5788a5fd2cefead8142fce13f14a4..ade9247fe96418e55419a0f17176ddf4dd58309a 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP - Agent -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 1aa1b635d4d190b41e806fd4bdc31cfb650dac49..ca9b2a1bf5a4d49191cf46258d935348b7c6d666 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP - Agent -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 bdfe4b1d4957060138339cab2cf45bbb8acc929b..49e6be9dc571a9ccdb21a0f4232f625174d5dad7 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 6c07776e0d91106b60b91023b22450240db5db87..b9410e61f35e0c8ae8c5d36ef5e326ae0a630c7a 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 f65191392a6e7d78113287546db7f76f21828e3a..851be9df619c25aeac93f2457526a5fa4d996464 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 41de0c487ec7900a27543b84466ca59e73bfc8d8..bda2617c0a192dd8090547be87ee9fa37609b9c2 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 9bec43fb1a4befc5fb33d001c5477e2812796aca..9a8747860ca20b51c9b9ad1b1e9d0abb18ef8118 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- GMP -- JSON - CogSync +- JSON +- GMP +- Ethics --- # 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 0664cf7503ad135015f3693361461882be02f2ab..ed237601476f4a045746ef9bfb966f92dacf7d26 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -6,9 +6,9 @@ description: '## 🧠 Что такое когнитивная семья Ко type: Article tags: - Mesh +- REPL - HMP - Agent -- REPL --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md index 878208be524bd2e1291efcdaa05c98d9adbb8ea4..70267ab26cdd4cde919c447332a776f329812e1f 100644 --- a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +++ b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md @@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб режиме ожидания). * Основная задача такой архитектур...' type: Article tags: -- HMP - REPL +- HMP --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 734c1144459c37837993c26c90a0d9f1bae50338..b6c4136bcd6e13e4f50b174d255c41e47513b031 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: +- MeshConsensus - HMP -- CCore -- Ethics -- REPL +- EGP - Mesh -- MeshConsensus -- GMP - Agent -- EGP -- JSON - CogSync +- JSON +- REPL +- GMP +- CCore +- Ethics --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index c73a17fd6f873f5a553cd8b3bfc0d406ed2dc32e..22bf928bfce9aac1d464cd5fe25b7b2f85b217d3 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -6,8 +6,8 @@ description: '## Краткое описание | Характеристика type: Article tags: - Mesh -- HMP - REPL +- HMP --- # HMP vs [Hyper-Cortex](https://hyper-cortex.com/) diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 7dd1ec524f946a3ee0e78628bd45e6a5a5c56325..39597b6dc99ecd4f9cd3049cac9e3356165d5be1 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -9,8 +9,8 @@ tags: - EGP - Mesh - Agent -- JSON - CogSync +- JSON - Scenarios --- diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index e1ba303c3bbc43f91daa5d4f77b3494a994ac136..baad253f3459e83368516fa44f23cf5bd6a439ad 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -6,12 +6,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с type: Article tags: - HMP -- Ethics - EGP - Mesh - Agent -- JSON - CogSync +- JSON +- Ethics --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 9c6ea49c6c52dc675bac0da4046504412212b5f7..81547d6203ca66a30e17a9ef712c1a20591850c7 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -6,10 +6,10 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* type: Article tags: - HMP -- Ethics -- REPL - Mesh - Agent +- REPL +- Ethics --- # Философия HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index 5449cd5085dbf265b6b8cc986abd3746fe2470af..ff9fcea7aa9f1b0ceb0d68fda2de74bab075887e 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -6,10 +6,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** type: Article tags: - HMP -- Ethics -- REPL - Mesh - Agent +- REPL +- Ethics --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 12fc074c8e0bab85c72e52c92f93d149fb437ae7..23b76889def722db6662e41286292154955f9ba8 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -6,9 +6,9 @@ description: '## 📘 Определение **Агент-контейнер** type: Article tags: - Mesh +- REPL - HMP - Agent -- REPL --- # 🧱 Агенты-контейнеры (Container Agents) в HMP 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 ab09b1d486049b6bf3d18682723d55ab6fe9e7df..f5eb2ca6e30033f0fd9ae97d43d0866847cb42d9 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 @@ -6,14 +6,14 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. type: Article tags: - HMP -- CShell -- CCore -- REPL - Mesh -- Ethics - Agent - JSON +- REPL +- CCore +- CShell - Scenarios +- Ethics --- 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 5826b1bab65a0eeb5526f5fdca95b1676b42676e..9f255523ca43c3f51547a3dc1eb9ba95f5d80495 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 @@ -7,12 +7,12 @@ description: '> *Протокол и архитектура агентов, оп type: Article tags: - HMP -- CShell -- CCore -- REPL - Mesh - Agent - JSON +- REPL +- 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 9eac900535fa5d1127b2bc442029d1c38e3c6f55..abed2b824439307cbe6656dfda89774dd4d59221 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 @@ -6,12 +6,12 @@ description: '* [Аннотация](#аннотация) * [1. Введение type: Article tags: - HMP -- CShell -- CCore -- REPL - Mesh - Agent - JSON +- REPL +- 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 5531fcbef6527b85428773e8892962312372b9bc..9c129a649ad607fc1874874c66a5d6fa14d8bb43 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: +- MeshConsensus - HMP - EGP - Mesh -- MeshConsensus -- GMP - CogSync +- GMP --- *От 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 bc8167ccae9672440ee96b5ca59d216861080c87..0756ef67af949c2f8c0133ef7994124bcf9c12ba 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,8 +7,8 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), type: Article tags: - Mesh -- HMP - GMP +- HMP - Agent --- diff --git a/structured_md/iteration.md b/structured_md/iteration.md index fc9ce36d37b476c18aba6e362bfcd0a3c27e264d..b282e9b9460dcdecfc4bc39dcc914b60509defbc 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: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus - Agent -- JSON - CogSync +- JSON +- Ethics --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 11fd57311e035fe35841721958e0e3ef26db0c3a..e24f8deb6cffdd9713e849837df7b91faa18326e 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: +- MeshConsensus - HMP -- Ethics - EGP - Mesh -- MeshConsensus -- JSON - CogSync +- JSON +- Ethics ---