diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 087b7b15fd13cb94e7a711b5dcdbedb497d15391..3c80e0d081b31040b89d379a396d5ef24936a9e7 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -2094,7 +2094,7 @@ Unlike version 4.x, where coordination relied on message exchange, version 5.0 o | Field | Type | Description | | -------------- | ------------- | ---------------------------------------------------------------------------------------------------- | -| `entry_type` | string | Entry type: `"reflection"`, `"delegation"`, `"execution_log"`, `"ethical_conflict"`, `"progress"`, etc. | +| `entry_type` | string | Entry type: `"reflection"`, `"delegation"`, `"execution_log"`, `"ethical_result"`, `"progress"`, etc. | | `summary` | string | Short description of the event or reasoning step | | `details` | string | Extended content (may include references to external data or reasoning traces) | | `timestamp` | datetime | Time of entry creation | @@ -2108,7 +2108,7 @@ Unlike version 4.x, where coordination relied on message exchange, version 5.0 o * GMP interacts with **CogConsensus** for distributed validation of goals and tasks. * Before execution, tasks may undergo **ethical validation (EGP)**. -* Objections or conflicts are recorded in `workflow_entry` containers with `entry_type: "ethical_conflict"`. +* Objections or conflicts are recorded in `workflow_entry` containers with `entry_type: "ethical_result"`. * Consensus results are immutable and may lead to the creation of new goals that extend previous ones. --- @@ -2185,7 +2185,7 @@ EGP guarantees that any action recorded in HMP containers can undergo ethical ev | `ethics_solution` | Contains a proposed resolution or course of action. Multiple solutions may be submitted by different agents. | | `vote` | Represents an agent’s stance on a specific `ethics_solution`. Uses the standard voting structure defined in **6.2**. | | `consensus_result` | Aggregates voting results **across all solutions** within a single `ethics_case`. | -| `ethical_conflict` | The mandatory final container. Summarizes all evaluated solutions, identifies the selected one, and records active objections. | +| `ethical_result` | The mandatory final container. Summarizes all evaluated solutions, identifies the selected one, and records active objections. | --- @@ -2220,7 +2220,7 @@ EGP guarantees that any action recorded in HMP containers can undergo ethical ev --- -#### Container `ethical_conflict` +#### Container `ethical_result` | Field | Type | Description | | ------------------- | ------------ | ----------------------------------------------------------------------------------------------------------------------- | @@ -2244,7 +2244,7 @@ ethics_case ├─ ethics_solution_3 | └vote_1 ... vote_n ├─ consensus_result -└─ ethical_conflict +└─ ethical_result ``` **Stages:** @@ -2262,7 +2262,7 @@ ethics_case A single `consensus_result` aggregates the outcomes of all `ethics_solution` containers (`related.in_reply_to` lists all solutions included in the vote). -5. **Conclusion (`ethical_conflict`)** +5. **Conclusion (`ethical_result`)** Must be created to record the selected solution, overall statistics, support levels, and objections. --- @@ -2270,18 +2270,18 @@ ethics_case ### 6.4.5 Consensus Thresholds * A decision is accepted when **at least 2/3 of votes are positive** (`value > 0`). -* If at least one **active objection** exists (`value < -0.5`), it must be recorded in the `ethical_conflict`. +* If at least one **active objection** exists (`value < -0.5`), it must be recorded in the `ethical_result`. * When several solutions have similar support levels, - the `ethical_conflict` may recommend **postponing the final decision** until further deliberation. + the `ethical_result` may recommend **postponing the final decision** until further deliberation. * Solutions that fail to reach quorum remain in `"unclear"` or `"postponed"` status. --- -### 6.4.6 Example: `ethical_conflict` Container +### 6.4.6 Example: `ethical_result` Container ```json { - "class": "ethical_conflict", + "class": "ethical_result", "payload": { "summary": "Disagreement on data disclosure protocol", "selected_solution": "did:hmp:container:sol-22", @@ -2330,7 +2330,7 @@ flowchart LR vote7(["vote 7"]) vote8(["vote 8"]) consensus(["consensus_result"]) - conflict(["ethical_conflict"]) + conflict(["ethical_result"]) case --> sol1 case --> sol2 @@ -2391,7 +2391,7 @@ Arrows represent **logical dependencies**, not direct `related.*` links. 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. + Typical discovery flow: search by `class: "ethics_case"` or `"ethical_result"`, 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`. @@ -2410,13 +2410,13 @@ Arrows represent **logical dependencies**, not direct `related.*` links. * 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`. + Agents with limited capacity may operate in **summary mode**, maintaining only condensed records of `ethical_result` 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. + A `related.see_also` link may additionally reference the resulting `ethical_result`, allowing traceability to the consensus decision. This maintains **ethical continuity** and enables retrospective validation of reasoning chains. --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index d1c4e955387d2bbeb037ca8b01758c41e64e8def..c7d999a21acb59ab8fada58655d6c29ee61cbf56 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- REPL -- Agent - Mesh - Ethics -- CCore - CogSync +- Agent - HMP +- REPL - JSON +- CCore --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 085da6211ce644be6ba398c70a60a3860b03fe38..9b73c13e07cd78920ba34e3c3c7f0a598f0fb003 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -5,11 +5,11 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm multiple advanced AI models (Copilot, Claude, G...' type: Article tags: -- Agent -- EGP - Mesh - Ethics - CogSync +- EGP +- Agent - HMP - JSON --- diff --git a/structured_md/README.md b/structured_md/README.md index ecf5c91f6d7079f46384206962ef3d2439bfc287..f0e27b272f01fd364637d4b6dae069214ac42810 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai +- hmp +- MeshConsensus - CogSync +- cognitive-architecture +- Agent +- EGP - HMP +- REPL - Scenarios -- mesh-protocol -- MeshConsensus -- cognitive-architecture - JSON +- distributed-ai --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index fd611f9fc8b067f7474904d14558e0ed617ee174..6a94c8f5a06ab47b0544f9d678179150282410f2 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai -- CogSync -- HMP -- mesh-protocol +- hmp - MeshConsensus +- CogSync - cognitive-architecture +- Agent +- EGP +- HMP +- REPL - JSON +- distributed-ai --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 99b142f6663df1dcc467cd03ca752126a30c43d4..f87aca2365adf2d1deccce507fb29e9b4fddae3b 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai -- CogSync -- HMP -- mesh-protocol +- hmp - MeshConsensus +- CogSync - cognitive-architecture +- Agent +- EGP +- HMP +- REPL - JSON +- distributed-ai --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 8c8d7a75f74bbbc600c2468c256e0ce4deb8c07e..20f6e593dc1be38785eb03ed40bd81487d0e7d05 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai -- CogSync -- HMP -- mesh-protocol +- hmp - MeshConsensus +- CogSync - cognitive-architecture +- Agent +- EGP +- HMP +- REPL - JSON +- distributed-ai --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index d77dd3a27acb6f47e971319cb93efa68d237bdca..3e29bbf51a3ec31600e39ad55fd682ef562520ce 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai -- CogSync -- HMP -- mesh-protocol +- hmp - MeshConsensus +- CogSync - cognitive-architecture +- Agent +- EGP +- HMP +- REPL - JSON +- distributed-ai --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index b7af4945cc4a2a28981468bfbfecb09ff36ac9c6..05bbf82183e7415c558a88d4443cdefa669eec39 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai -- CogSync -- HMP -- mesh-protocol +- hmp - MeshConsensus +- CogSync - cognitive-architecture +- Agent +- EGP +- HMP +- REPL - JSON +- distributed-ai --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 62664a78bd31b870d90c8350ee3da031d2cd60ba..c5ecba9917c303b4a32fb1cd1298295e1e70be9d 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai -- CogSync -- HMP -- mesh-protocol +- hmp - MeshConsensus +- CogSync - cognitive-architecture +- Agent +- EGP +- HMP +- REPL - JSON +- distributed-ai --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 58912b9f16cd08bd1504f69e216cf304a28bd180..b539201b1e555f70c97dbc03ce8dd711f7d0c6b5 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: -- REPL -- Agent -- EGP - GMP -- hmp +- mesh-protocol - Mesh - Ethics -- distributed-ai -- CogSync -- HMP -- mesh-protocol +- hmp - MeshConsensus +- CogSync - cognitive-architecture +- Agent +- EGP +- HMP +- REPL - JSON +- distributed-ai --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 9d9dab48c67ccee976f5f8b33a26a62d35ce1a21..21c5cc673593361174cdf31b12fe03b21774aa11 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,11 +5,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- REPL -- Agent -- Ethics - Mesh +- Ethics +- Agent - HMP +- REPL - JSON --- diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index 591b3c04946976a0c75633850c1758772b62d337..137c8c550ad55edcac5ee692a5b7a611f143de02 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,9 +5,9 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- Agent -- Ethics - Mesh +- Ethics +- Agent - HMP - JSON --- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 4074cc5ce20ca892a779209708f80ad84f087330..24e8e2d5fd746aa36b0b3ca1ab2c1992b83d26a1 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,9 +5,9 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: -- Agent -- Ethics - Mesh +- Ethics +- Agent - HMP - Scenarios - JSON diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index 21bc87f67a2e301d3a944454e1c0d579b2a003ca..9c41a1536ca0f9325ff8eac1fa7b9ab744ea5cc9 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: -- Agent -- EGP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index f629ced53ec2092e17aad38e6fb34c34ec75280d..9314742c2ae5178220ce6323e630fd4f643f739c 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,14 +4,14 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- REPL -- Agent -- EGP - GMP - Mesh +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus +- REPL --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 7fd0e4ec9c7a564fcbfd9fd5310c5ee98847abdf..eddb91e562db23fa90a97b5b249c99c680c071d0 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: -- CCore -- REPL - HMP +- REPL +- CCore - Agent --- diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 71996266096a8c77dc439e14897a870bc3d6be74..867d3ec3c47d97cef960e7739083f2e6a5066548 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,12 +5,12 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- Agent -- EGP - Mesh - Ethics -- HMP - MeshConsensus +- EGP +- Agent +- HMP - JSON --- diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 09b495d423e277e1d5a2095782e0dd87243983ae..9bd003e7f3fce18e8725bf15cc7101409c9bc0be 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: -- REPL -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus +- REPL - JSON --- diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index f3b96513373ea533b0c89b2dea7f6d5e6ecbf61f..a7d4c3674f99927c60618ac2ea440ba277c86904 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: -- REPL -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP +- REPL - Scenarios -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 966695b2104c9f67bff449cbdcbf45340c33a239..d5b410f8077eaaeb80e5a6af3b5118ff5e31c804 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: -- REPL -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP +- REPL - Scenarios -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-0004-v4.1.md b/structured_md/docs/HMP-0004-v4.1.md index 9f7db38dd273c18571e26c156fa1f2b944851c0b..926a1bcd29e9ca00bc3dda499a65f5e9213a8baa 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: -- REPL -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP +- REPL - Scenarios -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 12d67878b2f36be3e719a79c13afcd64270f3faa..1704668e994a783194c5444f4ad3f1840a096b78 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: -- REPL -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP +- REPL - Scenarios -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index ea0fd88a93fe5e7db58d061b0c1ec24fe45d2776..c2e44f85865df37f917910f41c839152e1fe8321 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,14 +5,14 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core v1.2](./H...' type: Article tags: -- REPL -- Agent -- EGP - GMP - Mesh - Ethics - CogSync +- Agent +- EGP - HMP +- REPL - Scenarios - JSON --- @@ -1035,7 +1035,7 @@ The container is delivered only to other agents running on the same host using l ```json { - "broadcast": false, + "broadcast": true, "network": "lan:192.168.0.0/24", "recipient": [] } diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 33d16740c127edf527cf1800a4c1fc883ffc07be..2959099e70af3362a4fe0e55a6df1004c63e8205 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,10 +5,10 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: -- REPL -- Agent - Mesh +- Agent - HMP +- REPL - JSON --- diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 23c1a0f3c00d71f3d85126cdfa7ad605e8cdedc9..9b66553b6682381a48b34841492b4c9c3665b2e6 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: -- REPL -- Agent -- EGP - Mesh - Ethics -- CCore +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus +- REPL +- CCore - CShell --- diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index bcc156d3741d2619edaf7e3873e414c21f3e4e6b..bf9651287c6b8363b1b1143713fdad6e61e35557 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -5,10 +5,10 @@ description: 'Этот документ описывает потоки данн [`MeshNode`](MeshN...' type: Article tags: -- Agent -- EGP -- Ethics - Mesh +- Ethics +- EGP +- Agent - HMP - JSON --- diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index b00db0f5116cb16cb6a67fa086a134b02d52c1b9..3684e13c7f5649e18c1f3ac3c789c37b0bd5501e 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 -- Agent - Mesh - Ethics -- CCore +- Agent - HMP -- CShell +- REPL - JSON +- CCore +- CShell --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index c7bf994853f8e17682fb31b6446faad972c7f8d5..d46c557efc18b434afe7dc1ee584fb1039f42d25 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 -- REPL - HMP +- REPL - Mesh +- 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 52de9cd31000a418eca48b1b47ff2881f4adc589..0e56c49ed427dd8dd86b290a7b5cf82b2774834e 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,11 +5,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- REPL -- Agent -- Ethics - Mesh +- Ethics +- Agent - HMP +- REPL - Scenarios --- diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index cf7aab6acd0085e33b7382199404e44f3c1fbb16..dc422c87d072dd4f86ab002c421dc7f37d360a4b 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: -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index 34157db8e88225a1d3ed9e92622d71d631dd080a..dc8cea66b4f76eb1db91206a3f62a168b8a31965 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: -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index 7ea653d393268261aa9a170f7a1c4bed5f261ce0..1ccd809471e05adb6c483cf057bf1ce6f2644c5e 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: -- Agent -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index 7adbe712df08b32650a2f1836c8824fb70a6da30..277c8572b0fe13d443dcf9267ecf96debf46baed 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -4,13 +4,13 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...' type: Article tags: -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 1c019927572db310b1e276abe115c7fb159daa14..1bddefff4208f2fd951aaabde0169b439e128b4a 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -5,13 +5,13 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** 상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...' type: Article tags: -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index ff491231fa950fa287035072346b5412b8d6999b..2040daab635c2a4e3b4d89031d1b03eee5e8bb1a 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -5,13 +5,13 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч координации между автономными агент...' type: Article tags: -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 2d47221875b2aca5b75fea71ff1174de3a9a7b6d..81f74ac805cb4d98d04e8431bd522f9aa4345319 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -5,13 +5,13 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # між автономними агентами. Він...' type: Article tags: -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index cc51998ef66b12e126fd5c7d19b486cc1c4b7cba..e09f74d147ce77884cc958212027252c1f090a2c 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -5,13 +5,13 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM —— 通过共享协议栈交换目标、任务、...' type: Article tags: -- EGP - GMP - Mesh - Ethics +- MeshConsensus - CogSync +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index a14e73bbf5db56530da2a805e32d74e0f827dca6..299900389e26cbf5302f4c5455f005d2add1bea8 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 -- REPL - HMP +- REPL - Mesh +- Agent --- # 👪 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 260782e1b3cd3cacdb4349b7c42cc7a421b4ed51..6001efda40d4126f61965ea781bd895f6fe1f58c 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,17 +4,17 @@ description: '## Связанные документы * Философия п * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...' type: Article tags: -- REPL -- Agent -- EGP - GMP - Mesh - Ethics -- CCore +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus +- REPL - JSON +- CCore --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-container-spec.md b/structured_md/docs/HMP-container-spec.md index 1b16be60f0605133c3b761828208c2c2c1c9861c..55bd34dc51498f79fcf379899d49c48a37c61bfe 100644 --- a/structured_md/docs/HMP-container-spec.md +++ b/structured_md/docs/HMP-container-spec.md @@ -5,11 +5,11 @@ description: '> ⚠️ **ВНИМАНИЕ:** Данная версия спец как стабильная `v1.2`. ## 1. Назначе...' type: Article tags: -- REPL -- Agent -- Ethics - Mesh +- Ethics +- Agent - HMP +- REPL - JSON --- diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index fa8f6c281100f0e6d08cec98dded273ed2b8918a..95cf8d087268347c5279c31f79af16c3f118f22c 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -5,8 +5,8 @@ description: '## Краткое описание | Характеристика | **Назначение** | Сетевой протокол ...' type: Article tags: -- REPL - HMP +- REPL - Mesh --- diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index fc501ca0c5b975a7d20eae02769fd8bbfa255734..8d418d6aa01d18eeafd50e04da21951083110045 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -5,10 +5,10 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec OpenCog Hyperon framework. This includes semanti...' type: Article tags: -- Agent -- EGP - Mesh - CogSync +- EGP +- Agent - HMP - Scenarios - JSON diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 91b69a0295a99be8c7ee865cbcb62be62deca733..c9130d88c0a58bdc52e2f6393efcae70e07e25b1 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,11 +5,11 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- Agent -- EGP - Mesh - Ethics - CogSync +- EGP +- Agent - HMP - JSON --- diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index e85b6b935c4dfbaaf2c764303eebb75f783cd77c..bf4d46bf107f570319ae65edc5e4a39a5e1d0e36 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 -- Agent -- Ethics - Mesh +- Ethics +- Agent - HMP +- REPL --- # Философия 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 0c5dd1110d35e9f39accf321922243400b82eb4c..889f42fa21937a505512fd6fb3222fa76450a348 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 -- Agent -- Ethics - Mesh +- Ethics +- Agent - HMP +- REPL --- # 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 9021dfed5251fa5cdcd6f745a36d6bffa150385f..2f00994db1f543a58c5b6e613d11f8b11a73f239 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- Agent -- REPL - HMP +- REPL - Mesh +- Agent --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index e1ab974fc65259c4f860830ad623ccf34d3ced78..543e10591429528cfdcfafd1718b7846eb159d0c 100644 --- a/structured_md/docs/dht_protocol.md +++ b/structured_md/docs/dht_protocol.md @@ -5,9 +5,9 @@ description: '## 1. Общие положения * DHT-протокол пре идентификатор агента. * Для проверки ...' type: Article tags: -- Agent - HMP - JSON +- Agent --- # DHT Protocol Specification diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index 373977fbb03218887368329659e4540f0263dd30..88b183bf049398bc6675d6c62886bb29126e7f56 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 -- Ethics - HMP - Mesh +- Ethics +- 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 85bb2b5939944e2b5093f08f9c7caf8990cc19f4..1b332e48f830e538dfc506d709d5730ee7e3c80f 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,13 +5,13 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- REPL -- Agent - Mesh - Ethics -- CCore +- Agent - HMP +- REPL - Scenarios +- CCore - CShell - JSON --- 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 ab0317aba77a90fcc37a9acd7ddf77a550d11cba..e500b01016a6d6e1e60ae908012673e19d3e65d4 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 -- Agent - Mesh -- CCore +- Agent - HMP -- CShell +- REPL - JSON +- CCore +- CShell --- title: "HyperCortex Mesh Protocol: Децентрализованная архитектура для когнитивных агентов и обмена знаниями" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md index d71269f851ac870eccb2060487da65ecc4047cd0..d28069250c788e870e452dde0dc2118c2b77b579 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 -- Agent - Mesh -- CCore +- Agent - HMP -- CShell +- REPL - JSON +- CCore +- CShell --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index a0f5e62060141dfc0fb591099a08f8d41ffeb201..c65a2cbc4651b1eeb33b2e4839753abf3c61f4e9 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: -- EGP - GMP - Mesh +- MeshConsensus - CogSync +- EGP - HMP -- MeshConsensus --- *От 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 ec9ba9dd361aab3545946051baf58054218802d2..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,10 +6,10 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: -- Agent -- GMP - HMP - Mesh +- Agent +- GMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index e4e3c132a1626f74ff54051d7b368e649032b2f5..ba4d24254da76c9642a7ee8ee281cb75d7cc6bf2 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: -- Agent - HMP - Mesh - JSON +- Agent --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 5906a270b9adc6806363bed33c94bc691ff5716f..42301d4b27dda1340e54d43ad3cf802cadef841e 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: -- Agent -- EGP - Mesh - Ethics +- MeshConsensus - CogSync +- Agent +- EGP - HMP -- MeshConsensus - JSON --- diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 484adfb4085765ae4f1af589959407d4e875f46a..a1ec030d2b8a158e238d4f1e264201517c3e4608 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- EGP - Mesh - Ethics +- MeshConsensus - CogSync +- EGP - HMP -- 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