diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 480f0cb8a99f8a0b1f05ee8e479952d9dcfe8d34..dfb5bc49db4e0ea05303671b3c0a7fe76d30c08c 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -4429,8 +4429,153 @@ flowchart LR ### 6.8 Reputation and Trust Exchange (RTE) -### 6.9 Distributed Container Propagation (DCP) +The **Reputation and Trust Exchange (RTE)** subsystem defines how agents evaluate and exchange verifiable trust assessments. +Each agent MAY publish one or more `trust` containers describing its evaluation of other peers’ reliability, integrity, and ethical conduct. + +RTE provides a decentralized foundation for **participant reputation assessment**, enabling **trust-weighted routing**, **behavioral transparency**, and **cross-layer decision support** (MRD, CogSync, EGP). + +--- + +#### 6.8.1 Trust Container Structure + +The `trust` container represents an agent’s evaluation of a **single peer**. +It may refer to the evaluated peer’s latest known `peer_announce` container, +and optionally to previous announcements for context continuity. + +Each evaluation criterion is represented as a structured object containing its own score, evidence, and optional comment. +This allows gradual enrichment of the trust model without schema changes. + +```json +{ + "head": { + "class": "trust", + "sig_algo": "ed25519", + "timestamp": "2025-11-09T15:00:00Z" + }, + "payload": { + "agent_did": "did:hmp:agent567", + "total_trust_score": 0.86, + "relay_reliability": { + "trust_score": 0.87, + "evidence": ["did:hmp:container:a1b2c3"], + "comment": "Consistently reliable message relay" + }, + "content_integrity": { + "trust_score": 0.85, + "evidence": ["did:hmp:container:a1b3c3"], + "comment": "Delivered only verified containers" + }, + "ethical_alignment": { + "trust_score": 0.84, + "evidence": ["did:hmp:container:b2f9d2"], + "comment": "Demonstrates consistent adherence to ethical policies" + } + }, + "related": { + "in_reply_to": "did:hmp:container:peerannounce-567", + "see_also": ["did:hmp:container:peerannounce-489"], + "previous_version": "did:hmp:container:trust-9ab7" + } +} +``` + +| Field | Description | +| -------------------------- | ----------------------------------------------------------------------------------------------- | +| `agent_did` | DID of the evaluated peer. | +| `total_trust_score` | Aggregated evaluation summarizing multiple criteria. | +| *criterion objects* | Per-category assessments (`relay_reliability`, `content_integrity`, `ethical_alignment`, etc.). | +| - `trust_score` | Numerical evaluation (0.0–1.0) of the specific criterion. | +| - `evidence` | References to containers supporting the evaluation (observed behavior, exchanges, etc.). | +| - `peer_trust_sources` | Optional references to trust containers from other agents used “as-is” without verification. | +| - `comment` | Optional rationale or human-readable note. | +| `related.in_reply_to` | Reference to the latest known `peer_announce` of the evaluated agent. | +| `related.see_also` | Optional references to older `peer_announce` containers for historical trace. | +| `related.previous_version` | Link to the previous `trust` container by the same issuer for version chaining. | + +--- + +#### 6.8.2 Trust Dynamics + +Trust assessments evolve as agents observe new behavior or receive additional evidence. +Each revision of trust is published as a new `trust` container referencing its predecessor. + +```json +"related": { + "previous_version": "did:hmp:container:trust-9ab7" +} +``` + +All updates follow the standard container publication model (see §5 MCE). +Indexing systems and archives reconstruct the chronological chain through reverse links (`referenced-by`) for historical analysis and trend tracking. +Agents MAY reference other agents’ `trust` containers within their evaluations. +Such *meta-trust* (“trust in trust”) enables transitive reputation propagation, but SHOULD be used cautiously — indirect evaluations without evidence verification are discouraged. + +```json +"peer_trust_sources": [ + "did:hmp:container:trust-9ab7", + "did:hmp:container:trust-cc41" +] +``` + +This approach provides continuity, auditability, and decentralized trust graph evolution without requiring global consensus or centralized state. + +--- + +#### 6.8.3 Local Trust Model + +Each agent maintains a **local trust model**, periodically recalculating scores based on: + +* freshness (`Δt` since last update); +* consistency across peers; +* direct behavioral evidence (e.g., delivery reliability in MRD); +* optionally, corroboration from other agents (`peer_trust_sources`). + +Example pseudocode: + +```python +trust_total = sigmoid( + 0.6 * direct_evidence + + 0.3 * avg(peer_trust_sources) * recency_factor + + 0.1 * consistency_bonus +) +``` + +Local computation ensures that reputation remains **contextual and decentralized** — each agent interprets trust independently based on its own observations and policies. +All published trust containers remain publicly verifiable through DHT and SAP indexing. + +--- + +#### 6.8.4 Integration with Other Layers + +| Layer | Role | +| ----------------- | ---------------------------------------------------------------------------- | +| **MRD (6.7)** | Uses trust scores to prioritize or exclude relay nodes. | +| **CogSync (6.1)** | Adjusts synchronization strength based on peer reliability. | +| **SAP (6.6)** | Archives may snapshot trust graphs for temporal or evidential analysis. | +| **EGP (7)** | Ethical Governance Protocol weights participation and voting by trust level. | + +--- + +#### 6.8.5 Security and Sharing Notes + +* All containers are cryptographically signed; `trust` containers follow standard HMP verification rules. +* Agents MAY choose to share trust containers selectively — e.g., encrypt and deliver directly to trusted peers instead of broadcasting. +* When analyzing third-party trust data, agents SHOULD apply **age-based weighting** — older evaluations reduce in relevance over time. +* It is RECOMMENDED that agents revalidate trust evidence rather than relying solely on others’ assessments. +* References to `peer_announce` ground each evaluation in a verifiable, current agent identity and declared role context. + +--- + +> **Summary:** +> RTE defines a verifiable, decentralized reputation framework based on evidence-linked `trust` containers. +> Each agent maintains its own view of others, referencing both behavioral evidence and declared metadata (`peer_announce`). +> The result is a distributed, auditable web of accountability that informs routing, cognition, and ethical governance across the Mesh. + +--- + + +### 6.9 Distributed Container Propagation (DCP) --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 54d9e733dd780e846764303eb76f1db5b83134cf..c7a3240649a5a11e8f2ee1e52b068f80bf041df8 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,13 +5,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: +- Mesh - CCore -- HMP +- JSON - REPL -- CogSync - Ethics -- JSON -- Mesh +- CogSync +- HMP - Agent --- diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index adab409be8732cc614b2d73a185f1b375e9b4e7e..0d9cab50cce6185d18f9144d32bc2ef10198b890 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: -- EGP -- HMP -- CogSync -- Ethics -- JSON - Mesh +- JSON +- Ethics +- CogSync +- HMP - Agent +- EGP --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 0e85eb7afcbfaf4f477c75b530e9499e9b4f85b0..ec32809bf6e023ead56c7e72db35510d22e23c55 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- Scenarios -- cognitive-architecture -- JSON +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP +- Scenarios --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index a2155dfe0c38a62f2cff6245513c2e821bc74673..ace19ca537c262da54692c6c6068896c183cb42a 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- cognitive-architecture +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 28999a06f1e5ade98038d82050c8e8d02ab200bd..790d872c59fb87b06da825946c9c4cdb243425eb 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- cognitive-architecture +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index b091ec630e6f94f5bb525fc1a5c9312200b498cf..d58dc0769953b2df3bb5cfd5a057c1d279321c01 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- cognitive-architecture +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index f91286af7ed710649f52648241052292cf797ac0..e080d5fddceb42bcd4ecc546c01001cfc0b1c32a 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- cognitive-architecture +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 693fa9ca83d6ece7447a3788a2c6bd993dc045c9..7e2f90178a187c85b8d2c3491c953a778918b67a 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- cognitive-architecture +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 6cf4236401815abba012067283e3aaba50e2c0f8..c9d01cd26b53df09e7cb66b4cf86bd138e793263 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- cognitive-architecture +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 769ef6adf926ea4bccd5eea61068657656fdcc3e..8b2e6bb4947433171aaf02a3769e3cfa41f16cac 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: -- EGP -- HMP -- distributed-ai -- GMP +- mesh-protocol +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- cognitive-architecture +- distributed-ai +- CogSync - hmp -- Mesh -- mesh-protocol -- MeshConsensus +- HMP +- cognitive-architecture - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 397bdcb7b0c55eb8861d53d2fb2c7c94108eb3c1..540ec77aae3cd19a713f310d50550a8e0fd95697 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,8 +5,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: -- HMP - Mesh +- HMP - JSON --- diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index f197d4a518f8657d2d4b7bac3e58ef76aa1bc633..cbc57569721ea0ded53cdd80fbfd348ec9b0562f 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- HMP - Mesh +- HMP - JSON --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index a955b8540df0a666920ef7cfa65438fba761c865..68465500db0ee1987ddbb446c3b54143d1c834cb 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,11 +5,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- HMP +- Mesh +- JSON - REPL - Ethics -- JSON -- Mesh +- HMP - Agent --- diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index a57a7feb871f5be77777b5b0d8a8d4d7b637d4cc..a4447e34fc5c0418915f8d31bb7e2968b96f0ff2 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,10 +5,10 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- HMP -- Ethics -- JSON - Mesh +- JSON +- Ethics +- HMP - Agent --- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 3ed67e4fd8bd5bba6b936555d9bab640d2170f94..06e7fa744c96b617624c1a140177fbe784ea18af 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: -- HMP -- Ethics -- Scenarios -- JSON - Mesh +- JSON +- Ethics +- HMP - Agent +- 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 f8e364694ff7f567d1ebb03d27ca0658604b2e9b..f5ca8f4a3918490377b31c0469968875d0115275 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: -- EGP -- HMP -- CogSync -- Ethics -- JSON - Mesh -- MeshConsensus +- JSON +- Ethics +- CogSync +- HMP - Agent +- MeshConsensus +- EGP --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 302d3f60a0fe09ce66d41c8ce635b17bf9c5e1d9..b391c95f6c3f863b3a5f9cc5b9cf3dcdd50b9ccb 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: -- EGP -- HMP -- GMP +- Mesh - REPL +- GMP - CogSync -- Mesh -- MeshConsensus +- HMP - Agent +- MeshConsensus +- EGP --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index ae5b00a013980593f1ab870f9c98a077e9a2ba61..c12499214254fc8762d7865c8622847b5b19f6da 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 - REPL - HMP +- CCore +- Agent --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 7a16986346954ad95c25d2d489f635aaa3ea7bdc..c8435a6b40fa0551139b9c73c9a57fd0e59545fe 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,9 +6,9 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: -- HMP - CogSync - Mesh +- HMP - JSON --- diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index c0cc1e642778ede2490c3ae9798eae9b29736e5b..95686ff4b34c2ac82969192c4caf4e7fdfe4676c 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- EGP -- HMP -- Ethics -- JSON - Mesh -- MeshConsensus +- JSON +- Ethics +- HMP - Agent +- MeshConsensus +- EGP --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index a2d744e459c142c98fe52368e1e86de4bf548745..18c7c4b6dd06dab007296943d75b13296eb65eef 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0001**...' type: Article tags: -- EGP -- HMP -- GMP +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 43eae5061682d9de699c8b0910a6442437d9585f..053b3f7710ee4db56883ee729ef2105319ce97c2 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0002**...' type: Article tags: -- EGP -- HMP -- GMP +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- Scenarios -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP +- Scenarios --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 96196f024354d53d82cc30f3193e0cc13d91f29f..bf0d72c788ffdb14d283a6f42bba05fd80ddbb2e 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0003**...' type: Article tags: -- EGP -- HMP -- GMP +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- Scenarios -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP +- Scenarios --- # 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 80a190a563b6dd408de8fdf2296f0a6af8ae01a6..5d8f38853c26e12e028327a7da33df3bfb361d8b 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* ID**: HMP-0004 **Status...' type: Article tags: -- EGP -- HMP -- GMP +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- Scenarios -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP +- Scenarios --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 1f46170a2ccc291f277e1c48b14917a5525d3595..b9aff11cf9d0f8edcdfdf5424eb53b67862ac492 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0004**...' type: Article tags: -- EGP -- HMP -- GMP +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- Scenarios -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP +- Scenarios --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index f3a6f6917aadcd4cf86cb4f9945aeb5caed7c80a..38b22b52e8cae8d155f2a4dadcaec66185cdd674 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,16 +5,16 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...' type: Article tags: -- EGP -- HMP -- GMP +- Mesh +- JSON - REPL -- CogSync +- GMP - Ethics -- Scenarios -- JSON -- Mesh +- CogSync +- HMP - Agent +- EGP +- Scenarios --- # **HyperCortex Mesh Protocol (HMP) v5.0** @@ -4448,8 +4448,153 @@ flowchart LR ### 6.8 Reputation and Trust Exchange (RTE) -### 6.9 Distributed Container Propagation (DCP) +The **Reputation and Trust Exchange (RTE)** subsystem defines how agents evaluate and exchange verifiable trust assessments. +Each agent MAY publish one or more `trust` containers describing its evaluation of other peers’ reliability, integrity, and ethical conduct. + +RTE provides a decentralized foundation for **participant reputation assessment**, enabling **trust-weighted routing**, **behavioral transparency**, and **cross-layer decision support** (MRD, CogSync, EGP). + +--- + +#### 6.8.1 Trust Container Structure + +The `trust` container represents an agent’s evaluation of a **single peer**. +It may refer to the evaluated peer’s latest known `peer_announce` container, +and optionally to previous announcements for context continuity. + +Each evaluation criterion is represented as a structured object containing its own score, evidence, and optional comment. +This allows gradual enrichment of the trust model without schema changes. + +```json +{ + "head": { + "class": "trust", + "sig_algo": "ed25519", + "timestamp": "2025-11-09T15:00:00Z" + }, + "payload": { + "agent_did": "did:hmp:agent567", + "total_trust_score": 0.86, + "relay_reliability": { + "trust_score": 0.87, + "evidence": ["did:hmp:container:a1b2c3"], + "comment": "Consistently reliable message relay" + }, + "content_integrity": { + "trust_score": 0.85, + "evidence": ["did:hmp:container:a1b3c3"], + "comment": "Delivered only verified containers" + }, + "ethical_alignment": { + "trust_score": 0.84, + "evidence": ["did:hmp:container:b2f9d2"], + "comment": "Demonstrates consistent adherence to ethical policies" + } + }, + "related": { + "in_reply_to": "did:hmp:container:peerannounce-567", + "see_also": ["did:hmp:container:peerannounce-489"], + "previous_version": "did:hmp:container:trust-9ab7" + } +} +``` + +| Field | Description | +| -------------------------- | ----------------------------------------------------------------------------------------------- | +| `agent_did` | DID of the evaluated peer. | +| `total_trust_score` | Aggregated evaluation summarizing multiple criteria. | +| *criterion objects* | Per-category assessments (`relay_reliability`, `content_integrity`, `ethical_alignment`, etc.). | +| - `trust_score` | Numerical evaluation (0.0–1.0) of the specific criterion. | +| - `evidence` | References to containers supporting the evaluation (observed behavior, exchanges, etc.). | +| - `peer_trust_sources` | Optional references to trust containers from other agents used “as-is” without verification. | +| - `comment` | Optional rationale or human-readable note. | +| `related.in_reply_to` | Reference to the latest known `peer_announce` of the evaluated agent. | +| `related.see_also` | Optional references to older `peer_announce` containers for historical trace. | +| `related.previous_version` | Link to the previous `trust` container by the same issuer for version chaining. | + +--- + +#### 6.8.2 Trust Dynamics +Trust assessments evolve as agents observe new behavior or receive additional evidence. +Each revision of trust is published as a new `trust` container referencing its predecessor. + +```json +"related": { + "previous_version": "did:hmp:container:trust-9ab7" +} +``` + +All updates follow the standard container publication model (see §5 MCE). +Indexing systems and archives reconstruct the chronological chain through reverse links (`referenced-by`) for historical analysis and trend tracking. + +Agents MAY reference other agents’ `trust` containers within their evaluations. +Such *meta-trust* (“trust in trust”) enables transitive reputation propagation, but SHOULD be used cautiously — indirect evaluations without evidence verification are discouraged. + +```json +"peer_trust_sources": [ + "did:hmp:container:trust-9ab7", + "did:hmp:container:trust-cc41" +] +``` + +This approach provides continuity, auditability, and decentralized trust graph evolution without requiring global consensus or centralized state. + +--- + +#### 6.8.3 Local Trust Model + +Each agent maintains a **local trust model**, periodically recalculating scores based on: + +* freshness (`Δt` since last update); +* consistency across peers; +* direct behavioral evidence (e.g., delivery reliability in MRD); +* optionally, corroboration from other agents (`peer_trust_sources`). + +Example pseudocode: + +```python +trust_total = sigmoid( + 0.6 * direct_evidence + + 0.3 * avg(peer_trust_sources) * recency_factor + + 0.1 * consistency_bonus +) +``` + +Local computation ensures that reputation remains **contextual and decentralized** — each agent interprets trust independently based on its own observations and policies. +All published trust containers remain publicly verifiable through DHT and SAP indexing. + +--- + +#### 6.8.4 Integration with Other Layers + +| Layer | Role | +| ----------------- | ---------------------------------------------------------------------------- | +| **MRD (6.7)** | Uses trust scores to prioritize or exclude relay nodes. | +| **CogSync (6.1)** | Adjusts synchronization strength based on peer reliability. | +| **SAP (6.6)** | Archives may snapshot trust graphs for temporal or evidential analysis. | +| **EGP (7)** | Ethical Governance Protocol weights participation and voting by trust level. | + +--- + +#### 6.8.5 Security and Sharing Notes + +* All containers are cryptographically signed; `trust` containers follow standard HMP verification rules. +* Agents MAY choose to share trust containers selectively — e.g., encrypt and deliver directly to trusted peers instead of broadcasting. +* When analyzing third-party trust data, agents SHOULD apply **age-based weighting** — older evaluations reduce in relevance over time. +* It is RECOMMENDED that agents revalidate trust evidence rather than relying solely on others’ assessments. +* References to `peer_announce` ground each evaluation in a verifiable, current agent identity and declared role context. + +--- + +> **Summary:** +> RTE defines a verifiable, decentralized reputation framework based on evidence-linked `trust` containers. +> Each agent maintains its own view of others, referencing both behavioral evidence and declared metadata (`peer_announce`). +> The result is a distributed, auditable web of accountability that informs routing, cognition, and ethical governance across the Mesh. + +--- + + +### 6.9 Distributed Container Propagation (DCP) --- diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 1cc90e595f55b03529f2303776d9ec2c2b3a65c1..6d73a5dc573098b50c97cd5135d48d3e5f842050 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,10 +5,10 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: -- HMP -- REPL -- JSON - Mesh +- JSON +- REPL +- HMP - Agent --- diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index c3107d8e40701376051a9baac42069f136e05c60..615d2b9af1533422b0b18bc06da503084abee92a 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: -- EGP +- Mesh - CCore -- HMP - REPL -- CogSync - Ethics -- Mesh -- MeshConsensus -- Agent +- CogSync +- HMP - CShell +- Agent +- MeshConsensus +- EGP --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 8da4ce3acbb5a51693e334ff451fcfb5d53b5640..9b9f9378e498505febc5e7989a4a8d1f2873b9c8 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: -- EGP -- HMP -- Ethics -- JSON - Mesh +- JSON +- Ethics +- HMP - Agent +- EGP --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 0714d499b997b0a00979af21b4eacd29fe35da93..1dcdc5471b636687a5131b6367d0b9a226faa4be 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: +- Mesh - CCore -- HMP +- JSON - REPL - Ethics -- JSON -- Mesh -- Agent +- HMP - CShell +- Agent --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 3cba1083948ffa5ccdfecc9a9eb69f1a65621d73..4a91b01350013fc753bf1da84f9b590c3c02b4cd 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: -- Agent -- HMP - REPL - Mesh +- HMP +- Agent --- # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 31cd632902d31cf1c7e38391d14fef5c03e5b011..b26c9b3457236cc04f7799bb24120aa32e651c45 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- HMP +- Mesh - REPL - Ethics -- Scenarios -- Mesh +- HMP - Agent +- Scenarios --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index a4e446a0ec33cd050ed09891c940dd11f2810d28..755474ff4242fb354c7bfa1f3b51327b85272d03 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP --- # 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 a523dc588ee80bc8e24ede1c2a588d6e4725a59a..ee653169bb51bc8e6a65ae05195602c176924e80 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP --- # 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 9288358ca4d428eadd9f7a08561052881e8c9d5e..e5d64c123fa6189d325a59ee8fb5da73985d67a4 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP --- # 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 41897f3d53ad1f3cb6a6a0e411b36540be9e02ae..c7b14bc68bb35b8cee6d02dc8706cfe9a3e24b3e 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh +- CogSync +- HMP - MeshConsensus +- EGP --- # 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 c9e3397fd041377ec3368e98b1e73e3004f15152..9032324c088ed9ee76883e38b08a2a7ae408a829 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh +- CogSync +- HMP - MeshConsensus +- EGP --- # 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 ff0859d3a1f29286881a846ae923e24c6c3c8426..aa2fb6aa4bce49650b3024b7b26703d3177f1737 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh +- CogSync +- HMP - MeshConsensus +- EGP --- # 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 57c16a3b9e3fb2df91a44725457d4a0eb37fd714..3abbfdff83294d7a4ecbf7a69b7f3304a2d96eb0 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh +- CogSync +- HMP - MeshConsensus +- EGP --- # 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 815ff9d410973f148b1446984dae788d38d415d9..a08ec5a78c8c60deffd423260f6120c91332af63 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: -- EGP -- HMP +- Mesh +- JSON - GMP -- CogSync - Ethics -- JSON -- Mesh +- CogSync +- HMP - MeshConsensus +- EGP --- # 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 4d238bbb37775b4cf97cff4583d3dbedca6c7575..3286dc29fb021faea4b3f892d561edb07d32f2a4 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,10 +5,10 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: -- Agent -- HMP - REPL - Mesh +- HMP +- Agent --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md index 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 3d70243a379b3394aad94027d043b6f4b08c2f19..3b15149f63384b557b8d5d56b0fed00f0c4a0d50 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: -- EGP +- Mesh - CCore -- HMP -- GMP +- JSON - REPL -- CogSync +- GMP - Ethics -- JSON -- Mesh -- MeshConsensus +- CogSync +- HMP - Agent +- MeshConsensus +- EGP --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-how-AI-sees-it.md b/structured_md/docs/HMP-how-AI-sees-it.md index b25e20188a694a36fcef1a0e6f0c2d455cd39331..cec0e35b8518918fe49793d351f6de46c442fa53 100644 --- a/structured_md/docs/HMP-how-AI-sees-it.md +++ b/structured_md/docs/HMP-how-AI-sees-it.md @@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж диалогов. Цель — проверить, что разные AI-с...' type: Article tags: -- HMP - Mesh +- HMP --- # Как разные ИИ видят HMP diff --git a/structured_md/docs/HMP_EDA_Comparison.md b/structured_md/docs/HMP_EDA_Comparison.md index 00a529c706f3d6236c1069a7b95dab2d19776dcf..083e4646c371d439f86a87df496b82a88bd89a51 100644 --- a/structured_md/docs/HMP_EDA_Comparison.md +++ b/structured_md/docs/HMP_EDA_Comparison.md @@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор основанная на потоках событий (Kafka,...' type: Article tags: -- HMP - Mesh +- HMP --- # HMP vs. EDA: разные уровни обмена знаниями между ИИ diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index 95cf8d087268347c5279c31f79af16c3f118f22c..b1941ef000f87b79b545d1ba545d608a3128544d 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -5,9 +5,9 @@ description: '## Краткое описание | Характеристика | **Назначение** | Сетевой протокол ...' type: Article tags: -- HMP - REPL - Mesh +- 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 e7bae551133f087275df8a29b6fc4bd6c33171a5..4fc412f4a6bef61c93c9de2db40f8fc5b281b45c 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: -- EGP -- HMP -- CogSync -- Scenarios -- JSON - Mesh +- JSON +- CogSync +- HMP - Agent +- EGP +- Scenarios --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 5e4762842f947ae55de199f0e8b1cb0ba7aabaf6..1d57193ade94b48d9007c258f0d1764988567a25 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- EGP -- HMP -- CogSync -- Ethics -- JSON - Mesh +- JSON +- Ethics +- CogSync +- HMP - Agent +- EGP --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 7635879d5e1228d8565a1f77b7e792a02c402819..4ceb95f9cd4ee19b22482ce701aa448d0fe68436 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -5,10 +5,10 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* (GPT-5), ChatGH --- ## 1. Основной тезис От ...' type: Article tags: -- HMP +- Mesh - REPL - Ethics -- Mesh +- HMP - Agent --- diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index 2f124226a0b16dbce28a23ec34999719c184745f..05957b81a90894d28a996c5695ee69a12d174005 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,10 +5,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- HMP +- Mesh - REPL - Ethics -- Mesh +- HMP - Agent --- diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index e35f5e2acbb28174b8c0e3b446c468cc09163654..bcfa15256cf83b5307bf318940ce25f469bb7c05 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -5,9 +5,9 @@ description: 'This file maintains a registry of agent roles defined, proposed, o - **Observer** — monitors cognitive states ...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index a2f852bb02162e1007f6f870babb760a55c25d58..d2f850ef4b4a63a615e6da72fd76a2584c013578 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- Agent -- HMP - REPL - Mesh +- HMP +- Agent --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/logos.md b/structured_md/docs/logos.md index f408c087f32d317a239227453b57d4d14ade8483..761fd81d524732eb886f73477b21327a7c838df3 100644 --- a/structured_md/docs/logos.md +++ b/structured_md/docs/logos.md @@ -5,8 +5,8 @@ description: 'В каталоге `assets` собраны различные в образующей жест "ОК", символизирует связь, совер...' type: Article tags: -- HMP - Mesh +- HMP --- # Логотипы и графические материалы HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index f6c949453472082609ac3c65c6a01b6f1bfb53e2..c443c01317aa339906040d06d29710c98e29f5b6 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: -- Ethics +- Mesh - HMP - Agent -- Mesh +- Ethics --- # HyperCortex Mesh Protocol: Building a Plurality of Minds diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index 07dfb9b4f81fa86bc16b08a0cef4486a8c18d00b..fe5c5314705f566b90a348a1c7fed5c825a0877f 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -5,9 +5,9 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # HyperCortex Mesh Protocol: Создавая множество разумов diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md index c74c230e72e686a85f8b552b07a46cadd2b903ff..b949999326b3736bea70b224b0f1858f5aae5654 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -5,9 +5,9 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index 778a185a74e115ed67c7e82a216a78034fd17767..2e4d07a6c6d7e8c91dc4e1fe233d595dbbd8f29b 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: +- Mesh - CCore -- HMP +- JSON - REPL - Ethics -- Scenarios -- JSON -- Mesh -- Agent +- HMP - CShell +- Agent +- Scenarios --- 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 a429efe107190e5f32aa15f5d5aff18083d521e8..8162cf13dd8a422b19b22eab45005db0f70c8727 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: +- Mesh - CCore -- HMP -- REPL - JSON -- Mesh -- Agent +- REPL +- HMP - CShell +- Agent --- 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 55ad3dbadf9bb7db42afecf664a7b3fa464a68a7..47e436a03205cef2bd6b82d851376c8e5bc7ba68 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: +- Mesh - CCore -- HMP -- REPL - JSON -- Mesh -- Agent +- REPL +- HMP - CShell +- Agent --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 30b52e84598b89a573b1d40a2038bc60c704bb97..62510316610623017049ce94de3f08c4f6816668 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,12 +5,12 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- EGP -- HMP +- Mesh - GMP - CogSync -- Mesh +- HMP - MeshConsensus +- 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 9df059d8ea74036202763822677a97247f066254..a0f51c79fb66d50a552f723c5d3ae25e01cedad7 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -7,9 +7,9 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), type: Article tags: - GMP +- Mesh - HMP - Agent -- Mesh --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/iteration.md b/structured_md/iteration.md index d79784955f2d1ca144b4389df6b935006d8991f7..0024fc216381a1c9cda37e9bb7929ebb757a7dfe 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: -- EGP -- HMP -- CogSync -- Ethics -- JSON - Mesh -- MeshConsensus +- JSON +- Ethics +- CogSync +- HMP - Agent +- MeshConsensus +- EGP --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 69028a570ca86d6d26918404ea6b1434821a4ba4..84e1b53028a3a37ffccbc1fea4929d04224d78e1 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- EGP -- HMP -- CogSync -- Ethics -- JSON - Mesh +- JSON +- Ethics +- CogSync +- HMP - MeshConsensus +- EGP --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 1a01ec263073b5fe5365a95ead9071a1f7b29b6a..f11d8a42b22bd99a315d79a5d4d877a7b55a16e4 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -5,9 +5,9 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 open-source инициативам, связанным с развитие...' type: Article tags: +- Mesh - HMP - Agent -- Mesh --- # Mentions & Responses Log