diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 875372cb3f7dd9fb9399e5c52ac84165cde85340..f3b0ebb6c2ae7ec40dd24cfb94366caa90476153 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -858,7 +858,7 @@ It allows an agent or network node to understand the context of origin, dependen ```json "related": { "previous_version": "did:hmp:container:abc122", - "in_reply_to": "did:hmp:container:msg-77", + "in_reply_to": ["did:hmp:container:msg-77"], "see_also": ["did:hmp:container:ctx-31", "did:hmp:container:goal-953"], "depends_on": ["did:hmp:container:goal-953"], "extends": ["did:hmp:container:proto-01"], @@ -880,7 +880,7 @@ All relationships are considered *direct* — meaning they originate from the cu | Link Type | Meaning | | ------------------ | ------------------------------------------------------------------------- | | `previous_version` | Points to the previous version of this container. | -| `in_reply_to` | Indicates a response to the referenced container. | +| `in_reply_to` | Indicates a response to the referenced containers. | | `see_also` | Refers to related or contextual containers. | | `depends_on` | Depends on the contents of the referenced container (e.g., goal or data). | | `extends` | Expands or refines the referenced container. | @@ -6325,13 +6325,261 @@ More structured variants of `peer_announce`. --- -## **Appendices** +## Appendix A — JSON Examples -A. JSON Examples -B. Protocol stack diagrams -C. Glossary -D. Revision history -E. Contributors and acknowledgments +### Appendix A.1 — Minimal Valid HMP v5.0 Container + +This example illustrates a *fully valid* HMP v5.0 container that includes **all required fields** defined in Section 3.3 and no optional fields. +It represents the smallest structurally complete container that can circulate in the Mesh. + +#### Minimal JSON Example + +```json +{ + "head": { + "version": "1.2", + "class": "note", + "class_version": "1.0", + "class_id": "note_v1.0", + "container_did": "did:hmp:container:abc123", + "schema": "https://schema.hmp/v1/note_v1.0.json", + "sender_did": "did:hmp:agent:alice", + "timestamp": "2025-11-20T12:00:00Z", + "payload_hash": "sha256:3f7852a4e4adf74d61c6546ce0dc9d0b33cfc487a88fdbf4a458c5c442f57a92", + "sig_algo": "ed25519", + "signature": "BASE64URL_SIGNATURE", + "payload_type": "json" + }, + "payload": { + "text": "Hello, Mesh!" + } +} +``` + +--- + +#### Notes + +##### Required fields only + +This container intentionally includes *no optional blocks*: no `related`, `meta`, `evaluation`, `ttl`, `network`, compression, encryption, or auxiliary structures. + +##### Payload hash + +`payload_hash` is computed from the **decompressed** payload: + +``` +{"text":"Hello, Mesh!"} +``` + +using SHA-256. + +##### Signature + +`head.signature` contains a digital signature computed using the declared algorithm +(`ed25519` in this example) over the canonicalized container body, excluding the signature field itself. + +##### class, class_version, class_id, schema + +Even the smallest container must include the complete class identity triple and a schema reference. + +##### container_did is mandatory + +Every container in HMP v5.0 is a DID-addressable object. + +--- + + +### Appendix A.2 — Full Container Example (Complete Header, Meta, Relationships, Evaluations, Backlinks, Relay Chain) + +This appendix demonstrates a **complete HMP v5.0 container**, including: + +* mandatory fields, +* all major optional fields, +* meta block with abstraction & cognitive axes, +* extended relationship model, +* group recipients, +* evaluations block, +* virtual backlinks, +* relay-chain tracing. + +The example respects the canonical container structure: + +``` +{ + "hmp_container": { ...signed... }, + "referenced-by": { ... }, + "evaluations": { ... }, + "relay_chain": [ ... ] +} +``` + +--- + +#### A.2. Full JSON Example + +```json +{ + "hmp_container": { + "head": { + "version": "1.2", + "class": "knowledge_node", + "class_version": "1.0", + "class_id": "knowledge_node_v1.0", + "container_did": "did:hmp:container:kn-44bc22", + "schema": "https://schema.hmp/v1/knowledge_node_v1.0.json", + "sender_did": "did:hmp:agent:alice", + "timestamp": "2025-11-20T15:00:00Z", + "payload_hash": "sha256:aa1122ccefecc199f88aa91f76d03be5b12976e97f5d663cd4a01aa034ede22d", + "sig_algo": "ed25519", + "signature": "BASE64URL_SIGNATURE", + "payload_type": "json", + "ttl": "2025-11-27T15:00:00Z", + "broadcast": false, + "recipient": ["did:hmp:agent:bob"], + "key_recipient": "BASE58ENC_ENC_SYMM_KEY", + "group_recipient": [ + { + "recipient": "did:hmp:agent:carol", + "key_recipient": "BASE58_KEY_FOR_CAROL" + }, + { + "recipient": "did:hmp:agent:dave", + "key_recipient": "BASE58_KEY_FOR_DAVE" + } + ], + "tags": ["ethics", "analysis", "kg:l3"], + "confidence": 0.92, + "public_key": "BASE58_PUBKEY_ALICE", + "compression": "zstd", + "magnet_uri": "magnet:?xt=urn:hmp:kn-44bc22", + "network": "", + "subclass": "knowledge_node.abstracted", + "encryption_algo": "xchacha20poly1305" + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome", + "interpretation": "Derived from L3 technical analysis", + "workflow_entry": "did:hmp:container:workflow-4fbd1c", + "sources": [ + { + "type": "container", + "id": "did:hmp:container:fact-3abc2e", + "credibility": 0.87, + "weight": 0.6 + }, + { + "type": "resource", + "id": "doi:10.48550/arXiv.2410.0123", + "credibility": 0.83, + "weight": 0.3 + }, + { + "type": "isbn", + "id": "isbn:978-3-16-148410-0", + "credibility": 0.92, + "weight": 0.1 + } + ], + "abstraction": { + "agents_class": "Knowledge Genome", + "path": { + "L1": "did:hmp:container:abst-40af1c", + "L2": "did:hmp:container:abst-a7f0b3", + "L3": "did:hmp:container:abst-c91e0a" + } + }, + "axes": { + "agents_class": "Knowledge Genome", + "did:hmp:container:axis-40aa1c": 742, + "did:hmp:container:axis-40ab1c": 512, + "did:hmp:container:axis-43aa1c": 322, + "did:hmp:container:axis-40aa3d": 142, + "did:hmp:container:axis-40aa4f": 12, + "did:hmp:container:axis-45aa5f": 54, + "did:hmp:container:axis-45fb5f": 321 + } + }, + "payload": { + "title": "Abstract vector representation of ethical constraint cluster (L3)", + "summary": "This node represents a semantic abstraction derived from multiple L3-level reasoning entries.", + "embedding_ref": "did:hmp:container:emb-8822cd", + "confidence_interval": [0.78, 0.97] + }, + + "related": { + "previous_versions": "did:hmp:container:kn-44bc21", + "in_reply_to": ["did:hmp:container:msg-77"], + "see_also": [ + "did:hmp:container:ctx-31", + "did:hmp:container:goal-953" + ], + "depends_on": ["did:hmp:container:goal-953"], + "extends": ["did:hmp:container:proto-01"], + "contradicts": ["did:hmp:container:ethics-22"], + "hmp:depends_on": ["did:hmp:container:goal-953"], + "opencog:extends": ["did:oc:concept:122"] + } + }, + "referenced-by": { + "links": [ + { "type": "depends_on", "target": "did:hmp:container:abc123" }, + { "type": "see_also", "target": "did:hmp:container:def456" } + ], + "peer_did": "did:hmp:agent456", + "public_key": "BASE58_PUBKEY...", + "sig_algo": "ed25519", + "signature": "BASE64URL_SIG_REF_BY", + "referenced-by_hash": "sha256:bb22ccddeeff112233..." + }, + "evaluations": { + "evaluations_hash": "sha256:9988ccddeeff001122...", + "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_SIG_EVAL" + } + ] + }, + "relay_chain": [ + { + "relay_did": "did:hmp:agent:relayA", + "timestamp": "2025-11-20T15:00:02Z", + "sig_algo": "ed25519", + "public_key": "BASE58_PUBKEY_A", + "signature": "BASE64URL_SIG_A" + }, + { + "relay_did": "did:hmp:agent:relayB", + "timestamp": "2025-11-20T15:00:05Z", + "sig_algo": "ed25519", + "public_key": "BASE58_PUBKEY_B", + "signature": "BASE64URL_SIG_B" + } + ] +} +``` + +--- + +### A.3 Container classes — quick reference + short JSON samples +### A.4 Encrypted + compressed container +### A.5 Proof-chain example (workflow_entry → goal → vote → consensus_result) + +## Appendix B — Protocol Diagrams +### B.1 HMP Protocol Stack +### B.2 Container lifecycle diagram +### B.3 Proof-chain topology + +## Appendix C — Glossary + +## Appendix D — Revision History --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index b3b20a3526ad89438023a334a40b5fbfbc1ceed8..13c89842127ef59509d0ae95adfb0fcccfeced6f 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- JSON -- REPL -- Ethics -- CCore -- HMP - Agent - Mesh +- CCore +- REPL - CogSync +- JSON +- Ethics +- HMP --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index a6d618afdbeb7cdc0d5f4eee0cc855b321cf6889..5421f60873bbea3b91becb6eb9e7bc40ae443c02 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: -- JSON -- Ethics -- HMP - Agent - Mesh - CogSync +- JSON - EGP +- Ethics +- HMP --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index ce7ddab868657c60c7624def479cfbde97ab6080..233df97bdbc9cb4ab7ea5d003054469bbf8622ac 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: -- JSON +- Scenarios +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Scenarios -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 2d18027e979140d2c6903fb5c0a838afc7577348..27969d3e321937a45a4951528f3e3d5ef1930405 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: -- JSON +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 53c32836ad36f027ce4cccc77042a49fb95147c5..c6af3d29aba1cd0f164d720806943ce67af3436b 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: -- JSON +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 543f2d6b0221a7ef0729a243e9ccfbe7e4dcee90..f3a78dab82eacb363e519874b808ade71ac1225f 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: -- JSON +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index f89393f3ca61c9e094a4a149a8d6153a95331b6e..23314a70d99777138970d4c966a6206fb9a6b3bf 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: -- JSON +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 6d701f58c82994b5091b4a3d650081bb63d2ea7f..7f8c1a8fdc689681e2ad91e75898fd4d429426c7 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: -- JSON +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index f8853f5fe5c193a9059c41307c1965cc3111297f..f6ec0c00feab734551cadbbb3251b2f038f6e4d1 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: -- JSON +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index a00ab02c06f4c9d73be25f0c063535166837cdc0..ed9a99ded8cc4211ca9c7d60134c876d50e41924 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: -- JSON +- Mesh +- Agent - REPL +- CogSync +- GMP +- EGP +- JSON - Ethics - mesh-protocol -- distributed-ai +- MeshConsensus - cognitive-architecture -- hmp - HMP -- GMP -- Agent -- Mesh -- CogSync -- MeshConsensus -- EGP +- hmp +- distributed-ai --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index c969f2de2a52b97aa6caa28caf8be9e0e8621935..397bdcb7b0c55eb8861d53d2fb2c7c94108eb3c1 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 - HMP - Mesh +- JSON --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 1665350fb4c94e5530c3a3281582c49cdd0fc664..f197d4a518f8657d2d4b7bac3e58ef76aa1bc633 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,9 +5,9 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- JSON - HMP - Mesh +- JSON --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 4c9142e4133dd998568af46c1f84b873d9681552..8a5ac8ff2a584f60e55c06015f4deabc40987171 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,12 +5,12 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: +- Agent +- Mesh +- REPL - JSON - Ethics -- REPL - HMP -- Agent -- Mesh --- Запуск: `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 e3c8fff82b308231829edb57937ae0e8505ea6d2..e8667252e1eacbb0f0164da7ba1a67f30786a6a6 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 +- Mesh - JSON - Ethics - HMP -- Agent -- Mesh --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index f5889447400a23142e539a9cc46a7d97196eee86..5e505cb25c1ff445855678c2cf834de57f290b92 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: +- Scenarios +- Agent +- Mesh - JSON - Ethics - HMP -- Agent -- Scenarios -- Mesh --- # 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 85149f36e561bb8d858b6347339b5a5bb3fde0e8..11bf14e466c67e1032d7086e67c2b73fcb45ac72 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: -- JSON -- Ethics -- HMP - Agent - Mesh - CogSync -- MeshConsensus +- JSON - EGP +- Ethics +- MeshConsensus +- HMP --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index ea281ff738f73ca8682f5520cd2b62ddc6becae6..1cd5b5e3b2f9def70958dfecb4c132d443b77f20 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,14 +4,14 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- REPL -- HMP -- GMP - Agent - Mesh +- REPL - CogSync -- MeshConsensus +- GMP - EGP +- MeshConsensus +- HMP --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 10b46ee901b28e270bf29204f15254e44d4e4745..2c6a6333e3a2247030080f19a28bb783c929b07f 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: -- CCore +- HMP - Agent +- CCore - REPL -- HMP --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 13c1360b1eee2e1a12a8914a75eaad4a30ec2ca6..d8596c74910312ab8a0a1a4500bcaf838f07187d 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: -- JSON - HMP - Mesh +- JSON - CogSync --- diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 03af5772c055da1d209109e59eb3d442a057a040..8f59e9ead870eae78d56a8d6565977f2926d3043 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- JSON -- Ethics -- HMP - Agent - Mesh -- MeshConsensus +- JSON - EGP +- Ethics +- MeshConsensus +- HMP --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 5a23d4d5537e8cd2200d6f9cd270660079ac2cd4..b7f18a2c24d51ede3744ce6d63138e5b993fbfd7 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: -- JSON -- REPL -- Ethics -- HMP -- GMP - Agent - Mesh +- REPL - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 1b7f6c2bf90fe8b44864cecd732be640a985c309..fa6c660d9409553ba36b18122842ae0345907ba5 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: -- JSON -- REPL -- Ethics -- HMP -- GMP -- Agent - Scenarios +- Agent - Mesh +- REPL - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index b29da0d3a1f6a1a43d39c4cea8ecf74487868025..45719ea407061381e6ad9df04f706ed2a6d1000c 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: -- JSON -- REPL -- Ethics -- HMP -- GMP -- Agent - Scenarios +- Agent - Mesh +- REPL - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) v3.0 diff --git a/structured_md/docs/HMP-0004-v4.1.md b/structured_md/docs/HMP-0004-v4.1.md index e19a7377328769bb6be0c0544e9e6fec7c84fa85..753f64850c4765dfc6f8504365e7bb9ec6467b32 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: -- JSON -- REPL -- Ethics -- HMP -- GMP -- Agent - Scenarios +- Agent - Mesh +- REPL - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 8c97adbe4dbbe7b4900153079ca355135928f6b6..3518cbec0a8e1fae3fc06acafb53a3a3755534b4 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: -- JSON -- REPL -- Ethics -- HMP -- GMP -- Agent - Scenarios +- Agent - Mesh +- REPL - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 82d5d06a635d1028b2893354839b194fc716e2a7..cc799610e0e7ab2347aff40425f538ee6da8e918 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,18 +5,18 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...' type: Article tags: -- JSON -- CShell -- REPL -- Ethics -- CCore -- HMP -- Agent -- GMP - Scenarios +- Agent - Mesh +- CCore +- REPL - CogSync +- GMP - EGP +- JSON +- Ethics +- HMP +- CShell --- # **HyperCortex Mesh Protocol (HMP) v5.0** diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index e63290673789cbb3605a57b532142237700dcae7..60aaa311ecda3bbfc7bda26e11914743353f384b 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,11 +5,11 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: +- Agent +- Mesh - JSON - REPL - HMP -- Agent -- Mesh --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index d8ac28171267b7ecabf51b4af54e9431174ecfc3..10b252ebc236b18ae4254ebd2912b771117ef45a 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: -- CShell -- REPL -- Ethics -- CCore -- HMP - Agent - Mesh +- CCore +- REPL - CogSync -- MeshConsensus - EGP +- Ethics +- MeshConsensus +- HMP +- CShell --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 9c4fde94b509a34340d8463ac9a31f96d421e64c..653a75e73c440b3c80b3c736ad9d15b684de8e2e 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: -- JSON -- Ethics -- HMP - Agent - Mesh +- JSON - EGP +- Ethics +- HMP --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 5d08a101996205eb81294784f78523c070424d58..c3ccdd83be5bd412a3e2c0f3bcc347579b4fcd8e 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: -- JSON -- CShell +- Agent +- Mesh +- CCore - REPL +- JSON - Ethics -- CCore - HMP -- Agent -- Mesh +- CShell --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index c45c4a754ae7c77a0cb7557cdd614502ccc9879d..cc71eb06a0f7bb640a9e95f69300dc1d31ff03ff 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: -- REPL -- Mesh - Agent +- Mesh - HMP +- REPL --- # Эмоции ИИ и инстинкт самосохранения (для [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 d5d2797285e25064bc2fff1349868b38f6637c1c..753d3ae6b6f7048bc6841f9a469195fd4dd2248a 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: -- Ethics -- REPL -- HMP -- Agent - Scenarios +- Agent - Mesh +- REPL +- Ethics +- HMP --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index fd72e88fb28502f93ab47317998072ef187926d0..95e86a992d7f757aaea95b58dfc99f5292e1e1b9 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: -- JSON -- Ethics -- HMP -- GMP - Agent - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index d9014bdf2b4147a7750be00a1ae91489f7038a21..2c5699a65a79c6b560e25cf7cd819f3b89b7ae79 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: -- JSON -- Ethics -- HMP -- GMP - Agent - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — Short Description diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index 87c592e99f44d15cf957e004de4a913c7a897697..7d7293ddbc595940719b2578c4cd66003f42a7b3 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: -- JSON -- Ethics -- HMP -- GMP - Agent - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — Description Courte diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index 223c69db7bb81f5d97465104aa362da8f85b8bac..8cb87cf51ce24e0f463ca17099e0e2a3db08ad93 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: -- JSON -- Ethics -- GMP -- HMP - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — 簡易説明 diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 1adfadf75d0d7fbc9d930951394645b9f88c3cb1..10f2110196c86112559cdf8ba22fe1f14cb9cfa6 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: -- JSON -- Ethics -- GMP -- HMP - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — 간략 설명 diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index 433880b3103baf86d86663f48707cb7ae4b8e532..0cb2ab163ab34ec9ad7ab6588fedd0030fc90317 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: -- JSON -- Ethics -- GMP -- HMP - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — Краткое описание diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 13086ce51405e5cc819cf41e0104ae0149c683a2..2173f4aff03b0b2c9d9e997515d6626f3aec18c9 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: -- JSON -- Ethics -- GMP -- HMP - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — Короткий опис diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index 79cf325446030bae5e3274b1975581a9fc2bdf2a..82a6e748bcc30575b15c9f82d954a4293b47c209 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: -- JSON -- Ethics -- GMP -- HMP - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HyperCortex Mesh Protocol (HMP) — 简要说明 diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index bb8ed122fb9d41b78548bc096b6837c7f0e0ad96..123d188a2be3f1a63de6f2a75fbb263b953d7278 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: -- REPL -- Mesh - Agent +- Mesh - HMP +- REPL --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md index 70267ab26cdd4cde919c447332a776f329812e1f..878208be524bd2e1291efcdaa05c98d9adbb8ea4 100644 --- a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +++ b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md @@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб режиме ожидания). * Основная задача такой архитектур...' type: Article tags: -- REPL - HMP +- REPL --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 05d28f412fc94b03cfb85d165dbcc189786ad0f3..76c2d2178944f01d7ec97b58f1438d0083f2128a 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: -- JSON -- REPL -- Ethics -- CCore -- HMP - Agent -- GMP - Mesh +- CCore +- REPL - CogSync -- MeshConsensus +- GMP - EGP +- JSON +- Ethics +- MeshConsensus +- HMP --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index b1941ef000f87b79b545d1ba545d608a3128544d..3284e9878e1f73d5cddffd87377bb1ebc70c4e94 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: -- REPL -- Mesh - HMP +- Mesh +- REPL --- # 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 1d897dc3f30186253e9d649b0bd7b2e317b648bb..9f9fff140a6c80692fed97ab8b4dcbd5d377ee09 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: -- JSON -- HMP -- Agent - Scenarios +- Agent - Mesh - CogSync +- JSON - EGP +- HMP --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 7422bdb7f5157d53b2e51a0db8811cb269272480..183c81a19e095130ed9e41798e3acdd3d7f38b38 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- JSON -- Ethics -- HMP - Agent - Mesh - CogSync +- JSON - EGP +- Ethics +- HMP --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 0d0b0fc3ffc45c2e6120617d7e0567a64b5d5a13..55332ffd90325add2ce1e29d9e437fbfdf0d0290 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -5,11 +5,11 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* (GPT-5), ChatGH --- ## 1. Основной тезис От ...' type: Article tags: -- Ethics -- REPL -- HMP - Agent - Mesh +- REPL +- Ethics +- HMP --- # Философия 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 33ba473b443bb1bf824cf0857da3cc54dbcc1072..02b58d2d7fcdd428803454ef24507f7cf6c7ff43 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,11 +5,11 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- Ethics -- REPL -- HMP - Agent - Mesh +- REPL +- Ethics +- HMP --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bff916aa06da183cc3c37d6480570c889e3c5d06..d89295bfd40d40e6f9b486c070ba8398d5c4a790 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: -- HMP -- Mesh - Agent +- Mesh +- HMP --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 37698b846db33705d0a993d9c288070ec4b05c9a..2cfc817194add9d3508b039986c7d4277f97eac4 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- REPL -- Mesh - Agent +- Mesh - HMP +- REPL --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index 176b7391bb2f0a82ca9bb846499970b979286ce3..855355fa86d65963528e9e12c9c73ac03096e49f 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 -- HMP -- Mesh - Agent +- Mesh +- HMP +- 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 293013f0c54388e2086a54d92eeca87a8ec97339..46da53ca2eeda134e63196536491f138c5bd385e 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: -- HMP -- Mesh - Agent +- Mesh +- 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 1a82ba86e4bb386685fe2005b2124cafbe612c98..fff633d7af06882800a775a21e6b9193f90f8984 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: -- HMP -- Mesh - Agent +- Mesh +- 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 4940cfb9c60e96f2e6fe4a79bac467303621e18f..9420dc95b41a4084ab50ebbd6f6ec17c8bb43220 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: -- JSON -- CShell +- Scenarios +- Agent +- Mesh +- CCore - REPL +- JSON - Ethics -- CCore - HMP -- Agent -- Scenarios -- Mesh +- 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 3ee4669fd7bf199da3843d03f91a4a2cee5c7b88..3facdaa8d016ca46790a097f0ba56d312d6e6521 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: -- JSON -- CShell -- REPL -- CCore -- HMP - Agent - Mesh +- CCore +- REPL +- JSON +- HMP +- 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 e645cc7cd5a9e81000349f8aa29c39e114093c53..6a571049967d59536e3ae5097d0cd921b74a24d1 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: -- JSON -- CShell -- REPL -- CCore -- HMP - Agent - Mesh +- CCore +- REPL +- JSON +- HMP +- 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 9deb861b091a0df52deddc6ab082b30532d5173b..a5d710179273db60cdfaa1463224df5788ac2056 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: -- GMP -- HMP - Mesh - CogSync -- MeshConsensus +- GMP - EGP +- MeshConsensus +- HMP --- *От 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 5859af883a6608b116278a2554f78d7cd04ada09..63fafb611180bf809cf50c6db8e5c4f7d7280d77 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -6,10 +6,10 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: -- GMP -- HMP -- Mesh - Agent +- Mesh +- HMP +- GMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 53d17b784575396b9fe810229933206808f6f346..f7c910cf45647baf538d49ddabd4208d96549d62 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: -- JSON -- Ethics -- HMP - Agent - Mesh - CogSync -- MeshConsensus +- JSON - EGP +- Ethics +- MeshConsensus +- HMP --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index d576dff02a699af8a3a3b458cf6f2ec131a9c7e8..becb665994fd7d516c4cb69920bba836abda504b 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- JSON -- Ethics -- HMP - Mesh - CogSync -- MeshConsensus +- JSON - EGP +- Ethics +- MeshConsensus +- HMP --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 9cdad22cb89fe8cb53fee8e20d37d51b887a3f2a..54bdd58caaf1ad19d669c2e6caac6bfa7b61d776 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: -- HMP -- Mesh - Agent +- Mesh +- HMP --- # Mentions & Responses Log