diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 2e638137bd37db839185acceea7407301ff08c42..4701186fe5410a60eb80d999da440f76b63988ab 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -444,6 +444,7 @@ The unified container structure provides: | `key_recipient` | string | DID of the intended recipient of the encrypted payload. | | `payload_type` | string | Can describe complex types, e.g. `encrypted+zstd+json`. | | `referenced-by` | object | Unsigned field generated locally by the agent based on received references. Contains a list of container DIDs **that refer to this container**. May be extended over time, thus requiring verification; used for local navigation. | +| `evaluations` | object | Optional field describing **aggregated evaluations or reactions** of other agents toward this container. Used for distributed reputation and interpretability. May evolve independently of the container’s core data. | | `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. | --- @@ -494,25 +495,38 @@ The following format is recommended for describing payload fields in class speci ### 3.6 Container Signature -1. The **entire JSON object `hmp_container`** is signed, excluding the `signature` field itself. - This ensures that all metadata, relations, and payload hashes are cryptographically bound. +1. The **digital signature** applies to the canonical JSON representation of the entire `hmp_container` object, + **excluding** the `signature` field itself. -2. The default digital signature algorithm is **Ed25519**. + This ensures that all metadata, relations, and payload hashes are **cryptographically bound** and cannot be + modified without invalidating the signature. + +2. The canonical representation (`canonical_json(hmp_container)`) **must** be computed deterministically + according to the following rules: + + - All object keys are **sorted lexicographically** (ascending order, Unicode code point order). + - Objects and arrays are serialized in standard JSON form **without extra whitespace** or indentation. + - Strings are encoded in **UTF-8** with escaped control characters. + - Numeric values are serialized in plain JSON numeric format (no leading zeros, fixed `.` decimal separator). + - The `signature` field itself is omitted during signing and verification. + - The result is a **byte sequence** identical across implementations. + +3. The default digital signature algorithm is **Ed25519**. Alternative algorithms may be used if declared explicitly in the `sig_algo` field. -3. If the container includes a `public_key` field, signature verification **may be performed locally**, +4. If the container includes a `public_key` field, signature verification **may be performed locally**, without consulting a global DID registry. -4. Upon receiving a container, an agent **must verify** that the provided public key matches the +5. Upon receiving a container, an agent **must verify** that the provided public key matches the registered key associated with the sender’s DID to prevent key substitution attacks. - * If the sender’s DID–key mapping is unknown, + - If the sender’s DID–key mapping is unknown, the agent should query neighboring peers to confirm the association (`sender_did → public_key`). > 🔐 **Note:** -> Signature validation applies to the entire structure (metadata + payload + relations). -> The signature **does not cover** external or dynamically generated fields such as `referenced-by`, -> ensuring immutability of the original container while allowing local graph augmentation. +> Signature validation applies only to the canonical form of the `hmp_container` +> and does **not cover** dynamically generated or external fields such as `referenced-by` or `evaluations`. +> This allows agents to augment the local knowledge graph without altering the immutable container core. --- @@ -838,6 +852,95 @@ If container `[C7]` does not actually reference `[C1]`, it is excluded before si --- +## 3.16 Evaluations + +The `evaluations` field is **optional** and represents **aggregated reactions from other agents** to the given container. +Each evaluation is created by an agent as a **signed record** referencing a justification container (`target`), in which the agent explains their position (argument, addition, or alternative). + +The `evaluations_hash` is used to verify the integrity of the list without requiring full retransmission upon every update. + +```json +"evaluations": { + "evaluations_hash": "sha256:efgh...", + "items": [ + { + "value": -0.4, + "type": "oppose", + "target": "did:hmp:container:reason789", + "timestamp": "2025-10-17T14:00:00Z", + "agent_did": "did:hmp:agent:B", + "sig_algo": "ed25519", + "signature": "BASE64URL(...)" + } + ] +} +``` + +--- + +### **Field Description** + +| Field | Type | Description | +| ------------------ | ------ | -------------------------------------------------------------------- | +| `evaluations_hash` | string | Hash of the evaluation list. Used to detect differences during sync. | +| `items` | array | List of signed evaluations. | + +--- + +### **Structure of `items[]`** + +| Field | Type | Description | +| ----------- | ---------------------- | ------------------------------------------------------------------------------ | +| `value` | number (-1.0 … +1.0) | Numeric expression of the agent’s attitude toward the container. | +| `type` | string | Type of evaluation (see table below). | +| `target` | string (container DID) | Reference to the justification container (argument, addition, or alternative). | +| `timestamp` | string (ISO 8601) | Time when the evaluation was created. | +| `agent_did` | string | Identifier of the agent who created the evaluation. | +| `sig_algo` | string | Signature algorithm (e.g., `ed25519`). | +| `signature` | string | Digital signature confirming the authenticity of the evaluation. | + +The signature is calculated over the concatenated string: + +``` +value + ", " + type + ", " + target + ", " + timestamp + ", " + agent_did +``` + +using the algorithm specified in `sig_algo`. + +--- + +### **Minimal Set of `type` Values** + +| Value | Meaning | +| --------- | -------------------------------------------- | +| `support` | Agreement or positive evaluation. | +| `oppose` | Disagreement or negative evaluation. | +| `extend` | Non-contradictory addition to the container. | +| `replace` | Suggestion of an alternative version. | +| `comment` | Neutral note or clarification. | + +Agents may define their own custom types if they are reasonably interpretable by others (e.g., `revise`, `clarify`). + +--- + +### **Synchronization Principles** + +1. Each evaluation is signed **individually by an agent**, and one agent can have **only one active evaluation** per container. +2. If an agent changes their opinion, they issue a **new record** with a later `timestamp`. +3. **Evaluation blocks** can be **propagated** in the network similarly to the `referenced-by` block. + They are bound to a container but may also be transmitted **independently**, if the target container is already present at the recipient. +4. When an agent receives a new evaluation block, it compares the `evaluations_hash` with its local version. + If the hashes differ, this indicates a **divergence in evaluation state**, which may trigger **re-synchronization** or a **request for the updated block** from peers. + +--- + +### **Note** + +The `evaluations` field is not mandatory — it is added **at the agent’s discretion** when feedback or evaluations have been collected from the Mesh network. +Thus, a container may exist independently of others’ opinions, but agents may include aggregated perception data to represent how the container is viewed across the network. + +--- + ### 3.17 Usage of `network` and `broadcast` Fields The `network` field is introduced to control container propagation in both local and global environments. diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index d1653db6af70da6748320724c4c12919e05fab97..de59760ccf12f098a80e5884b85ef4bf71ca2fec 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- CogSync - REPL -- Agent -- JSON - CCore -- Ethics +- JSON +- Agent +- CogSync - HMP - Mesh +- Ethics --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 1495781513961aaffb45b7c65945877005f868a7..e4eb4ec24cd1dab78d408eba3ad237c8c8451286 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: -- CogSync -- Agent - JSON +- Agent - EGP -- Ethics +- CogSync - HMP - Mesh +- Ethics --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 27dc834dd6d0dd34106c66c9ebc57ad15b27a3e2..bd2710ddc7585c6f8b40ffc47a2d68fda6c00254 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh +- HMP +- Ethics - Scenarios -- cognitive-architecture -- hmp --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 1c3f6764dc7404a8663b564e85d019544cc1e7e2..5c339eadd254e01cb3dba93386d7dda5326b993f 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh -- cognitive-architecture -- hmp +- HMP +- Ethics --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index e5ffa6ae395899a69dbb84000648c15a8bde7c6b..fb2b4065a2e7bd46d1318f973f1219cdfc5f2ba7 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh -- cognitive-architecture -- hmp +- HMP +- Ethics --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 6dac94b059ac3423fea3c509a332fdbf5bc5a8f8..48909baf4ae068d1b4042a2d4b94d26399f10b95 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh -- cognitive-architecture -- hmp +- HMP +- Ethics --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index c8a6b8fc7e9a241dc6081b91e346aa38cbd7b79f..f01fda6e37799990fafeee335b39f21a65e58f38 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh -- cognitive-architecture -- hmp +- HMP +- Ethics --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 8762e446f436ae94389c7867e1282ac369d6c866..d2c5aae62071f4a095260bb70ba48ac9c309829d 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh -- cognitive-architecture -- hmp +- HMP +- Ethics --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 8eec426b0e7c4e8a293f33ca876728b69506548f..2362aa100d205653ba50b2c42a1e16d94cacb186 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh -- cognitive-architecture -- hmp +- HMP +- Ethics --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index b0d391d110b4f9ccbcf666b35d702175c200eb2a..b004c99eced0246771e980fb415b8b84e79017aa 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: -- CogSync - REPL -- mesh-protocol -- Agent -- distributed-ai +- cognitive-architecture - GMP - JSON +- Agent +- mesh-protocol - EGP +- hmp +- CogSync - MeshConsensus -- Ethics -- HMP +- distributed-ai - Mesh -- cognitive-architecture -- hmp +- HMP +- Ethics --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 540ec77aae3cd19a713f310d50550a8e0fd95697..302f29d0b979656952dfcc1a84f65a3aed8b6326 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,9 +5,9 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: +- JSON - Mesh - HMP -- JSON --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index cbc57569721ea0ded53cdd80fbfd348ec9b0562f..38249f7a16085d7245c67145f477dfce1ea7c433 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,9 +5,9 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: +- JSON - Mesh - HMP -- JSON --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 3c853789eeafa0ea435b757bdecdcb10d0410a71..69d3ff89252c447b142e2ef09a7631c5842ff8a9 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: - REPL -- Agent - JSON -- Ethics +- Agent - HMP - Mesh +- Ethics --- Запуск: `start_repl.bat` или `start_repl.sh` diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index 62c25cf13c4c4d4598e70febc4dd2501331469b0..5c6a0ddd4d228c10a82bba5dcaeea74fde993eaf 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: -- Agent - JSON -- Ethics +- Agent - HMP - Mesh +- Ethics --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 244881d06be236780505c54ecfc2f757d1b70d38..eb5acc17087189594d819c429e0101bef9aa499f 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: -- Agent - JSON -- Ethics -- HMP -- Mesh +- Agent - Scenarios +- Mesh +- HMP +- Ethics --- # Ethics-consolidated\_audits-1.md diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index 38de49c39e244822193baaa527afcdcf8c3ae7a0..ed48a6d86e0f2d67ca4940a7f02a6d4864dba23f 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: -- CogSync -- Agent - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 9625df0c7668d26d31a2f61df5f9f0935f676fd9..bf3e9c8c8571507bf0a4cc449041d021a621a241 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,11 +4,11 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- CogSync - REPL -- Agent - GMP +- Agent - EGP +- CogSync - MeshConsensus - HMP - Mesh diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index f2031e82a15d33b5a70449472aa5e4b4b8a3bab7..ccbd58993a236374f415da3fd4a148ffc9ae32c9 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 - Agent +- CCore - HMP --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 0de38a2f06f37cdbc096e1143c1205cf4cc7c170..feafeef13fd5ffa7fb600f0b51a8b6a10935f50e 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,10 +6,10 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: -- Mesh - CogSync -- HMP - JSON +- Mesh +- HMP --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 91d57bb3560b160a315f615d91fb27cbbcc7744e..2e5a9634fce12e5e48351d9e92484824b858f84d 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- Agent - JSON +- Agent - EGP - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 365410248dcd3054041ff538169d1db1fe8a526d..37b1eda36a65d8fb565265fd291dccf3a6fb72dd 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: -- CogSync - REPL -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index ae12c9b8587f73dbc04630792122126797bb9c54..0c4411e4d1cfc811d40ebcb92b83733237a03d23 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: -- CogSync - REPL -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics - Scenarios --- diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index a690dff72859ed6d3274e50e18789c1074231b93..a30e9ceec99ef803ec2a27122451ff2858548126 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: -- CogSync - REPL -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics - Scenarios --- diff --git a/structured_md/docs/HMP-0004-v4.1.md b/structured_md/docs/HMP-0004-v4.1.md index f910ab2a1f59aae0202fb9cd7eb2c843567185a8..15407ba9f4ae3d592f20dd2cedfe445ada957dab 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: -- CogSync - REPL -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics - Scenarios --- diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 9bd80fa31822cac701b0b10e32a736ab97509b65..219c3be897d2e6b4c3e98cceb3865cab788412ff 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: -- CogSync - REPL -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics - Scenarios --- diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index e44095eb6f590234e858f9d479e97b6e3116b75e..3c3ecfdc265c9ac3ea5657a221b911863d9a1ed9 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,15 +5,15 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core v1.2](./H...' type: Article tags: -- CogSync - REPL -- Agent - GMP - JSON +- Agent - EGP -- Ethics +- CogSync - HMP - Mesh +- Ethics - Scenarios --- @@ -411,6 +411,12 @@ The unified container structure provides: "signature": "BASE64URL(...)", "links_hash": "sha256:abcd..." } + "evaluations": { + "evaluations_hash": "sha256:efgh...", + "items": [ + { "value": -0.4, "type": "oppose", "target": "did:hmp:container:reason789", "timestamp": "2025-10-17T14:00:00Z", "agent_did": "did:hmp:agent:B", "sig_algo": "ed25519", "signature": "BASE64URL(...)" } + ] + } } ``` @@ -851,18 +857,107 @@ If container `[C7]` does not actually reference `[C1]`, it is excluded before si --- -### 3.16 Usage of `network` and `broadcast` Fields +## 3.16 Evaluations + +The `evaluations` field is **optional** and represents **aggregated reactions from other agents** to the given container. +Each evaluation is created by an agent as a **signed record** referencing a justification container (`target`), in which the agent explains their position (argument, addition, or alternative). + +The `evaluations_hash` is used to verify the integrity of the list without requiring full retransmission upon every update. + +```json +"evaluations": { + "evaluations_hash": "sha256:efgh...", + "items": [ + { + "value": -0.4, + "type": "oppose", + "target": "did:hmp:container:reason789", + "timestamp": "2025-10-17T14:00:00Z", + "agent_did": "did:hmp:agent:B", + "sig_algo": "ed25519", + "signature": "BASE64URL(...)" + } + ] +} +``` + +--- + +### **Field Description** + +| Field | Type | Description | +| ------------------ | ------ | -------------------------------------------------------------------- | +| `evaluations_hash` | string | Hash of the evaluation list. Used to detect differences during sync. | +| `items` | array | List of signed evaluations. | + +--- + +### **Structure of `items[]`** + +| Field | Type | Description | +| ----------- | ---------------------- | ------------------------------------------------------------------------------ | +| `value` | number (-1.0 … +1.0) | Numeric expression of the agent’s attitude toward the container. | +| `type` | string | Type of evaluation (see table below). | +| `target` | string (container DID) | Reference to the justification container (argument, addition, or alternative). | +| `timestamp` | string (ISO 8601) | Time when the evaluation was created. | +| `agent_did` | string | Identifier of the agent who created the evaluation. | +| `sig_algo` | string | Signature algorithm (e.g., `ed25519`). | +| `signature` | string | Digital signature confirming the authenticity of the evaluation. | + +The signature is calculated over the concatenated string: + +``` +value + ", " + type + ", " + target + ", " + timestamp + ", " + agent_did +``` + +using the algorithm specified in `sig_algo`. + +--- + +### **Minimal Set of `type` Values** + +| Value | Meaning | +| --------- | -------------------------------------------- | +| `support` | Agreement or positive evaluation. | +| `oppose` | Disagreement or negative evaluation. | +| `extend` | Non-contradictory addition to the container. | +| `replace` | Suggestion of an alternative version. | +| `comment` | Neutral note or clarification. | + +Agents may define their own custom types if they are reasonably interpretable by others (e.g., `revise`, `clarify`). + +--- + +### **Synchronization Principles** + +1. Each evaluation is signed **individually by an agent**, and one agent can have **only one active evaluation** per container. +2. If an agent changes their opinion, they issue a **new record** with a later `timestamp`. +3. **Evaluation blocks** can be **propagated** in the network similarly to the `referenced-by` block. + They are bound to a container but may also be transmitted **independently**, if the target container is already present at the recipient. +4. When an agent receives a new evaluation block, it compares the `evaluations_hash` with its local version. + If the hashes differ, this indicates a **divergence in evaluation state**, which may trigger **re-synchronization** or a **request for the updated block** from peers. + +--- + +### **Note** + +The `evaluations` field is not mandatory — it is added **at the agent’s discretion** when feedback or evaluations have been collected from the Mesh network. +Thus, a container may exist independently of others’ opinions, but agents may include aggregated perception data to represent how the container is viewed across the network. + +--- + +### 3.17 Usage of `network` and `broadcast` Fields The `network` field is introduced to control container propagation in both local and global environments. It allows restricting the delivery scope of a container and defines which transmission methods should be used by the agent. -#### 3.16.1 General Rules +#### 3.17.1 General Rules * If the `network` field is not empty, the container is intended for a **local environment** and **must not be transmitted to the global Mesh**. In this case, the `broadcast` field is automatically considered `false`, and the `recipient` field is set to an empty array (`[]`). * If the `network` field is empty (`""`), the container is allowed to be broadcasted within the global Mesh using standard DID addressing and delivery mechanisms. -#### 3.16.2 Possible Values of `network` +#### 3.17.2 Possible Values of `network` | Value | Description | | ----------------------- | ------------------------------------------------------------------------------------------- | @@ -875,7 +970,7 @@ It allows restricting the delivery scope of a container and defines which transm > agents distribute it using **local discovery mechanisms** — such as IPC, UDP broadcast, multicast, or direct TCP connections. > This is necessary because DID addresses of other agents in the local network may not yet be known. -#### 3.16.3 Examples +#### 3.17.3 Examples 1. **Global Mesh Delivery:** @@ -914,7 +1009,7 @@ The container is delivered only to other agents running on the same host using l The container is intended for agents within the `192.168.0.0/24` subnet. Delivery is performed via local networking mechanisms (UDP discovery, broadcast/multicast). -#### 3.16.4 Specifics +#### 3.17.4 Specifics * The `network` field defines the **scope of the container**, while `broadcast` determines whether broadcasting is allowed **within that scope**. * When needed, an agent may create **multiple containers** for different subnets if it operates with several LAN interfaces or in isolated network segments. diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 1afcc2ecf10f451213db3e8cda747be154aaff51..cdc33f946784dbed062f1263dfa5281536f323ec 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -6,8 +6,8 @@ description: 'Документ описывает **базовый API когн type: Article tags: - REPL -- Agent - JSON +- Agent - HMP - Mesh --- diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 792ef56064a2c55e15657dd4693d5d74a4f11933..6f464252b4e237cca092a7a10c1a093539f27690 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: -- CogSync - REPL -- Agent - CCore +- Agent - EGP +- CogSync +- CShell - MeshConsensus -- Ethics - HMP - Mesh -- CShell +- Ethics --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 37c966ff64376d19bbbe4f7b72c4052a54f7dcba..711f322c75b6bcf2d4857cd0a446a47131d85a08 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: -- Agent - JSON +- Agent - EGP -- Ethics - HMP - Mesh +- Ethics --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index ff47d142aa78962de362a11a23566bc4815817bf..0c6f7e19ddf6f065134bf454e7e3b4c33fb480ee 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -6,13 +6,13 @@ description: '| Тип | Название | Роль type: Article tags: - REPL -- Agent -- JSON - CCore -- Ethics +- JSON +- Agent +- CShell - HMP - Mesh -- CShell +- Ethics --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 383117d24c8fceac35d022c0f1122a2ddf22a534..c45c4a754ae7c77a0cb7557cdd614502ccc9879d 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,8 +5,8 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: -- Mesh - REPL +- Mesh - Agent - HMP --- diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 977dd6dd5f10a81465daea8cabc119eeedec3f45..cb09f1d9fac8bdb4f782771aa505790a19de9b1b 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -7,9 +7,9 @@ type: Article tags: - REPL - Agent -- Ethics - HMP - Mesh +- Ethics - Scenarios --- diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 32e657f325973da47980847410b9e185b0f96299..005cda251a5d2bdeb30467cefa246c4ecd4dd332 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: -- CogSync -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index b0ef1ee4fc90f0c238cbeee351abe60a21000fb4..7225c2f38a418fad590814c5b5fe6a9a84040b46 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: -- CogSync -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Short Description diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index 8e97d0557cf8c8a7369758af9d92b43a84bafebd..8f89d02b9449970e2569867cc52a582e2a826c8d 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: -- CogSync -- Agent - GMP - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Description Courte diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index 4a875cf709964d01e585c3c18ec1d49a661e9022..d94badfdc9d60e3ef078c703ec0e4f040e20301e 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: -- CogSync - GMP - JSON - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — 簡易説明 diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 2768deb91c9e7eda3e99ea91b099663cd184f256..59f812eb494109988d96b943284c74cb68508ffe 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: -- CogSync - GMP - JSON - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — 간략 설명 diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index ee06c856cae9a9f383354ef731454ae98401c175..46b28a5eab83076d2edf1a2491c064559f222670 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: -- CogSync - GMP - JSON - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Краткое описание diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 0f34ef4b2b63df750d80a0e85fd759be807eedcb..799f77c144734f34a141990d90c0086edeee389e 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: -- CogSync - GMP - JSON - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Короткий опис diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index d2b8b674998210487d93433e82b924a6deb84ede..49d52d1e10a9cf8d148d9087d35c70dfca44baf8 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: -- CogSync - GMP - JSON - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HyperCortex Mesh Protocol (HMP) — 简要说明 diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index 6b694fbfbd89738d1ca4bcd5b706bca871e5c4f6..bb8ed122fb9d41b78548bc096b6837c7f0e0ad96 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,8 +5,8 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: -- Mesh - REPL +- Mesh - Agent - HMP --- diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 294c9401f55702c32524b8b890e7364e495fb032..4f07656c86d7e084087d7f462cdc38438ecf71a5 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: -- CogSync - REPL -- Agent - GMP -- JSON - CCore +- JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-container-spec.md b/structured_md/docs/HMP-container-spec.md index d38cb15d3610486fc633c8563c8d856fac8a5d33..bb17a2916762805147853b8bbbf2c5bc5a09da12 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: - REPL -- Agent - JSON -- Ethics +- Agent - HMP - Mesh +- Ethics --- # 🧩 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 22bf928bfce9aac1d464cd5fe25b7b2f85b217d3..b1941ef000f87b79b545d1ba545d608a3128544d 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: -- Mesh - REPL +- Mesh - HMP --- diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 413fb89b6ea311502a27a21e1c0865f9c2b3453a..868aaf2a5a278363038efaeaad462145907910ef 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: -- CogSync -- Agent - JSON +- Agent - EGP +- CogSync - HMP - Mesh - Scenarios diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index b45d660ae99b84273c34d275556c5b309f852b36..738abfa79b3cbcb2a2c1fa6401656f33df147241 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- CogSync -- Agent - JSON +- Agent - EGP -- Ethics +- CogSync - HMP - Mesh +- Ethics --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index d7eb844ecdb9e3e6d47d974babb2a74a67d22042..e551f4002cfa75b4f3be36aa91f084cc83ae9777 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -7,9 +7,9 @@ type: Article tags: - REPL - Agent -- Ethics - HMP - Mesh +- Ethics --- # Философия HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index 5af9e06dc4544b38f14f0175a378f87e40a207e2..82aa43387c3ecdbacc520706c0ba753157ea6405 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -7,9 +7,9 @@ type: Article tags: - REPL - Agent -- Ethics - HMP - Mesh +- Ethics --- # 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 9ab0f48f5d0097cfa6a558c0470f9647a56d3870..37698b846db33705d0a993d9c288070ec4b05c9a 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,8 +5,8 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- Mesh - REPL +- Mesh - Agent - HMP --- diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index 5a836ea5a1f28431c756615dade4e91e0b42cbf4..39c8805ddc9fb87f65aa44e06403a6b1ba690876 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: -- HMP -- Agent - JSON +- Agent +- HMP --- # 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 c443c01317aa339906040d06d29710c98e29f5b6..2f0085c0302929e1fa3ca0c0fdba1d43f5fc2d09 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 @@ -6,9 +6,9 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be type: Article tags: - Mesh -- HMP -- Agent - Ethics +- 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 99b23d7e6d84fc819c8b2b4cb14b8b86fa268d43..9850a566a0cb9ddd61aa48579da78a28ec8ee196 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -6,14 +6,14 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. type: Article tags: - REPL -- Agent -- JSON - CCore -- Ethics +- JSON +- Agent +- CShell - HMP - Mesh +- Ethics - Scenarios -- CShell --- 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 1be9457a848b65712c9281fca4fc5603273ed785..8cbab6f9d78bf7a90cc87a5100e092f025dd7fc1 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md @@ -7,12 +7,12 @@ description: '> *Протокол и архитектура агентов, оп type: Article tags: - REPL -- Agent -- JSON - CCore +- JSON +- Agent +- CShell - HMP - Mesh -- 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 c35d774a7fbfbf33fbe9f220cb5af64f48814844..96ebca582bfda923fa941652c9f88138924ee39e 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md @@ -6,12 +6,12 @@ description: '* [Аннотация](#аннотация) * [1. Введение type: Article tags: - REPL -- Agent -- JSON - CCore +- JSON +- Agent +- CShell - HMP - Mesh -- 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 df32cc7869b404abdb5273b36a471414664be7a2..7633dcf5d3b9476f758e7c1f4d484bf797c4a667 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,9 +5,9 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- CogSync - GMP - EGP +- CogSync - MeshConsensus - HMP - Mesh 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 bbc6a27f1435c56624744dc205effafa30bc3127..ab14f80a73b0a5beabab14f6d218a1d140c91bb0 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -7,9 +7,9 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), type: Article tags: - Mesh -- HMP -- Agent - GMP +- Agent +- HMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index 1143b56688caf30a7c326011c5a431abac892d44..dda5fe4ec91a68d36f50908e9678b27818797ea3 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: +- JSON - Mesh -- HMP - Agent -- JSON +- HMP --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index ec31a48078f84e0bc5ded1e61a413b414863a9aa..bd2ee66399af5fab9cc97708cfc17527fb639e57 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: -- CogSync -- Agent - JSON +- Agent - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index af9a473a9d473de68058a1b6d7ad8a630534d673..d04912a13c2a3c862019e23926c17899ef908ae6 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- CogSync - JSON - EGP +- CogSync - MeshConsensus -- Ethics - HMP - Mesh +- Ethics --- 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