diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index a1fa5a4a01e9dbe90764e4f5f4d4c933795b18d5..d88e1c8f9dec6082853cfe676db0c4149b674759 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -464,7 +464,7 @@ The unified container structure provides: | `head.public_key` | string | Sender’s public key, if not globally resolvable via DID. | | `head.compression` | string | Compression algorithm used for the payload (`zstd`, `gzip`). | | `head.magnet_uri` | string | Magnet link pointing to the original or mirrored container. | -| `head.key_recipient` | string | DID of the intended recipient of the encrypted payload. | +| `head.key_recipient` | string | Symmetric encryption key, encrypted with the recipient’s public key. | | `head.network` | string | Specifies the local propagation scope of the container: "localhost", "lan:". An empty string ("") indicates Internet/global propagation. If set, broadcast is automatically considered false. | | `head.subclass` | string | Optional subtype or specialization of the container’s class. Enables agents to differentiate more specific container families (e.g. `"goal.research_hypothesis"`, `"quant.semantic_node"`). Inherits schema from the parent `class`. | | `head.encryption_algo` | string | Algorithm used for payload encryption. | @@ -740,10 +740,9 @@ a multi-dimensional system used to represent conceptual relations numerically or ### 3.9 Encryption (`encryption_algo`) -1. When a container is intended for specific recipients (`recipient` field), **hybrid encryption** of the payload is allowed. - This ensures confidentiality while preserving the verifiability of container metadata. +1. When the `recipient` field is present, the container may use **hybrid encryption**, providing confidentiality of the `payload` while preserving verifiable metadata. -2. The algorithm used for encryption is specified in the `encryption_algo` field. +2. The encryption algorithm is specified in `encryption_algo`. Recommended values: * `x25519-chacha20poly1305` @@ -751,34 +750,30 @@ a multi-dimensional system used to represent conceptual relations numerically or 3. **Container encryption process:** - 1. Construct the `payload` (JSON, binary, or mixed content). + 1. Construct the `payload`. 2. Apply compression (`compression`, if specified). - 3. Encrypt the compressed data using the recipient’s public key (`key_recipient`). - 4. Compute `payload_hash` over the **encrypted** form of the payload. - 5. Sign the entire container (excluding the `signature` field). + 3. Generate a random symmetric key. + 4. Encrypt the compressed payload with the symmetric key. + 5. Encrypt the symmetric key with the recipient’s **public key** → store the result in `key_recipient`. + 6. Compute `payload_hash` over the **encrypted and compressed** payload. + 7. Sign the container (the entire structure except for the `signature` field). -4. **Verification** of the container’s structure does **not** require decryption. - However, to verify `payload_hash` and the digital signature, the encrypted payload must be used as-is. +4. **Verification** of the container is performed on the encrypted form of the payload and **does not require decryption**. 5. **Relevant fields:** - | Field | Type | Description | - | ----------------- | ------ | --------------------------------------------------------------------------------------------- | - | `encryption_algo` | string | Encryption algorithm applied to the payload. | - | `key_recipient` | string | Public key (or DID-resolved key) of the intended recipient used for encryption. | - | `payload_type` | string | Recommended prefix `encrypted+`, e.g. `encrypted+zstd+json`. | + | Field | Type | Description | + | ----------------- | ------ | -------------------------------------------------------------------------------------- | + | `encryption_algo` | string | Algorithm used for payload encryption. | + | `key_recipient` | string | Symmetric key encrypted with the recipient’s public key (hybrid encryption envelope). | + | `payload_type` | string | Recommended prefix `encrypted+` (e.g., `encrypted+zstd+json`). | 6. **Relationship between `recipient` and `key_recipient`:** - * When encryption is applied, the container MUST contain **exactly one** entry in the `recipient` array, - corresponding to the public key indicated in `key_recipient`. - * When the container is distributed to **multiple recipients**, encryption **is not used** — - instead, the payload remains in plaintext form but is digitally signed for authenticity. - -> ⚙️ **Implementation note:** -> Agents should handle encrypted containers transparently even if they cannot decrypt them, -> maintaining **store & forward** behavior and metadata propagation. + * When encryption is applied, the container MUST have exactly **one** recipient. + * For multiple recipients, encryption is **not** used; the payload remains in plaintext. +> ⚙️ **Note:** Agents may forward encrypted containers even if they cannot decrypt them, maintaining store-and-forward behavior. --- ### 3.10 Container verification @@ -4477,10 +4472,10 @@ flowchart LR #### 6.7.7 Security and Privacy Notes -- All MRD flows rely on canonical container signatures for end-to-end integrity. -- Temporarily stored containers SHOULD be encrypted with the recipient’s public key (`key_recipient`). -- Relays MAY truncate or anonymize the `relay_chain` after confirmation of delivery. -- Proof-of-work fields from `peer_announce` SHOULD be validated to mitigate spam and flooding. +* All MRD flows rely on canonical container signatures for end-to-end integrity. +* Temporary copies of encrypted containers SHOULD be stored as-is. +* Relays MAY truncate or remove the `relay_chain` after delivery confirmation. +* Proof-of-work fields in `peer_announce` SHOULD be validated to mitigate spam and flooding. --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 900db92ffbc697873b3686979e82032efb81de06..9c283d742cb36c2640c40c39e4c3bcbcd2c9b362 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- REPL +- HMP +- CogSync - Ethics - CCore +- Mesh +- REPL - Agent - JSON -- HMP -- Mesh -- CogSync --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 51387573c04bf3814749605ca75d88680956c5c1..23b095da84d74b08d44354e6cde2fcc00b7ae603 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -5,13 +5,13 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm multiple advanced AI models (Copilot, Claude, G...' type: Article tags: -- Ethics -- JSON -- Agent -- EGP - HMP -- Mesh +- EGP - CogSync +- Ethics +- Mesh +- Agent +- JSON --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 0d1c2871e009db1dd878a78adc93b66d888dbcc7..ef3b5310453d0e1b590641aa79fef7d885bbf3b2 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp - Scenarios -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index d633e730a62de35f497b2ae67d8bad0ef9223eb5..c02db9e22edde0a7fbf4911f0a4ac9d748c415da 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index cbcb1c60a08480c0d5cc157dee6bd9af47cfadb7..29fb1b7800500273864f97f88e175b0e358bcaed 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 6a000aa59894fa3e6712c6fc71b354a9a10d5a25..c064680914e3eb6f2117dc99ff95daf8ebe78cb9 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 2d4e21a489b696d31e3867c6a9b9e2b24159aad8..092be9801f5b52068328f7fd0da550fd6419a472 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index b326b17ed25ac627186365a3f0159864db3aaa65..2a20daae98c35f37537b69cdbb324c248e6401c4 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index a403fe967fac38fcfad00fab73f88ff70d34558d..c96909b0ba364b371847267358740a33574f49b6 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 1069df83c5c56e39b7b0e20c5abade91e3af6bb2..29e22370f2198c1bac8019bedd30963a53543cff 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: +- HMP +- CogSync +- EGP +- Ethics +- distributed-ai +- Mesh - MeshConsensus -- REPL - cognitive-architecture +- REPL +- Agent - GMP - hmp -- Ethics - JSON -- Agent -- distributed-ai -- EGP -- HMP -- Mesh - mesh-protocol -- CogSync --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 70d6589e861eac90f8a23dbf5efc59f2b5be054e..bc9562ca57e05521f957a7ba81bcb2af58238cfe 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,12 +5,12 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- REPL -- Ethics -- JSON -- Agent - HMP +- Ethics - Mesh +- REPL +- Agent +- JSON --- Запуск: `start_repl.bat` или `start_repl.sh` diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index 0e4d7c71372601d055218b68cc9a4a0c422c36c2..ec30fffa32ced4baf906b8dc7cfb19e2321a6d66 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,11 +5,11 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- Ethics -- JSON -- Agent - HMP +- Ethics - Mesh +- Agent +- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 2035b308df9d2cec074c134c222dffac9fefef0f..af8d9187b4b1a0642553115aa89f2b284f88758b 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: -- Scenarios -- Ethics -- JSON -- Agent - HMP +- Ethics - Mesh +- Agent +- Scenarios +- JSON --- # 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 62ffd8d03adf445c4ecd9d543ae1e72257b3f577..148ed0549f4f0222fd28664444c4bc873b10b428 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 -- Ethics -- JSON -- Agent -- EGP - HMP -- Mesh - CogSync +- EGP +- Ethics +- Mesh +- MeshConsensus +- Agent +- JSON --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index d3bc2efd79413b26fab86d6cb99f395078eb5d3b..122af88ed5f009e3011f5bbd8b57645cbae13719 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: +- HMP +- CogSync +- EGP +- Mesh - MeshConsensus - REPL -- GMP - Agent -- EGP -- HMP -- Mesh -- CogSync +- GMP --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 999b20a06b8cc85df4d1599b97c944bc02bd18ca..5f0a880a5c8666160c8dda16b074872bc9378f29 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -5,9 +5,9 @@ description: '> Этот документ описывает процесс ра потомков" [описания REPL-цикла](HMP-agent-RE...' type: Article tags: -- Agent - HMP - REPL +- Agent - CCore --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index d8596c74910312ab8a0a1a4500bcaf838f07187d..6dee394d3e422feb89a274291cac7a1ec5a2f594 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -8,8 +8,8 @@ type: Article tags: - HMP - Mesh -- JSON - CogSync +- JSON --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index d9f2e376b5652747d83b298a2839d8e708990e04..b432695e870096e2141d7824af24abf73989cca5 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 -- Ethics -- JSON -- Agent -- EGP - HMP +- EGP +- Ethics - Mesh +- MeshConsensus +- Agent +- JSON --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 089f9936a36a9228c47b29809da3e35732c76fa6..345f413b421256e49784bb26f66a10c2296b52ce 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - REPL +- Agent - GMP -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 4acff617880b2599c370c671ad5484e47221d356..b72e26c4a28800cd048ffe96f48b531b632fe2d0 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - REPL +- Agent - GMP - Scenarios -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 5e0f2b3fd6015245d444153ca0781c466a3b9468..d45902059ff97d68b67dceb2e28b9bf8b9dd3495 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - REPL +- Agent - GMP - Scenarios -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # 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 848789b39b9fbf167ec56e07610d1f6c59cf3e94..3eedb063f5f27159acc2dc2cd2f37c2af5f87bae 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - REPL +- Agent - GMP - Scenarios -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 3ddf45eadff451267076f28c687fd72f30b7ea1c..36b0878f3a9542171ac742e6a26f263f880d2c51 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - REPL +- Agent - GMP - Scenarios -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index d8116f94ab54560bc62635f6941f3049a714a167..72c1af331fcafd27595dd4b0aea9b85a5e24d671 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,16 +5,16 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...' type: Article tags: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - REPL +- Agent - GMP - Scenarios -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # **HyperCortex Mesh Protocol (HMP) v5.0** @@ -4387,7 +4387,7 @@ Agents MAY dynamically adjust or suspend their declared roles based on local con Agents MAY also specify trusted delivery relays in an optional `mailman` field within their `peer_announce.payload`. This field lists the DIDs of relay agents authorized to temporarily store personal containers on their behalf. -##### Example: +**Example:** ```json "mailman": [ diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index cdc33f946784dbed062f1263dfa5281536f323ec..2f83ce18bc1ef4de65fc8dfdee881bfcfd5da155 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,11 +5,11 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: -- REPL -- JSON -- Agent - HMP - Mesh +- REPL +- Agent +- JSON --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index a094b1c2cfea87b3c6796cadcac12d4af85562c0..fe34539dce101029f89785dcfa2b3c99d5abb466 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: -- MeshConsensus -- REPL +- HMP +- CogSync +- EGP - Ethics - CCore -- Agent -- EGP - CShell -- HMP - Mesh -- CogSync +- MeshConsensus +- REPL +- Agent --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index bb7db3c734ff5377306ce8d8aa5a695e55a38389..6a23bbdb4d521655d2913e909f6bd3d11400e08d 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 -- JSON -- Agent -- EGP - HMP +- EGP +- Ethics - Mesh +- Agent +- JSON --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index b8633dafb09a5016cced5a35721751f3a252e4ed..c6b819a61408a9ed66edadcccd3f5e6a5c39fd6e 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,14 +5,14 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- REPL +- HMP - Ethics - CCore -- Agent -- JSON - CShell -- HMP - Mesh +- REPL +- Agent +- JSON --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 2cb7e47f96e9562407e286d976f00d72a397d134..9d4cc2e0b012180406d28951543ec1e1211dcfaf 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: -- Agent - HMP - Mesh - REPL +- Agent --- # Эмоции ИИ и инстинкт самосохранения (для [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 b7fd661b2dcabd81e340127fe0a2547ac6425127..10a1c1b54a9553b11368932f853ffdde37c68415 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- REPL -- Scenarios -- Ethics -- Agent - HMP +- Ethics - Mesh +- REPL +- Agent +- Scenarios --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index ffcd0ed8cd121222259fe6d17f59cab71b4ba094..98a56b18560bfbdaa14ae9efdefbcbc6f1e83bc1 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus +- Agent - GMP -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # 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 348f09a326a1ef828abc10c29feca6df32618bf9..0a8294290c9366a2fbfce4a241f6a7db9383d10c 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus +- Agent - GMP -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # 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 570abda1d788657fe52e4b95cc254e831175cb9d..fa6fb17d50c22ef77dd351327b5438a8a74d1797 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus +- Agent - GMP -- Ethics - JSON -- Agent -- EGP -- HMP -- Mesh -- CogSync --- # 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 920a68484305a26ed5bae71eeac19836800a6cc9..e27b9ac9b5ed8f567ce059d7df5a2ba620208fdc 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - GMP -- Ethics - JSON -- EGP -- HMP -- Mesh -- 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 0173d34a805f120c8802975804336dba08ddd8d0..6ffafce622d4dc0528f7b1df032e68cd0250bcb0 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - GMP -- Ethics - JSON -- EGP -- HMP -- Mesh -- 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 17be68fdb739894e00a65116e9cffb362742a312..d9c97d90f3f5e15b8d124f80c21712ca65c55f53 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - GMP -- Ethics - JSON -- EGP -- HMP -- Mesh -- 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 e7fc93e7e1a3eb117f8fabcec722f7ac363031ff..9fe6eb7f8c4aa73ace6f96725cbce8b5d109e881 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - GMP -- Ethics - JSON -- EGP -- HMP -- Mesh -- 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 7feaa525c27df63459dac3be24ab971b05eb0abe..a2377f842f9b8dd0be3ef3a74a50b376f038061d 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: +- HMP +- CogSync +- EGP +- Ethics +- Mesh - MeshConsensus - GMP -- Ethics - JSON -- EGP -- HMP -- Mesh -- 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 a2ef799ffbe9cee69858c10b0e0c85e56d321875..ce841332100c6a0740a11cc365fe3053a56a1bf0 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: -- Agent - HMP - Mesh - REPL +- Agent --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 12ef1cc47025c153361f5f0e16131c4ae2776ad6..686b1fa2188fc1b3f16f1415e8349bee9342d78c 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 -- REPL -- GMP +- HMP +- CogSync +- EGP - Ethics - CCore +- Mesh +- MeshConsensus +- REPL - Agent +- GMP - JSON -- EGP -- HMP -- Mesh -- CogSync --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index d7b4c43961623b00fa067238d981beae1eaa985e..a931e6c6b38e9e40b140bb0b5312ab5b0ff922e2 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -5,13 +5,13 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec OpenCog Hyperon framework. This includes semanti...' type: Article tags: -- Scenarios -- JSON -- Agent -- EGP - HMP -- Mesh +- EGP - CogSync +- Mesh +- Agent +- Scenarios +- JSON --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 0f402d5a938c5da21f339490563bad9b3125afa7..6106a07450ed888757f9ab222af6919caaf0fa6e 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- Ethics -- JSON -- Agent -- EGP - HMP -- Mesh +- EGP - CogSync +- Ethics +- Mesh +- Agent +- JSON --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 04f667cb99779baf556628d127757402c2b6bd86..4e99b674788e6764554966990c1f0a96a09a81ff 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: -- REPL -- Ethics -- Agent - HMP +- Ethics - Mesh +- REPL +- Agent --- # Философия 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 c746d0032d2fee5713eb3f70e47082c8ac441ed3..2f5322c0bd4e97ba687d918ccc7ec364b8d33ebc 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: -- REPL -- Ethics -- Agent - HMP +- Ethics - Mesh +- REPL +- Agent --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index 8c15016914f125c7d89c85a87d3fad70650873bf..bff916aa06da183cc3c37d6480570c889e3c5d06 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: -- Agent - HMP - Mesh +- Agent --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index ff9d6efb028376c22ca73445e7a8c3e6d4ca4250..1657cbc16863741fd906f5cf643d5428356f3e5d 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- Agent - HMP - Mesh - REPL +- Agent --- # 🧱 Агенты-контейнеры (Container Agents) в 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 5bcb9e367a822b098bc17370352ddd204f280e23..ca6c9c01bc428736823dd66b068063446c1642ca 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: -- Agent - HMP -- Mesh - Ethics +- Mesh +- Agent --- # 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 f035aa687fa0611628c05638398c38d1baafdd0f..293013f0c54388e2086a54d92eeca87a8ec97339 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: -- Agent - HMP - Mesh +- Agent --- # 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 99fb4619843fac47acf527807bdeec5c155da39b..1a82ba86e4bb386685fe2005b2124cafbe612c98 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: -- Agent - HMP - Mesh +- Agent --- # 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 9f39ecf0da23f45e1aec9d0c24ad0fe2a907f901..a332abac31edb3c7bd1406ed8fd2f55c6b054e0a 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -5,15 +5,15 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- REPL -- Scenarios +- HMP - Ethics - CCore -- Agent -- JSON - CShell -- HMP - Mesh +- REPL +- Agent +- Scenarios +- JSON --- 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 df6f53ba059477cce23d7e9cfd2d144d2f8268e8..0aacfc571d17f7ec23e3b3e144f1898745b3c685 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md @@ -6,13 +6,13 @@ description: '> *Протокол и архитектура агентов, оп и совместная работа.* ## Оглавление * [Аннот...' type: Article tags: -- REPL +- HMP - CCore -- Agent -- JSON - CShell -- HMP - Mesh +- REPL +- Agent +- 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 f43b990a90b2b2e8b50a61d689a3ced0b1e521a9..976d366dd79cfb7fc1ac0adee16f13736714837d 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md @@ -5,13 +5,13 @@ description: '* [Аннотация](#аннотация) * [1. Введение [3.1 Типы агентов](#31-типы-агент...' type: Article tags: -- REPL +- HMP - CCore -- Agent -- JSON - CShell -- HMP - Mesh +- REPL +- Agent +- 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 3995ce8bb6252f690cf54aab17dff3c14ec34c51..95f7dfbcd456f6edfcffbec6dcd22a22ecab32fe 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 -- GMP -- EGP - HMP -- Mesh - CogSync +- EGP +- Mesh +- MeshConsensus +- 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 66829a46819929d90e6c818d70e7fefeb0a3f36e..a017512a92308ccbb77b01d048f9f1b465721483 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,9 +6,9 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: -- Agent - HMP - Mesh +- Agent - GMP --- diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 99821beafa8d80c90109aecab9336fddf4ad6788..8e2d24c4a98efc62156fb5d40cb68483e4577e66 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 -- Ethics -- JSON -- Agent -- EGP - HMP -- Mesh - CogSync +- EGP +- Ethics +- Mesh +- MeshConsensus +- Agent +- JSON --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index e964d88cc08df02c16c65c4192586ef6227ee21a..f5b5d6cc28e1dc46e05c01d1029f9e24d9d6ae63 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- MeshConsensus -- Ethics -- JSON -- EGP - HMP -- Mesh +- EGP - CogSync +- Ethics +- Mesh +- MeshConsensus +- JSON --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index a17b2c9dddf59a5f1322c7dc9c57cf4a9d2b213a..9cdad22cb89fe8cb53fee8e20d37d51b887a3f2a 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: -- Agent - HMP - Mesh +- Agent --- # Mentions & Responses Log