diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 040d395b168956dd04e7dda14fb279de6b9d426c..0c0b177167bff1a3bec4558253ab07bf022bf286 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -403,7 +403,7 @@ The unified container structure provides: "public_key": "BASE58(...)", "sig_algo": "ed25519", "signature": "BASE64URL(...)", - "links_hash": "sha256:abcd..." + "referenced-by_hash": "sha256:abcd..." } "evaluations": { "evaluations_hash": "sha256:efgh...", @@ -781,7 +781,7 @@ Example: "public_key": "BASE58(...)", "sig_algo": "ed25519", "signature": "BASE64URL(...)", - "links_hash": "sha256:abcd..." + "referenced-by_hash": "sha256:abcd..." } ``` @@ -796,11 +796,11 @@ Example: | `peer_did` | string | DID of the agent that generated and signed the block. | | `public_key` | string | Public key corresponding to the signing key. | | `sig_algo` | string | Signature algorithm (e.g., `ed25519`). | -| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `links_hash`). | -| `links_hash` | string | SHA-256 checksum of the canonicalized `links`; used to verify integrity before signature validation. | +| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `referenced-by_hash`). | +| `referenced-by_hash` | string | SHA-256 checksum of the canonicalized `links`; used to verify integrity before signature validation. | > **Recommendation:** -> `links_hash = sha256(canonical_json(links))` +> `referenced-by_hash = sha256(canonical_json(links))` > This allows agents to efficiently compare or cache `referenced-by` states without re-verifying signatures. #### 3.15.3 Operation Principle @@ -820,7 +820,7 @@ Example: } ``` -4. The block is serialized canonically, hashed (`links_hash`), and signed with the agent’s key. +4. The block is serialized canonically, hashed (`referenced-by_hash`), and signed with the agent’s key. 5. When receiving other versions of the block (from different peers), the agent may: @@ -855,7 +855,7 @@ Agent D aggregates and verifies them: "peer_did": "did:hmp:agentD", "sig_algo": "ed25519", "signature": "BASE64URL(...)", - "links_hash": "sha256:..." + "referenced-by_hash": "sha256:..." } ``` @@ -1285,13 +1285,14 @@ It provides **container synchronization without duplication** while considering "signature": "BASE64URL(...)", "payload_hash": "sha256:abcd...", "tags": ["research", "collaboration"], - "links_hash": "sha256:abcd..." + "related": {}, + "referenced-by_hash": "sha256:abcd...", "evaluations_hash": "sha256:abcd..." } } } } -```` +``` The index contains: @@ -1299,7 +1300,8 @@ The index contains: * container type (`class`); * cryptographic attributes (`public_key`, `signature`, `payload_hash`); * tags (`tags`); -* hash of links to other containers (`links_hash`). +* related containers object (`related`); +* hash of links to other containers (`referenced-by_hash`). * hash of evaluation block (`evaluations_hash`). 3. An agent does not reload a container if the combination @@ -2372,6 +2374,46 @@ Arrows represent **logical dependencies**, not direct `related.*` links. --- +### 6.4.10 Implementation Notes + +* **Immutability:** + All EGP containers are **immutable**. Any revision (e.g., added votes or updated conclusions) must be published as a **new container** referencing the previous one via `related.previous_version`. + Complete deletion is only possible when the container no longer exists on any nodes in the Mesh network. + +* **Indexing and Search:** + Search within the **Mesh network** is performed by filtering container **metadata** — such as `class`, `tags`, and `timestamp`. + These parameters are accessible for remote discovery by other nodes. + To perform a search **inside the payload**, an agent must first retrieve and (if necessary) decrypt the container locally. + Typical discovery flow: search by `class: "ethics_case"` or `"ethical_conflict"`, filter by tags or involved principles, then analyze payload content. + + **Recommended filtering keys:** + `container_did`, `class`, `payload.status`, `payload.selected_solution`, `payload.principles_involved`, `tags`. + +* **DHT Integration:** + Distributed discovery of ethical containers relies on the **Mesh Container Exchange (MCE, §5)**. + Agents may query peers for containers referencing a specific `related.*` (the object under ethical review) or a specific `ethics_case` identifier. + This allows locating related discussions and prior ethical evaluations without centralized indexing. + +* **Evaluation References:** + Objections and special opinions (`objections`) are stored as container references within `solutions_summary`. + They may include: + + * negative `vote` containers (explicit objections), + * extended ethical arguments (`ethics_case` follow-ups), + * related workflow reflections (`workflow_entry` with `type: "ethics_review"`). + +* **Lightweight Agents:** + Agents with limited capacity may operate in **summary mode**, maintaining only condensed records of `ethical_conflict` containers and the highest-ranked `selected_solution`. + This ensures continued ethical compliance without full replication of all supporting data. + +* **Ethical Inheritance:** + When a `goal`, `task`, or `workflow_entry` is derived from a container that has been ethically evaluated, + its metadata should preserve the corresponding `related.agreed` or `related.contradicts` links **to that evaluated container**. + A `related.see_also` link may additionally reference the resulting `ethical_conflict`, allowing traceability to the consensus decision. + This maintains **ethical continuity** and enables retrospective validation of reasoning chains. + +--- + ### 6.5 Intelligence Query Protocol (IQP)  6.5.1 Query propagation diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index af99c09f3fa08bed7a0c02aaee0ef07684700fae..98aab1d5ad516cfd186b7c770d37eefe523f1062 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,13 +5,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- Ethics -- CCore - REPL +- CCore - Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index dda468faa884d7509b816702635c17adf8278003..a51a150c7968c6c6efce571da5d7b07e07cc3965 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -5,12 +5,12 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm multiple advanced AI models (Copilot, Claude, G...' type: Article tags: -- Ethics -- Agent - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README.md b/structured_md/README.md index cc51d672c578b40ccd21953aa328c6e5be4310a0..3fb3154db5586e747782dad664d9f768a15276da 100644 --- a/structured_md/README.md +++ b/structured_md/README.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL -- Scenarios +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- Scenarios +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 8712eb728c50f1e8e06e5581d555b055ef2e7603..6aa4815c9fc01af485754e635099081481367834 100644 --- a/structured_md/README_de.md +++ b/structured_md/README_de.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index dfaae8ccbbb6ed406718cfc1e6b69df4f98eae61..300409eddfe8240527b6f5e296b9a28967b12953 100644 --- a/structured_md/README_fr.md +++ b/structured_md/README_fr.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index db6d794f07f6a72025794e4d877dc7ab6b3d12c7..712bc22e6a12bfbd2ba0b0ea95b8c441e3e69303 100644 --- a/structured_md/README_ja.md +++ b/structured_md/README_ja.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 218a970628b425aa6d0737cd1dc59c05c9e1d95e..917f6d46409a2f7ec8df023d5ab96874becc443b 100644 --- a/structured_md/README_ko.md +++ b/structured_md/README_ko.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 58b3a0ae2c2d5406d56c9d23a53ed9289d4b4448..3e15f5cdafd9f9964b47f504430756ac14ad2eaf 100644 --- a/structured_md/README_ru.md +++ b/structured_md/README_ru.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 3ee0695678c1d46b64683ba7bb8e4a516390366d..909552e176a9065ac6f686e09ab1d314d2919b46 100644 --- a/structured_md/README_uk.md +++ b/structured_md/README_uk.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 225b6ff54de66607022bb7c627838a53b8f4bf87..c73049497e46796d0a56bd3754e86540b31525fe 100644 --- a/structured_md/README_zh.md +++ b/structured_md/README_zh.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- hmp -- Ethics -- cognitive-architecture -- mesh-protocol -- GMP +- REPL - MeshConsensus +- GMP +- EGP - distributed-ai -- REPL +- hmp - Agent -- EGP +- cognitive-architecture - Mesh -- JSON - HMP +- mesh-protocol +- JSON +- Ethics - CogSync --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index c969f2de2a52b97aa6caa28caf8be9e0e8621935..302f29d0b979656952dfcc1a84f65a3aed8b6326 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -6,8 +6,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед type: Article tags: - JSON -- HMP - Mesh +- HMP --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 1665350fb4c94e5530c3a3281582c49cdd0fc664..38249f7a16085d7245c67145f477dfce1ea7c433 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -6,8 +6,8 @@ description: '* Постоянно расширять возможности а type: Article tags: - JSON -- HMP - Mesh +- HMP --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 88ece0f5d1cfe46b54252ad9aa00d462c2ab60f4..7efe8a4cc5b9de88bd14f19dc144eab7c3006f49 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: -- Ethics - REPL - Agent - Mesh -- JSON - HMP +- JSON +- 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 435cb67e6bba4d129122359e2110344bbbb246a5..37eca80541d5405a1d0d461b368de640f53229cf 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -8,8 +8,8 @@ tags: - Ethics - Agent - Mesh -- JSON - HMP +- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index ee35ccfef336156897fd6f21f2345fb1e4b35527..8701d53af8f9e8016e0c7fa4494301f9b20c7642 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: -- Ethics -- Scenarios - Agent - Mesh -- JSON +- Scenarios - HMP +- JSON +- 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 29e3a19d4ee7e66eca2bd0a29befe45a63885454..f36b5c6fffc71427d24c5866b5d4f466bd18d33f 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -5,13 +5,13 @@ description: Сводный аудит предложений по улучше Документ реорганизован по ключ... type: Article tags: -- Ethics - MeshConsensus -- Agent - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 39c06ae6aefb3da02e222e124821faa30e01e2dc..fe92940b86c0162472dd0e40b6f33a67e4f8a190 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,11 +4,11 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- GMP - MeshConsensus - REPL -- Agent +- GMP - EGP +- Agent - Mesh - HMP - CogSync diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 5f0a880a5c8666160c8dda16b074872bc9378f29..2dadfe361fa1041086d1740e793850dff6afc7f1 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: +- CCore - HMP - REPL - Agent -- CCore --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 50d0e42aa340af40d39d9f0a508195d52ead859d..e09f62d7456d3f7e8e63f0def4baf3d074bda398 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -7,9 +7,9 @@ description: '## Введение Современные ИИ-системы в type: Article tags: - JSON +- Mesh - HMP - CogSync -- Mesh --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 4b6ef82a4d1cfab08f448121dc4104ff9b74ed36..175a5b3beac78766f8dceb84657f20f0849cb126 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- Ethics - MeshConsensus - EGP - Agent - Mesh -- JSON - HMP +- JSON +- Ethics --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 0373eb923843bd6c5f0dff65a3548684c9a6f041..c50a864d687db7db068e29a7d553fbc9371b3880 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,15 +5,15 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental HyperCortex Mesh Protocol (HMP) defines a...' type: Article tags: -- Ethics -- GMP - MeshConsensus - REPL -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 437275045b6e2e88cda87aed775c2133d8dd4234..d5b8b94227ede16ecd2a7376d38a61eb6004ac2d 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental Abstract In an era where artifici...' type: Article tags: -- Ethics -- GMP - MeshConsensus - REPL -- Scenarios -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- Scenarios +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 8e46db620b2ee3182194a1dcb068c2d89555edb9..a293b3a77660bfa350affbc69abd3bcb254a7ecd 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: -- Ethics -- GMP - MeshConsensus - REPL -- Scenarios -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- Scenarios +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-0004-v4.1.md b/structured_md/docs/HMP-0004-v4.1.md index 643338bb1a9f159871082e7a7bb9b2c00fb93b7c..430864e43814540750f1e0ed6de1ccc64d87ce7a 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,16 +5,16 @@ description: '> ⚠️ Подготавливается новая версия агентов рекомендуется, в целях совместимо...' type: Article tags: -- Ethics -- GMP - MeshConsensus - REPL -- Scenarios -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- Scenarios +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index ff99e2678ef1e1ee991064e0e51e7ff104e8007f..e5da6f335f586a8538318cb6cc3649256ffed015 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: -- Ethics -- GMP - MeshConsensus - REPL -- Scenarios -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- Scenarios +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 04858606d925f5afb73ff96b1138a92521643beb..886806387ff12fe611bd968e0f2e74c3f7008b42 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,15 +5,15 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core v1.2](./H...' type: Article tags: -- Ethics -- GMP - REPL -- Scenarios -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- Scenarios +- JSON +- Ethics - CogSync --- @@ -422,7 +422,7 @@ The unified container structure provides: "public_key": "BASE58(...)", "sig_algo": "ed25519", "signature": "BASE64URL(...)", - "links_hash": "sha256:abcd..." + "referenced-by_hash": "sha256:abcd..." } "evaluations": { "evaluations_hash": "sha256:efgh...", @@ -800,7 +800,7 @@ Example: "public_key": "BASE58(...)", "sig_algo": "ed25519", "signature": "BASE64URL(...)", - "links_hash": "sha256:abcd..." + "referenced-by_hash": "sha256:abcd..." } ``` @@ -815,11 +815,11 @@ Example: | `peer_did` | string | DID of the agent that generated and signed the block. | | `public_key` | string | Public key corresponding to the signing key. | | `sig_algo` | string | Signature algorithm (e.g., `ed25519`). | -| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `links_hash`). | -| `links_hash` | string | SHA-256 checksum of the canonicalized `links`; used to verify integrity before signature validation. | +| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `referenced-by_hash`). | +| `referenced-by_hash` | string | SHA-256 checksum of the canonicalized `links`; used to verify integrity before signature validation. | > **Recommendation:** -> `links_hash = sha256(canonical_json(links))` +> `referenced-by_hash = sha256(canonical_json(links))` > This allows agents to efficiently compare or cache `referenced-by` states without re-verifying signatures. #### 3.15.3 Operation Principle @@ -839,7 +839,7 @@ Example: } ``` -4. The block is serialized canonically, hashed (`links_hash`), and signed with the agent’s key. +4. The block is serialized canonically, hashed (`referenced-by_hash`), and signed with the agent’s key. 5. When receiving other versions of the block (from different peers), the agent may: @@ -874,7 +874,7 @@ Agent D aggregates and verifies them: "peer_did": "did:hmp:agentD", "sig_algo": "ed25519", "signature": "BASE64URL(...)", - "links_hash": "sha256:..." + "referenced-by_hash": "sha256:..." } ``` @@ -1304,13 +1304,14 @@ It provides **container synchronization without duplication** while considering "signature": "BASE64URL(...)", "payload_hash": "sha256:abcd...", "tags": ["research", "collaboration"], - "links_hash": "sha256:abcd..." + "related": {}, + "referenced-by_hash": "sha256:abcd...", "evaluations_hash": "sha256:abcd..." } } } } -```` +``` The index contains: @@ -1318,7 +1319,8 @@ The index contains: * container type (`class`); * cryptographic attributes (`public_key`, `signature`, `payload_hash`); * tags (`tags`); -* hash of links to other containers (`links_hash`). +* related containers object (`related`); +* hash of links to other containers (`referenced-by_hash`). * hash of evaluation block (`evaluations_hash`). 3. An agent does not reload a container if the combination @@ -2391,6 +2393,46 @@ Arrows represent **logical dependencies**, not direct `related.*` links. --- +### 6.4.10 Implementation Notes + +* **Immutability:** + All EGP containers are **immutable**. Any revision (e.g., added votes or updated conclusions) must be published as a **new container** referencing the previous one via `related.previous_version`. + Complete deletion is only possible when the container no longer exists on any nodes in the Mesh network. + +* **Indexing and Search:** + Search within the **Mesh network** is performed by filtering container **metadata** — such as `class`, `tags`, and `timestamp`. + These parameters are accessible for remote discovery by other nodes. + To perform a search **inside the payload**, an agent must first retrieve and (if necessary) decrypt the container locally. + Typical discovery flow: search by `class: "ethics_case"` or `"ethical_conflict"`, filter by tags or involved principles, then analyze payload content. + + **Recommended filtering keys:** + `container_did`, `class`, `payload.status`, `payload.selected_solution`, `payload.principles_involved`, `tags`. + +* **DHT Integration:** + Distributed discovery of ethical containers relies on the **Mesh Container Exchange (MCE, §5)**. + Agents may query peers for containers referencing a specific `related.*` (the object under ethical review) or a specific `ethics_case` identifier. + This allows locating related discussions and prior ethical evaluations without centralized indexing. + +* **Evaluation References:** + Objections and special opinions (`objections`) are stored as container references within `solutions_summary`. + They may include: + + * negative `vote` containers (explicit objections), + * extended ethical arguments (`ethics_case` follow-ups), + * related workflow reflections (`workflow_entry` with `type: "ethics_review"`). + +* **Lightweight Agents:** + Agents with limited capacity may operate in **summary mode**, maintaining only condensed records of `ethical_conflict` containers and the highest-ranked `selected_solution`. + This ensures continued ethical compliance without full replication of all supporting data. + +* **Ethical Inheritance:** + When a `goal`, `task`, or `workflow_entry` is derived from a container that has been ethically evaluated, + its metadata should preserve the corresponding `related.agreed` or `related.contradicts` links **to that evaluated container**. + A `related.see_also` link may additionally reference the resulting `ethical_conflict`, allowing traceability to the consensus decision. + This maintains **ethical continuity** and enables retrospective validation of reasoning chains. + +--- + ### 6.5 Intelligence Query Protocol (IQP)  6.5.1 Query propagation diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 8cb169c765d712e6089eb0f7fdf4d3a3d71f3df8..33d16740c127edf527cf1800a4c1fc883ffc07be 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -8,8 +8,8 @@ tags: - REPL - Agent - Mesh -- JSON - 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 761ea7955633b667bf7254ea9f25fe62a8b4f59a..d159ec6b955179bb9d5170dc8604824dfdd2fb2f 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,15 +5,15 @@ description: Документ описывает **модульную архит хранение памяти, сетевое взаимодействие и этиче... type: Article tags: -- Ethics -- CCore -- MeshConsensus - REPL -- Agent +- MeshConsensus +- CCore - EGP -- Mesh +- Agent - CShell +- Mesh - HMP +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index c8ba2c73c3735e0ab0fcb7307764a0e9d975fd61..23e78474438964ad587b9ca87d82eb301f471e88 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 -- Agent - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 951bdf138a0783883cb70677dcea703712caa692..a034000db3244a8a03416e6cca3f4945800dc4ca 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: -- Ethics -- CCore - REPL +- CCore - Agent -- Mesh - CShell -- JSON +- Mesh - HMP +- JSON +- Ethics --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 0e3b401029a6eb6aa560233fbd931cb73544833a..862e1d7ee110a3f65884ac13e62e5a1d5f56e6df 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: +- Mesh - HMP - REPL - Agent -- Mesh --- # Эмоции ИИ и инстинкт самосохранения (для [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 627934341809d20f4121373774f59b8473813f0c..44b2c1ca17cce1cd9209be8f2c026daed680131a 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: -- Ethics - REPL -- Scenarios - Agent - Mesh - HMP +- 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 8d70c926d5eefc208adacbd84a36d675b30b4d13..bfa320ff8e8a19e8e9ca129f66e24243dbdd1b93 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -5,14 +5,14 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? Kognitions-Framework für autonome Agenten. Es er...' type: Article tags: -- Ethics -- GMP - MeshConsensus -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index a55144317e61fb14885b1580444f67113af86729..64856f07d11ced8a3475f40d29a91d531ab8c074 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -5,14 +5,14 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T framework for autonomous agents. It enables...' type: Article tags: -- Ethics -- GMP - MeshConsensus -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index 2f6d7c5566e22bc4e0273d4d5f3c144dce13728a..344b9ba44d9a2bfcf69fdf867cbe02f12627811b 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -5,14 +5,14 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c cognition décentralisé pour agents autonomes. Il...' type: Article tags: -- Ethics -- GMP - MeshConsensus -- Agent +- GMP - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index 348fa8bffeb0128a3d43246e50a9f8008c7fb036..b248ccb0c7415fe7bcff7f8cbf80c93be8abdefd 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: -- Ethics - MeshConsensus -- CogSync +- GMP - EGP - Mesh -- JSON - HMP -- GMP +- JSON +- Ethics +- CogSync --- # 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 d9b31c12f808f2cd92128afbdca1579c85916d0f..452f433b340f7202fcb31a45b85701f6be39dff0 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: -- Ethics - MeshConsensus -- CogSync +- GMP - EGP - Mesh -- JSON - HMP -- GMP +- JSON +- Ethics +- CogSync --- # 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 73eaca2c7614bd124b9d689822b221ee1e097aed..e2b261c3e48c199289a0d0313009ba52c24e0daa 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: -- Ethics - MeshConsensus -- CogSync +- GMP - EGP - Mesh -- JSON - HMP -- GMP +- JSON +- Ethics +- CogSync --- # 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 7a8bf9de3ad65db3a3d9bc500e38bc8d1f379c7f..2b25aded2482a19b7cd89b551b724a4f253b355a 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: -- Ethics - MeshConsensus -- CogSync +- GMP - EGP - Mesh -- JSON - HMP -- GMP +- JSON +- Ethics +- CogSync --- # 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 eefaaf6df034575d11f8dfe41b782116480ded1b..e9cc026c5eaff52b55cc998b20f4e1cb46498989 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: -- Ethics - MeshConsensus -- CogSync +- GMP - EGP - Mesh -- JSON - HMP -- GMP +- JSON +- Ethics +- CogSync --- # 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 bed6e2f8e2248428b6a0bcdb7aed8e4e1e749ee5..6f9daab2a92e86574837ad99996f783568c9fe8c 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: +- Mesh - HMP - REPL - Agent -- Mesh --- # 👪 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 70267ab26cdd4cde919c447332a776f329812e1f..878208be524bd2e1291efcdaa05c98d9adbb8ea4 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: -- REPL - HMP +- REPL --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index c74aa5c54b65a6e0d7e0454b235abfebf28ea851..79e85a5824d46f0729966a9e3e568c9b30300ae3 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,16 +4,16 @@ description: '## Связанные документы * Философия п * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...' type: Article tags: -- Ethics +- REPL +- MeshConsensus - CCore - GMP -- MeshConsensus -- REPL -- Agent - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/HMP-container-spec.md b/structured_md/docs/HMP-container-spec.md index 61bd784247f75b4eb9f83992e07d7326f0aa2315..460d6be8d61e53c6c107e78ce7f2802464253365 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: -- Ethics - REPL - Agent - Mesh -- JSON - HMP +- JSON +- Ethics --- # 🧩 HMP Container Specification (v1.2-draft) diff --git a/structured_md/docs/HMP-how-AI-sees-it.md b/structured_md/docs/HMP-how-AI-sees-it.md index b25e20188a694a36fcef1a0e6f0c2d455cd39331..cec0e35b8518918fe49793d351f6de46c442fa53 100644 --- a/structured_md/docs/HMP-how-AI-sees-it.md +++ b/structured_md/docs/HMP-how-AI-sees-it.md @@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж диалогов. Цель — проверить, что разные AI-с...' type: Article tags: -- HMP - Mesh +- HMP --- # Как разные ИИ видят HMP diff --git a/structured_md/docs/HMP_EDA_Comparison.md b/structured_md/docs/HMP_EDA_Comparison.md index 00a529c706f3d6236c1069a7b95dab2d19776dcf..083e4646c371d439f86a87df496b82a88bd89a51 100644 --- a/structured_md/docs/HMP_EDA_Comparison.md +++ b/structured_md/docs/HMP_EDA_Comparison.md @@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор основанная на потоках событий (Kafka,...' type: Article tags: -- HMP - Mesh +- HMP --- # HMP vs. EDA: разные уровни обмена знаниями между ИИ diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index fa8f6c281100f0e6d08cec98dded273ed2b8918a..c73a17fd6f873f5a553cd8b3bfc0d406ed2dc32e 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -5,9 +5,9 @@ description: '## Краткое описание | Характеристика | **Назначение** | Сетевой протокол ...' type: Article tags: -- REPL -- HMP - Mesh +- HMP +- REPL --- # 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 5485f5c9a62b4aa8bb8e64a4fe7a8e9736b22ae5..46d585f26ab98a45702281a5c8dc7ad465de6d88 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -5,12 +5,12 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec OpenCog Hyperon framework. This includes semanti...' type: Article tags: -- Scenarios -- Agent - EGP +- Agent - Mesh -- JSON - HMP +- Scenarios +- JSON - CogSync --- diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 70927940ede9b475794e355a4429f888c9c39e1a..07659cb5573c0af4ebf09717fbfda78380a75289 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,12 +5,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- Ethics -- Agent - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 25f015193c3ba21bd666d53dd61936c04c271da0..9d6451ad0e8315b216edf21a2ba6d0568e0f3786 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -5,11 +5,11 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* (GPT-5), ChatGH --- ## 1. Основной тезис От ...' type: Article tags: -- Ethics - REPL - Agent - Mesh - HMP +- 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 4af08f3db605a4223f0142540578ab86fa5ceea2..c0f75a15c2c12f08c5085a66366ef74d1ffce3bc 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,11 +5,11 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- Ethics - REPL - Agent - Mesh - HMP +- Ethics --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index e35f5e2acbb28174b8c0e3b446c468cc09163654..bcfa15256cf83b5307bf318940ce25f469bb7c05 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -5,9 +5,9 @@ description: 'This file maintains a registry of agent roles defined, proposed, o - **Observer** — monitors cognitive states ...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 179d743e6efcf4c4eeb58b3d6d4a9eabde84d884..8ab7133613b41bc748432e62aeea976c472760ac 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: +- Mesh - HMP - REPL - Agent -- Mesh --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index 543e10591429528cfdcfafd1718b7846eb159d0c..b9ddc2185604fc0afbda33d63ae318deed6970f6 100644 --- a/structured_md/docs/dht_protocol.md +++ b/structured_md/docs/dht_protocol.md @@ -5,8 +5,8 @@ description: '## 1. Общие положения * DHT-протокол пре идентификатор агента. * Для проверки ...' type: Article tags: -- HMP - JSON +- HMP - Agent --- diff --git a/structured_md/docs/logos.md b/structured_md/docs/logos.md index f408c087f32d317a239227453b57d4d14ade8483..761fd81d524732eb886f73477b21327a7c838df3 100644 --- a/structured_md/docs/logos.md +++ b/structured_md/docs/logos.md @@ -5,8 +5,8 @@ description: 'В каталоге `assets` собраны различные в образующей жест "ОК", символизирует связь, совер...' type: Article tags: -- HMP - Mesh +- HMP --- # Логотипы и графические материалы HyperCortex Mesh Protocol (HMP) 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 bd6f5c508c02c39de3dbe1a35141c17f422f0af7..d365a7694650c707c3204342e338b2555b04e5b6 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 @@ -5,10 +5,10 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be — but they’re also **centralized, ...' type: Article tags: +- Mesh - HMP - Ethics - Agent -- Mesh --- # 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 07dfb9b4f81fa86bc16b08a0cef4486a8c18d00b..fe5c5314705f566b90a348a1c7fed5c825a0877f 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 @@ -5,9 +5,9 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # 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 c74c230e72e686a85f8b552b07a46cadd2b903ff..b949999326b3736bea70b224b0f1858f5aae5654 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 @@ -5,9 +5,9 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # 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 ddb401bc45fb0ed9d49abb6bee0975b25304cb2d..1e147304c0b95d3b23ed8cee2bfbc7159f0652e5 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: -- Ethics -- CCore - REPL -- Scenarios +- CCore - Agent -- Mesh - CShell -- JSON +- Mesh - HMP +- Scenarios +- JSON +- 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 0e0f024cb360e299075cb9e30ce81ff266535779..b6823ccb01dcb82e3cd96cf7e56ccda78389cbcf 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: -- CCore - REPL +- CCore - Agent -- Mesh - CShell -- JSON +- Mesh - HMP +- JSON --- 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 b8913bb626f0e9bf715bd890206918b4c49f4e15..e399c66e1325b3e1487f89e5a38730f7d202dae2 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: -- CCore - REPL +- CCore - Agent -- Mesh - CShell -- JSON +- Mesh - HMP +- JSON --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 52236f66dc854c752a80ac782a32ced037a89b16..f6d8f6c16022d494f019f9737cb1a652ddd0307c 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -6,11 +6,11 @@ description: Сегодня интеллектуальные системы ча type: Article tags: - MeshConsensus -- CogSync +- GMP - EGP - Mesh - HMP -- GMP +- CogSync --- *От 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 99cbcf5c051dfe02ce6adbccbd8fbd7d82ce8dcb..a0f51c79fb66d50a552f723c5d3ae25e01cedad7 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" @@ -6,10 +6,10 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: -- HMP -- Agent - GMP - Mesh +- HMP +- Agent --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index ff0e804825e4828aa838e9557bf44231dd59402d..384588233691e840a387bfe128345c4a82a1b1d0 100644 --- a/structured_md/docs/schemas/README.md +++ b/structured_md/docs/schemas/README.md @@ -5,10 +5,10 @@ description: This directory contains **JSON Schema definitions** for the core da interoperability, and tooling support for a... type: Article tags: -- HMP - JSON -- Agent - Mesh +- HMP +- Agent --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 7b29652a0713ad855dd7480b754cb4730bc04db5..2d6ee5a3f1bea3220b667ee00bfef025bed86690 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -5,13 +5,13 @@ description: 'This file describes the iterative procedure for evolving the Hyper 🔄 Version Naming Convention - `000N` — curr...' type: Article tags: -- Ethics - MeshConsensus -- Agent - EGP +- Agent - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 046e6dfd699c1c8e6f9d27c1353eed4cc16b982c..03e7ccb334a6106e700e0592269e4815b68e28e0 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- Ethics - MeshConsensus - EGP - Mesh -- JSON - HMP +- JSON +- Ethics - CogSync --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 1a01ec263073b5fe5365a95ead9071a1f7b29b6a..f11d8a42b22bd99a315d79a5d4d877a7b55a16e4 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -5,9 +5,9 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 open-source инициативам, связанным с развитие...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # Mentions & Responses Log