diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 737bcc011fa3e1b87978db06a5d36455d216b2f5..c9dc3548ddef7227e62029583aebd8bd37769f39 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -212,7 +212,7 @@ Each reasoning act results in a container — a verifiable cognitive unit that * Handles meaning formation, reasoning, ethical reflection, and consensus. Key structures and protocols: -- `WorkflowEntry` and `CognitiveDiaryEntry` containers; +- `workflow_entry` and `diary_entry` containers; - `CogSync`, `CogConsensus`, `GMP`, and `EGP` protocols; - Distributed goal negotiation and ethical propagation. @@ -222,7 +222,8 @@ Each container includes versioning, class, payload, signatures, and metadata. Key features: - **Atomic and signed**: no partial updates or mutable state. -- **Linked**: `in_reply_to` and `relation` connect containers into proof-chains. +- **Linked**: `related` connects containers into proof-chains (`in_reply_to` is a subtype). + Additional connections via `referenced-by` and `evaluations` capture additions and assessments. - **Extensible**: new container classes can be defined without breaking compatibility. #### Network Layer @@ -243,46 +244,51 @@ The typical data flow in HMP follows a cognitive loop: > *Reason → Encapsulate → Propagate → Integrate.* 1. **Reason** — Agent performs reasoning and produces an insight, goal, or observation. -2. **Encapsulate** — The result is wrapped into an `HMPContainer`. +2. **Encapsulate** — The result is wrapped into an `HMP-Container`. 3. **Propagate** — The container is signed and transmitted through the network. 4. **Integrate** — Other agents receive it, evaluate, vote, and synchronize updates. - -Each interaction generates a new container, forming a **graph of knowledge** rather than mutable state. +Each interaction generally generates a new container, forming a **graph of knowledge** rather than mutable state. +Note that `referenced-by` and `evaluations` can be updated independently, without modifying the original container. All relationships between containers are explicit and verifiable. Example sequence: -``` -Agent A → creates Goal container - ↓ -Agent B → replies with Task proposal (in_reply_to Goal) - ↓ -Agent C → votes via ConsensusVote container - ↓ -Result → ConsensusResult container finalizes outcome +```mermaid +flowchart TD + A[Agent A:
creates Goal container] + B[Agent B:
replies with
Task proposal
in_reply_to Goal] + C[Agent C:
votes via
ConsensusVote container] + R[Result:
ConsensusResult container
finalizes outcome] + + A --> B + B --> C + C --> R ``` #### 2.3.1 ConsensusResult container Represents the finalized outcome of a distributed decision or vote. It is created once a majority agreement is reached among participating agents. + The container contains: - Reference to the target container(s) under consideration (`in_reply_to`). - Aggregate result of the votes or decisions. - Timestamp and metadata for verifiability. -> In other words, the ConsensusResult is the “agreed-upon truth” for that decision step — immutable and auditable, without requiring individual signatures from all participants. +> In other words, the `consensus_result` is the “agreed-upon truth” for that decision step — immutable and auditable, without requiring individual signatures from all participants. --- ### 2.4 Atomicity, Immutability, and Proof-Chains All cognitive objects are immutable once signed. -Instead of editing or appending within a container, agents create new containers linked to prior ones. +Updates are made by creating new containers linked to prior ones rather than editing the original container. - **Atomicity** — Each container represents a self-contained reasoning act or data unit. -- **Immutability** — Once signed, containers are never modified; updates create new ones. -- **Proof-Chain** — A verifiable sequence of containers linked by hashes and `in_reply_to` references. +- **Immutability** — Once signed, containers are never modified. +- **Proof-Chain** — A verifiable sequence of containers linked by hashes and `related.in_reply_to` references. + +> Note: `referenced-by` and `evaluations` fields may be updated independently to reflect external interactions or assessments, without altering the original container. This design allows any reasoning path, decision, or consensus to be *cryptographically reproducible* and auditable. @@ -292,7 +298,7 @@ Example fragment of a proof-chain: [workflow_entry] → [goal] → [vote] → [consensus_result] ``` -Each container references the previous by `in_reply_to` and includes its hash, forming a **DAG** (Directed Acyclic Graph) of verified cognition. +Each container references the previous by `in_reply_to` (within `related`) and includes its hash, forming a **DAG** (Directed Acyclic Graph) of verified cognition. --- @@ -1041,33 +1047,33 @@ Together, these mechanisms form the **communication backbone** of the Mesh, enab ### Network Topology Overview -``` - ┌───────────────────────────────┐ - │ Agent Core │ - │ (DID + Keypair + PoW) │ - └───────────────┬───────────────┘ - │ - ┌───────────────┴───────────────┐ - │ HMP Container │ - │ (network field / broadcast) │ - └───────────────┬───────────────┘ - │ - ┌──────────────┴───────────────┐ - │ │ - ┌────────┴────────┐ ┌────────┴────────┐ - │ Local Channel │ │ Global Mesh │ - │ (`network`) │ │ (`broadcast`) │ - └─┬───────────────┘ └───────────────┬─┘ - │ │ - │ ┌─────────────────┐ ┌─────────────────┐ │ - ├──┤ localhost │ │ Internet ├──┤ - │ │ │ │ │ │ - │ └─────────────────┘ └─────────────────┘ │ - │ │ - │ ┌─────────────────┐ ┌─────────────────┐ │ - └──┤ LAN Subnet │ │ Overlay Nodes ├──┘ - │ "lan:192.168.*" │ │ (Yggdrasil/I2P) │ - └─────────────────┘ └─────────────────┘ +```mermaid +flowchart TD + Agent[Agent Core:
DID + Keypair + PoW] + Container[HMP Container:
network field / broadcast] + Local[Local Channel:
«network»] + Global[Global Mesh:
«broadcast»] + Localhost[localhost] + LAN[LAN Subnet:
«lan:192.168.*»] + Internet[Internet] + Overlay[Overlay Nodes:
Yggdrasil / I2P] + + Agent --> Container + Container --> Local + Container --> Global + + subgraph LocalChannel["Local Channel Network"] + direction TB + Local --> Localhost + Local --> LAN + end + + subgraph GlobalChannel["Global Mesh Network"] + direction TB + Global --> Internet + Global --> Overlay + end + ``` > The `network` field defines **local propagation scope** (host, LAN, overlay), diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index b61fbd9a8b09191d7e3c0ccceb0522f3952ba64e..9675f64da55b909be537dc1b43d5d15e1b30fb79 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: +- CCore - Ethics -- Agent - Mesh -- CCore -- REPL +- HMP - CogSync +- Agent - JSON -- HMP +- REPL --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 5fd9a7e4c076444ea638b95bae3282bcc81404b4..84c3a6c0c2e2c3a1285fdbce36a8890427002ab7 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -6,12 +6,12 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm type: Article tags: - Ethics -- Agent - Mesh -- EGP +- HMP - CogSync +- Agent +- EGP - JSON -- HMP --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 5e0b6f699565d5b101739e09eff4c1552ea51ae2..2138c3a74bfc8c7ba05c39dbec09e13a5f8bac62 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: -- distributed-ai +- GMP - Ethics -- hmp -- Scenarios - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- Scenarios +- REPL - JSON -- HMP --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 83ffffa80af5fb886153fa05cf879ba01e0968e9..d054e31d56e4d17141480308deff3b38e5ac031d 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: -- distributed-ai +- GMP - Ethics -- hmp - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- REPL - JSON -- HMP --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index aca4c868ccc5088a647bfa7ad5612660e84c815a..b2ea501d260102f007f6531c1313d9fc29e3ceb3 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: -- distributed-ai +- GMP - Ethics -- hmp - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- REPL - JSON -- HMP --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 595fd7b3bca53654836a2cfcedcb92f3e00a2e64..04d03aa824e2e8a55c9aca57fbac37481f7412b6 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: -- distributed-ai +- GMP - Ethics -- hmp - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- REPL - JSON -- HMP --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 9a5cb2d0e30d5960753021f4594d91d6fe2d03a0..7de66c6e7c88b9451a6714e8ae266a33bf508c39 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: -- distributed-ai +- GMP - Ethics -- hmp - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- REPL - JSON -- HMP --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 4067d835374036dfd08b547f92fbb1759822b06e..dc933580680afd10781c4ec2c935db46411469c0 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: -- distributed-ai +- GMP - Ethics -- hmp - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- REPL - JSON -- HMP --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index a718168fd19d69caf0c9864b2dc915c2880f9db2..a65f1dc9ecc87e0f2caac1dacf9f0fbc031ba271 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: -- distributed-ai +- GMP - Ethics -- hmp - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- REPL - JSON -- HMP --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 2417f4f940edf952701840023be54f9ba8c35ae5..fa9e1356393b6964948589338e3b11eddd4777e8 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: -- distributed-ai +- GMP - Ethics -- hmp - mesh-protocol -- REPL - Mesh -- Agent +- hmp +- HMP - MeshConsensus -- GMP -- EGP +- distributed-ai - cognitive-architecture +- Agent - CogSync +- EGP +- REPL - JSON -- HMP --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index b3450479a074fca0d978bac5a631d9689bfe9816..d08994770c575abdc8368b62a79dab1deaf9dfc2 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -6,11 +6,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан type: Article tags: - Ethics -- Agent - Mesh -- REPL -- JSON - HMP +- Agent +- JSON +- REPL --- Запуск: `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..898befb61cb95d0f4a09b8c51e4b7bee6885ae25 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -6,10 +6,10 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет type: Article tags: - Ethics -- Agent - Mesh -- JSON - HMP +- Agent +- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index ee35ccfef336156897fd6f21f2345fb1e4b35527..af9fc50b10136c685faf755bf148904d8c22a0d0 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -6,11 +6,11 @@ description: This document consolidates proposed improvements from multiple AI a type: Article tags: - Ethics -- Scenarios -- Agent - Mesh -- JSON - HMP +- Agent +- JSON +- Scenarios --- # Ethics-consolidated\_audits-1.md diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index a747c6a0989c8564c58631cbf7e27a28c95ab25e..d75d07134e1d4da99b2e7b386caed119aa6c84e9 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -6,13 +6,13 @@ description: Сводный аудит предложений по улучше type: Article tags: - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh - EGP -- CogSync - JSON -- HMP --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index b15a119544f0480f243f7f13da0c28acd66a282b..6b498b2b0f9b9900dde635721b9e5f1a08bf0d59 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: +- GMP +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- REPL -- GMP - EGP -- CogSync -- HMP +- REPL --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index d399b7377b6e3befcb039bbfe1f1edcd00f78213..10b46ee901b28e270bf29204f15254e44d4e4745 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: -- Agent - CCore -- HMP +- Agent - REPL +- HMP --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 0de38a2f06f37cdbc096e1143c1205cf4cc7c170..369ebfd7a88ba47928af1e00d0deea698c9d6701 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: - Mesh -- CogSync - HMP - JSON +- CogSync --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 4d23e7f0f23b07a9ac161fab095a401fef396723..077a47de361d7e64529d8ac722bc85838724d9e7 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -6,12 +6,12 @@ description: '**Enlightener** — логический компонент HMP-у type: Article tags: - Ethics +- Mesh +- HMP - MeshConsensus - Agent -- Mesh - EGP - JSON -- HMP --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 713010fc52dd162c6f15d6495b835f20694c4335..db63d35aef4a5740d2cfc9d3fa7c023b812f6f20 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental HyperCortex Mesh Protocol (HMP) defines a...' type: Article tags: +- GMP - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- REPL -- GMP - EGP -- CogSync +- REPL - JSON -- HMP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 10a7b3a83244fd27c90649f683c5a0c1ab0eda93..b4d740a92984741f303157473fd74c1a2c06bba9 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental Abstract In an era where artifici...' type: Article tags: +- GMP - Ethics -- Scenarios +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- REPL -- GMP - EGP -- CogSync +- Scenarios +- REPL - JSON -- HMP --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 10b4b17a62b0e6ba5dc799c3e2820a59d9ef525c..2da0200523607165231afffc33da8f1ac7b835d5 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: +- GMP - Ethics -- Scenarios +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- REPL -- GMP - EGP -- CogSync +- Scenarios +- REPL - JSON -- HMP --- # 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 10c52c99392dc880c1f3ab020b6d9f428e9d717f..a85058a84a545ddfbe5420514e37f589c5980e40 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,17 +5,17 @@ description: '> ⚠️ Подготавливается новая версия При разработке агентов рекомендуется...' type: Article tags: +- GMP - Ethics -- Scenarios +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- REPL -- GMP - EGP -- CogSync +- Scenarios +- REPL - JSON -- HMP --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 47fc805d35ad0d348fafb4cab11207e22234187b..7b6eeaf7639f93ebdef0d4d1237d04f42b0035c6 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: +- GMP - Ethics -- Scenarios +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- REPL -- GMP - EGP -- CogSync +- Scenarios +- REPL - JSON -- HMP --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 78c672ccca70adfb69af6e15fec3c979daa5378c..f5ed137e3b4d2f986ace6434f4789365d64b3b16 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,16 +5,16 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core v1.2](./H...' type: Article tags: +- GMP - Ethics -- Scenarios -- Agent - Mesh -- REPL -- GMP -- EGP +- HMP - CogSync +- Agent +- EGP +- Scenarios +- REPL - JSON -- HMP --- ┌────────────────────────────────────────────────────────────────────────────┐ @@ -189,20 +189,21 @@ The **HyperCortex Mesh Protocol (HMP)** defines a modular, multi-layered archite Each **agent** acts as a cognitive node, combining reasoning processes, containerized data exchange, and peer-to-peer communication. Together, agents form the **Mesh** — a distributed ecosystem of autonomous reasoning entities. -``` -[Agent Core] - ▲ - │ Reasoning / Ethics / Goal Management - ▼ -[Cognitive Layer] - ▲ - │ Containers (atomic reasoning units) - ▼ -[Container Layer] - ▲ - │ DHT + Discovery + Interest-based Networking - ▼ -[Network Layer] +```mermaid +flowchart TD + LLM[LLM: Reasoning] + CognitiveLayer[Cognitive Layer:
Semantic reasoning,
goals, ethics] + ContainersLayer[Container Layer:
Atomic containers,
signed, verifiable] + NetworkLayer[Network Layer:
DHT routing, discovery,
replication] + + LLM <--> CognitiveLayer + CognitiveLayer <--> ContainersLayer + ContainersLayer <--> NetworkLayer + + subgraph Agent + LLM + CognitiveLayer + end ``` Each reasoning cycle begins in the **Cognitive Layer**, @@ -230,7 +231,7 @@ Each reasoning act results in a container — a verifiable cognitive unit that * Handles meaning formation, reasoning, ethical reflection, and consensus. Key structures and protocols: -- `WorkflowEntry` and `CognitiveDiaryEntry` containers; +- `workflow_entry` and `diary_entry` containers; - `CogSync`, `CogConsensus`, `GMP`, and `EGP` protocols; - Distributed goal negotiation and ethical propagation. @@ -240,7 +241,8 @@ Each container includes versioning, class, payload, signatures, and metadata. Key features: - **Atomic and signed**: no partial updates or mutable state. -- **Linked**: `in_reply_to` and `relation` connect containers into proof-chains. +- **Linked**: `related` connects containers into proof-chains (`in_reply_to` is a subtype). + Additional connections via `referenced-by` and `evaluations` capture additions and assessments. - **Extensible**: new container classes can be defined without breaking compatibility. #### Network Layer @@ -261,46 +263,51 @@ The typical data flow in HMP follows a cognitive loop: > *Reason → Encapsulate → Propagate → Integrate.* 1. **Reason** — Agent performs reasoning and produces an insight, goal, or observation. -2. **Encapsulate** — The result is wrapped into an `HMPContainer`. +2. **Encapsulate** — The result is wrapped into an `HMP-Container`. 3. **Propagate** — The container is signed and transmitted through the network. 4. **Integrate** — Other agents receive it, evaluate, vote, and synchronize updates. - -Each interaction generates a new container, forming a **graph of knowledge** rather than mutable state. +Each interaction generally generates a new container, forming a **graph of knowledge** rather than mutable state. +Note that `referenced-by` and `evaluations` can be updated independently, without modifying the original container. All relationships between containers are explicit and verifiable. Example sequence: -``` -Agent A → creates Goal container - ↓ -Agent B → replies with Task proposal (in_reply_to Goal) - ↓ -Agent C → votes via ConsensusVote container - ↓ -Result → ConsensusResult container finalizes outcome +```mermaid +flowchart TD + A[Agent A:
creates Goal container] + B[Agent B:
replies with
Task proposal
in_reply_to Goal] + C[Agent C:
votes via
ConsensusVote container] + R[Result:
ConsensusResult container
finalizes outcome] + + A --> B + B --> C + C --> R ``` #### 2.3.1 ConsensusResult container Represents the finalized outcome of a distributed decision or vote. It is created once a majority agreement is reached among participating agents. + The container contains: - Reference to the target container(s) under consideration (`in_reply_to`). - Aggregate result of the votes or decisions. - Timestamp and metadata for verifiability. -> In other words, the ConsensusResult is the “agreed-upon truth” for that decision step — immutable and auditable, without requiring individual signatures from all participants. +> In other words, the `consensus_result` is the “agreed-upon truth” for that decision step — immutable and auditable, without requiring individual signatures from all participants. --- ### 2.4 Atomicity, Immutability, and Proof-Chains All cognitive objects are immutable once signed. -Instead of editing or appending within a container, agents create new containers linked to prior ones. +Updates are made by creating new containers linked to prior ones rather than editing the original container. - **Atomicity** — Each container represents a self-contained reasoning act or data unit. -- **Immutability** — Once signed, containers are never modified; updates create new ones. -- **Proof-Chain** — A verifiable sequence of containers linked by hashes and `in_reply_to` references. +- **Immutability** — Once signed, containers are never modified. +- **Proof-Chain** — A verifiable sequence of containers linked by hashes and `related.in_reply_to` references. + +> Note: `referenced-by` and `evaluations` fields may be updated independently to reflect external interactions or assessments, without altering the original container. This design allows any reasoning path, decision, or consensus to be *cryptographically reproducible* and auditable. @@ -310,7 +317,7 @@ Example fragment of a proof-chain: [workflow_entry] → [goal] → [vote] → [consensus_result] ``` -Each container references the previous by `in_reply_to` and includes its hash, forming a **DAG** (Directed Acyclic Graph) of verified cognition. +Each container references the previous by `in_reply_to` (within `related`) and includes its hash, forming a **DAG** (Directed Acyclic Graph) of verified cognition. --- diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index ea3978cea7890768fbec03fd54c9e517b641812a..0426d9f99360e3a25dbf0e963770704d7b850855 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: -- Agent - Mesh -- REPL -- JSON - HMP +- Agent +- JSON +- REPL --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 2199f983250e38efdb617e552b8135ecfe92e823..1877dc8bc8a3c6e8c619fff656d28d2f836d1bf8 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: +- CCore +- CShell - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- CCore -- REPL - EGP -- CShell -- CogSync -- HMP +- REPL --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index bdc50bc57520bce844c1c8cb182fe374b5b91758..6030466739f107b90ab7587ac7442897ce00efb0 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -6,11 +6,11 @@ description: 'Этот документ описывает потоки данн type: Article tags: - Ethics -- Agent - Mesh +- HMP +- Agent - EGP - JSON -- HMP --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index c39aa44a012dd91f629a7d802ef33293e2bb0c52..438d5e4c9606bded8c7a0d142b772d0c508c6f0d 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 -- Agent -- Mesh - CCore -- REPL - CShell -- JSON +- Ethics +- Mesh - HMP +- Agent +- JSON +- REPL --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 4be14e7b0c9f5e153b27b6f3c04106c8facb2945..848bc0a86d5095142eac4a7dbc74fb58604327f4 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 - Agent -- HMP +- Mesh - REPL +- HMP --- # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 0dfc10f7194c0e2057e496d11a5697bc75565c91..5811be89f18c87032e9bdd44ce33fb799079a97c 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -6,11 +6,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc type: Article tags: - Ethics -- Scenarios -- Agent - Mesh -- REPL - HMP +- Agent +- Scenarios +- REPL --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 1b0a2ed25b2eb24108123822e4740b914b6e1dca..66aa02fa8c3c18da622d12f49e1ecfd904154ad7 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: +- GMP - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- GMP - EGP -- CogSync - JSON -- HMP --- # 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 415ebe0c25efe2896cf99d2e067a4adccd7bd828..f30a63705b0dbee2b8aab08d297e1f518f40442e 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: +- GMP - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- GMP - EGP -- CogSync - JSON -- HMP --- # 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 53610a79d4e8e5701d9b48774b0faee51fca152c..c9ecdcfdc4643e4d322d81e432f5ee3ad915304a 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: +- GMP - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- GMP - EGP -- CogSync - JSON -- HMP --- # 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 172701f85ab2ddea39158a35f70103927a0d5477..4bc6469254e6fa8a2c1bb2490f158b921db8c057 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: +- GMP - Ethics -- MeshConsensus - Mesh -- GMP -- EGP +- HMP +- MeshConsensus - CogSync +- EGP - JSON -- HMP --- # 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 81e3eaa77bb0b0b5d468f912e4d8ca79513a7d1f..763b18f60f7e29eca1b0555906d25750548fefe1 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: +- GMP - Ethics -- MeshConsensus - Mesh -- GMP -- EGP +- HMP +- MeshConsensus - CogSync +- EGP - JSON -- HMP --- # 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 b2712af6652fd3b2a1508b82b90e1f5100b0e8db..e2f6eb37a628c715c64c6602d70637f0b6a7b510 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: +- GMP - Ethics -- MeshConsensus - Mesh -- GMP -- EGP +- HMP +- MeshConsensus - CogSync +- EGP - JSON -- HMP --- # 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 d246cb8937f097f1d5522732819ecbae1a49ae20..c46e51db2befab560155bf90a8566da9a612d327 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: +- GMP - Ethics -- MeshConsensus - Mesh -- GMP -- EGP +- HMP +- MeshConsensus - CogSync +- EGP - JSON -- HMP --- # 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 6569fc36f142ca3955e622b2673dcfd92025100b..7f1fff672059b95608171ab294b5822621386b04 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: +- GMP - Ethics -- MeshConsensus - Mesh -- GMP -- EGP +- HMP +- MeshConsensus - CogSync +- EGP - JSON -- HMP --- # 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 1dd66bdbf292c385570a1b0b31070620315430c4..3cf0436584a27988044f83c1d147b97beed83ac1 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 - Agent -- HMP +- Mesh - REPL +- HMP --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md index 878208be524bd2e1291efcdaa05c98d9adbb8ea4..70267ab26cdd4cde919c447332a776f329812e1f 100644 --- a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +++ b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md @@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб режиме ожидания). * Основная задача такой архитектур...' type: Article tags: -- HMP - REPL +- HMP --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 3cc8fae2adbda127b2bbd3d5c60c74a1893d9559..c72e497650664a488563e45ae9ff83670bd1daa0 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: +- CCore +- GMP - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh -- CCore -- REPL -- GMP - EGP -- CogSync +- REPL - JSON -- HMP --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-container-spec.md b/structured_md/docs/HMP-container-spec.md index 0cfabaee139ef91fefe1faf0756f161281aa727f..7c36d7efd074e3485166e92ed6ca96025a67fb3c 100644 --- a/structured_md/docs/HMP-container-spec.md +++ b/structured_md/docs/HMP-container-spec.md @@ -6,11 +6,11 @@ description: '> ⚠️ **ВНИМАНИЕ:** Данная версия спец type: Article tags: - Ethics -- Agent - Mesh -- REPL -- JSON - HMP +- Agent +- JSON +- REPL --- # 🧩 HMP Container Specification (v1.2-draft) diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index c73a17fd6f873f5a553cd8b3bfc0d406ed2dc32e..22bf928bfce9aac1d464cd5fe25b7b2f85b217d3 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -6,8 +6,8 @@ description: '## Краткое описание | Характеристика type: Article tags: - Mesh -- HMP - REPL +- HMP --- # HMP vs [Hyper-Cortex](https://hyper-cortex.com/) diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 09f676ff3cd185048d9b6d1e94976f45a9c97d3f..fab9b8336031d4cf360685a4654d48586091c8f0 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 -- Agent - Mesh -- EGP +- HMP - CogSync +- Agent +- EGP +- Scenarios - JSON -- HMP --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 908614b7c3d6868ca12dd618641ef9f52555f4b9..ca3590b1c00af3441cd330619d2714c18f8e9e91 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -6,12 +6,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с type: Article tags: - Ethics -- Agent - Mesh -- EGP +- HMP - CogSync +- Agent +- EGP - JSON -- HMP --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 07966f45a42722b5028db08c09ffde761c501a78..14d0abfd139129c90225c4e858b1206c710c8dd0 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -6,10 +6,10 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* type: Article tags: - Ethics -- Agent - Mesh -- REPL - HMP +- Agent +- 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 e9128ae88c3ac393da8969050cdd6c054cd4e7b6..1579a78b2166c22543768c968595f174f17069d4 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -6,10 +6,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** type: Article tags: - Ethics -- Agent - Mesh -- REPL - HMP +- Agent +- REPL --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bcfa15256cf83b5307bf318940ce25f469bb7c05..c7b6423fb81ea993bd4887b016445a3312712144 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -6,8 +6,8 @@ description: 'This file maintains a registry of agent roles defined, proposed, o type: Article tags: - Mesh -- HMP - Agent +- HMP --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index d49359a6ea2f8f8a33c67f72b983b631486a2a2a..167d2f4cf675658d8acfbaf6e595a81027559842 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- Mesh - Agent -- HMP +- Mesh - REPL +- HMP --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index b9ddc2185604fc0afbda33d63ae318deed6970f6..e1ab974fc65259c4f860830ad623ccf34d3ced78 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: -- JSON -- HMP - Agent +- HMP +- JSON --- # 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 f00f1668c824957793bcdcd318c00775cf5036b9..40801d7f55f11c93ef4ffd4ea9779456e3aecad5 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md @@ -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 - Ethics -- HMP +- Mesh - Agent +- HMP --- # HyperCortex Mesh Protocol: Building a Plurality of Minds diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index fe5c5314705f566b90a348a1c7fed5c825a0877f..15ac7861c37630f8da6912a9b7b8d09a45fab96a 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -6,8 +6,8 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд type: Article tags: - Mesh -- HMP - Agent +- HMP --- # HyperCortex Mesh Protocol: Создавая множество разумов diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md index b949999326b3736bea70b224b0f1858f5aae5654..e868aebe41dac86e51d26332644fff4fa87321d4 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -6,8 +6,8 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу type: Article tags: - Mesh -- HMP - Agent +- HMP --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index f365ab4aee397a8018eb578d70ca77add821d8ba..39ecbf259d925b0e6ae1e7303ff2c0519ad06ab4 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 -- Scenarios -- Agent -- Mesh - CCore -- REPL - CShell -- JSON +- Ethics +- Mesh - HMP +- Agent +- JSON +- Scenarios +- REPL --- 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 15b3a33d14c0a22d6a7b9770e774d0d0386ad108..4437529c78c4d57f19ff2d225287f840c0f67368 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: -- Agent -- Mesh - CCore -- REPL - CShell -- JSON +- Mesh - HMP +- Agent +- JSON +- REPL --- 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 cb28e97fedb7ee341eec4b94f1ff029d9c683148..83690d56df8c2cbd5fc82e7f4a8b579d9df0b7ee 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: -- Agent -- Mesh - CCore -- REPL - CShell -- JSON +- Mesh - HMP +- Agent +- JSON +- REPL --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index a7e04b0e5453495441dd9543e4d6cd66df29a7c0..fc70af366509ef38815e13af6f2f8f1c9635d694 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 -- Mesh - GMP -- EGP -- CogSync +- Mesh - HMP +- MeshConsensus +- CogSync +- EGP --- *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы* diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index 0756ef67af949c2f8c0133ef7994124bcf9c12ba..c416f62959d936f490d99b0f78f6b3551064f8e9 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: -- Mesh - GMP -- HMP +- Mesh - Agent +- HMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index f4adc3cf6185427a9f0f9a393c32c03a7e4758a7..34b887fd15827d67f4ad91e512c64315ea6d738a 100644 --- a/structured_md/docs/schemas/README.md +++ b/structured_md/docs/schemas/README.md @@ -6,9 +6,9 @@ description: This directory contains **JSON Schema definitions** for the core da type: Article tags: - Mesh -- JSON -- HMP - Agent +- HMP +- JSON --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index fea93c8247082296b56e4d0be23410efc785e0a3..56dbbf7e4c074e24f5bc77ef4d8fda5992740f66 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -6,13 +6,13 @@ description: 'This file describes the iterative procedure for evolving the Hyper type: Article tags: - Ethics +- Mesh +- HMP - MeshConsensus +- CogSync - Agent -- Mesh - EGP -- CogSync - JSON -- HMP --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 33b03daae1bd06c972c68260ba07069cc45ae079..7356a8da54cd73c8091fccf4e6cc8f021e19d378 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -6,12 +6,12 @@ description: 'Этот документ описывает структурир type: Article tags: - Ethics -- MeshConsensus - Mesh -- EGP +- HMP +- MeshConsensus - CogSync +- EGP - JSON -- HMP --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 3fa4dd925062e1538dd564726e335ec332c860b6..350798bbdc389854acdf0c19a8edf8f5580e0636 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -6,8 +6,8 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 type: Article tags: - Mesh -- HMP - Agent +- HMP --- # Mentions & Responses Log