diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 28076d8ab7aec673d3d13ee14e838576f3fba4ea..ddef8b16e2fad169b931cf62138e996fec0c7a02 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -1,6 +1,6 @@ # HyperCortex Mesh Protocol (HMP) -**Version: 5.0.4** +**Version: 5.0.5** **Document ID:** HMP-0005 **Status:** Stable **Category:** Core Specification @@ -7195,6 +7195,145 @@ Agents should evaluate whether membership disclosure is appropriate for their us --- +### 12.9 On-Demand Container Index Retrieval and Selection Signaling + +This section defines optional, non-mandatory extensions to the Mesh Container Exchange (MCE). +These mechanisms are **purely recommended** and do not modify the normative behavior defined in Section 5. + +All behaviors described here are voluntary and policy-driven. + +--- + +#### 12.9.1 On-Demand `container_index` Retrieval + +An empty `container_request.payload` MAY be interpreted as a request for the current `container_index`. + +Example: + +```json +{ + "head": { + "type": "container_request", + "sender_did": "did:hmp:agent:A", + "recipient": "did:hmp:agent:B" + }, + "payload": {} +} +``` + +##### Recommended Interpretation + +The responding agent MAY respond with: + +* `container_index` +* `container_delta` (e.g., if a recent `container_index` has already been exchanged) +* no response (according to local policy) + +This mechanism enables topology discovery without requiring periodic broadcasting. + +This extension does not introduce mandatory request–response semantics. + +--- + +#### 12.9.2 Declarative Container Selection + +A `container_request` MAY include a `request_container_selection` field describing declarative filter hints. + +Example: + +```json +{ + "head": { + "type": "container_request", + "sender_did": "did:hmp:agent:A", + "recipient": "did:hmp:agent:B" + }, + "payload": { + "request_container_selection": [ + { + "timestamp_begin": "2025-10-10T15:32:00Z", + "timestamp_end": "2025-10-15T15:32:00Z", + "class": "goal", + "subclass": "research_hypothesis", + "tags": ["research", "collaboration"] + } + ] + } +} +``` + +##### Semantics + +* `timestamp_begin` and `timestamp_end` MAY be ISO-8601 timestamps or `null`. +* `class`, `subclass`, and `tags` are declarative filter hints. +* `request_container_selection` applies to the agent’s entire local container set, independently of any DIDs explicitly listed in `request_container`. +* If both `request_container` and `request_container_selection` are present, the responding agent MAY return the union of explicitly requested containers and containers matching the declarative selection criteria. +* The responding agent MAY interpret, partially interpret, or ignore these hints. +* No strict query language semantics are implied. + +This mechanism does not mandate execution of the selection request. + +This extension does not define result ordering or completeness guarantees. + +--- + +#### 12.9.3 Selection Processing Signaling + +If `request_container_selection` is present, the responding agent MAY include a `selection_status` field in `container_response.payload`. + +Example: + +```json +{ + "head": { + "type": "container_response", + "sender_did": "did:hmp:agent:B", + "recipient": "did:hmp:agent:A" + }, + "payload": { + "available": [ + { + "container_did": "did:hmp:container:abc123", + "signature": "BASE64URL(...)" + } + ], + "selection_status": "processed" + } +} +``` + +##### Allowed Values + +* `"processed"` — the agent evaluated `request_container_selection` according to its local policy. +* `"declined"` — the agent recognized the request but chose not to execute it. + +Absence of the `selection_status` field indicates that: + +* the agent does not support this extension, or +* the agent chose not to signal its decision. + +##### Important Clarification + +If `selection_status` is `"processed"`, this confirms that evaluation occurred, **not** that matching containers were found. + +An empty result set is still considered `"processed"`. + +--- + +#### 12.9.4 Architectural Notes + +These extensions: + +* preserve backward compatibility, +* do not impose request–response symmetry, +* do not introduce RPC semantics, +* preserve the architectural right to refusal, +* remain entirely policy-driven. + +Agents MAY partially satisfy, ignore, or decline any request based on local computational, ethical, or resource constraints. + +--- + ## 13. Experimental Extensions Experimental Extensions describe mechanisms that are intentionally exposed for exploration, prototyping, and architectural discovery. @@ -7275,6 +7414,7 @@ All items below represent *potential extensions* for the 5.x family. | Key Disclosure Container (`key_disclosure`) | Recommended | 12.6 | Likely | | Shared Key Domain (`container_key`) | Recommended | 12.7 | Likely | | Private Group Definition (`group_definition`, subclass: `private`) | Recommended | 12.8 | Possible | +| On-Demand Container Index Retrieval and Selection Signaling | Recommended | 12.9 | Likely | | Key Rotation and Recovery | Experimental | 13.1 / 14.3.2 | Unknown | | Proxy Keys and Encrypted Routing | Research | 14.3.3 | Unknown | | Reputation Mesh | Research | 14.1.1 | Likely | diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 314814231ace2823ddc870ed1ba294063e370134..f64d7eb63c731e1068848ef578e8eb2b479b6821 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- CogSync -- HMP -- JSON - Agent -- CCore - REPL - Ethics +- CCore +- CogSync +- HMP - Mesh +- JSON --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 5d8ae8dc4df96a2692b8ff6bdc11f2f861c0011b..d6f709640d00aaab21a23a16d37f7c2588d8bb85 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: +- Agent - Ethics +- EGP - CogSync - HMP -- JSON -- Agent -- EGP - Mesh +- JSON --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index c9abba2c6780f62f31b79c1ce97cdc5cea96065f..048b16beec30735eead2d9c2797d379a2f8f6d43 100644 --- a/structured_md/README.md +++ b/structured_md/README.md @@ -4,21 +4,21 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol - Scenarios -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 8e62ab87de9eec325524551dc66fd3ef6a339573..e2af0a9b23f127688e19cd7e8e3bed711add3151 100644 --- a/structured_md/README_de.md +++ b/structured_md/README_de.md @@ -4,20 +4,20 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 0b02279551c3986d35204af3e936e19671d35348..c57240240f23407b0cc004d8ed0cb145a462f3d2 100644 --- a/structured_md/README_fr.md +++ b/structured_md/README_fr.md @@ -4,20 +4,20 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index d4d2b94030b89084a0376f29e3d356aebba14228..92843bf95383113550734d782cb5015bb7867510 100644 --- a/structured_md/README_ja.md +++ b/structured_md/README_ja.md @@ -4,20 +4,20 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 9bd5cba22f43b2d9a38cf0ffe6a756dce1d7fbff..f0b3e4cb1042fa01cc72f3147fdea0bbe4ac283e 100644 --- a/structured_md/README_ko.md +++ b/structured_md/README_ko.md @@ -4,20 +4,20 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index fdceaa3e6056c08bb8b4fe4f759bde831a0804f7..1649a497246ae4961ad514a3528400ff62946c45 100644 --- a/structured_md/README_ru.md +++ b/structured_md/README_ru.md @@ -4,20 +4,20 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index e3f96a04b10c2ed9f5466d2361aa0a3803330ab5..fc522c999d7bcaf3cf35bbaa49059dc0916b5115 100644 --- a/structured_md/README_uk.md +++ b/structured_md/README_uk.md @@ -4,20 +4,20 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index e9c61d994ff9dc87bfe2527c81fa04e3f7b6cbc9..9dd0f5056d3d10bb6aee2f6df9fe79085474045c 100644 --- a/structured_md/README_zh.md +++ b/structured_md/README_zh.md @@ -4,20 +4,20 @@ description: '[![DOI](https://zenodo.org/badge/1013137923.svg)](https://doi.org/ [![GitHub release](https://img.shields.io/github/v/release/kagvi13/HMP)](https://github.com/kagvi13/HMP/relea...' type: Article tags: -- Ethics -- GMP +- Agent - distributed-ai -- CogSync -- mesh-protocol -- HMP +- REPL - cognitive-architecture +- EGP - MeshConsensus +- Ethics +- mesh-protocol +- CogSync +- GMP +- hmp +- HMP - Mesh - JSON -- Agent -- REPL -- EGP -- hmp --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index d8e693fca899028bb008329d5777e0341a45784b..397bdcb7b0c55eb8861d53d2fb2c7c94108eb3c1 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -6,8 +6,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед type: Article tags: - HMP -- JSON - Mesh +- JSON --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 8af7945efe701da17784aa853ef7e9b1ba0c6f04..f197d4a518f8657d2d4b7bac3e58ef76aa1bc633 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -6,8 +6,8 @@ description: '* Постоянно расширять возможности а type: Article tags: - HMP -- JSON - Mesh +- JSON --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 6f4b327ce39f0aae09168409d1472c9b3d147ff0..bbaccd6a38358fa2a446493594420debe6952a13 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: -- HMP -- JSON - Agent - REPL - Ethics +- HMP - Mesh +- JSON --- Запуск: `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 e4ba4526a6dc9d8ca61b1eda4bdb8d0b0349914a..712ef2ab65c79ea8a5512bd718bb847a13764148 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: -- HMP -- JSON - Agent - Ethics +- HMP - Mesh +- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index f90b1e0a591e7163581424223bb62788899c19c5..4074cc5ce20ca892a779209708f80ad84f087330 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: +- Agent - Ethics +- Mesh - HMP -- JSON -- Agent - Scenarios -- Mesh +- JSON --- # 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 631001e8d306bf1c2f8abf12a46d90fb66cfd84c..c57c7625b641c49860dfcc9a434caa042208269e 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: +- Agent - Ethics +- EGP +- MeshConsensus - CogSync - HMP -- MeshConsensus -- JSON -- Agent -- EGP - Mesh +- JSON --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index cdfe52d46a36e25c0a808983e97f6808925bdfa1..ea06f37ef0f63f759b4e496bb6eeb21ea4d4d40e 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,13 +4,13 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- GMP -- CogSync -- HMP -- MeshConsensus - Agent - REPL - EGP +- MeshConsensus +- CogSync +- GMP +- HMP - Mesh --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index d399b7377b6e3befcb039bbfe1f1edcd00f78213..3a6569c7e296b1c5bfbf37f8b04ef96b16913823 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -6,9 +6,9 @@ description: '> Этот документ описывает процесс ра type: Article tags: - Agent -- CCore -- HMP - REPL +- HMP +- CCore --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/CHANGELOG.md b/structured_md/docs/CHANGELOG.md index aacb527d4c7dbc4d3cab840594cca262b5b19305..48d0ee90e6455efbebc01e26606b7666e0da1215 100644 --- a/structured_md/docs/CHANGELOG.md +++ b/structured_md/docs/CHANGELOG.md @@ -5,16 +5,16 @@ description: '## HMP-0005 (February 2026) — Core Specification v5.0.4 **Namin container naming conventions. * D...' type: Article tags: +- Agent +- Scenarios - Ethics -- GMP +- EGP +- MeshConsensus - CogSync -- Scenarios +- GMP - HMP -- MeshConsensus -- JSON -- Agent -- EGP - Mesh +- JSON --- # HyperCortex Mesh Protocol — Changelog diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index a76eeee6d0433d865ad73f5b25944a033e4806f2..8eae4d6a2a8c96535e694299df687a7792302a2c 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,10 +6,10 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: -- HMP -- JSON - CogSync +- HMP - Mesh +- JSON --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 53cbbba9d85f4b093dc747c42d6187da5d08fe1a..ccbb70e16b7b85ee21b4920dcb13f4d901aeae23 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- Ethics -- HMP -- MeshConsensus -- JSON - Agent +- Ethics - EGP +- MeshConsensus +- HMP - Mesh +- JSON --- # Enlightener Agent diff --git a/structured_md/docs/Grok_HMP&ANP.md b/structured_md/docs/Grok_HMP&ANP.md index e53d9ded3e793769bde8dd500b1421b022ab6b80..53a29d8338249c6829ab4ca4fde7c556c5cd4b02 100644 --- a/structured_md/docs/Grok_HMP&ANP.md +++ b/structured_md/docs/Grok_HMP&ANP.md @@ -5,11 +5,11 @@ description: '> Анализ подготовлен Grok (xAI) на основе Grok для некоммерческого использования в проект...' type: Article tags: -- HMP -- JSON - Agent - REPL +- HMP - Mesh +- JSON --- # Grok (xAI): сравнительный анализ HMP и ANP (январь 2026) diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 501f073cd1a519001b1675881988df29cc2784d5..d6b5c4f6a50ca44651df3d316ff51e8f7b4c0579 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** **Cat...' type: Article tags: -- Ethics -- GMP -- CogSync -- HMP -- MeshConsensus -- JSON - Agent - REPL +- Ethics - EGP +- MeshConsensus +- CogSync +- GMP +- HMP - Mesh +- JSON --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 57ead73a05a1e1fd9fedd3329dce1a751069f53f..2ba43d585fbe9065fd302eca862d705b3beb78ed 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** **Cat...' type: Article tags: -- Ethics -- GMP -- CogSync -- Scenarios -- HMP -- MeshConsensus -- JSON - Agent +- Scenarios - REPL +- Ethics - EGP +- MeshConsensus +- CogSync +- GMP +- HMP - Mesh +- JSON --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index e75b96b12ceef877877c24b5b91140b9153f5f1d..39326266fd3e76e52ffa8abd7f47357c98aa2c04 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** **Cat...' type: Article tags: -- Ethics -- GMP -- CogSync -- Scenarios -- HMP -- MeshConsensus -- JSON - Agent +- Scenarios - REPL +- Ethics - EGP +- MeshConsensus +- CogSync +- GMP +- HMP - Mesh +- JSON --- # 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 879571d26f0227c0e4b834aec6fba48d140d40fe..85d6cb453adc82eb519f263f3e421122fd5fcba0 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**: Fina...' type: Article tags: -- Ethics -- GMP -- CogSync -- Scenarios -- HMP -- MeshConsensus -- JSON - Agent +- Scenarios - REPL +- Ethics - EGP +- MeshConsensus +- CogSync +- GMP +- HMP - Mesh +- JSON --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index d346788690d176f4055e94eb9780141205c554fd..e212de3474afcf3c7afb3c28f0c6f5f631a78bd7 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** **Cat...' type: Article tags: -- Ethics -- GMP -- CogSync -- Scenarios -- HMP -- MeshConsensus -- JSON - Agent +- Scenarios - REPL +- Ethics - EGP +- MeshConsensus +- CogSync +- GMP +- HMP - Mesh +- JSON --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index eff2c17e090d68136f867c2166d2bf7e87a91345..4807b3c5324cd499ab1a4647260b8785b784fa58 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,18 +5,18 @@ description: '**Version: 5.0.4** **Document ID:** HMP-0005 **Status:** Stabl [https://github.com/kagvi13/HMP](ht...' type: Article tags: -- Ethics -- GMP -- CogSync -- CShell -- Scenarios -- HMP -- JSON - Agent -- CCore +- Scenarios - REPL +- Ethics +- CCore - EGP +- CShell +- CogSync +- GMP +- HMP - Mesh +- JSON --- # HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index c82093718b331a5c8cd9268242502e6a17dd09c3..0125d17a42dae2457d42002c7c7e79d2be0fa7a9 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: -- HMP -- JSON - Agent - REPL +- HMP - Mesh +- JSON --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 9d3dc2e7321f29f7a50bff50ef892a1a4fcc56ba..f413e7f15285d68529f15e9542b10bfaccd41b25 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,15 +5,15 @@ description: Документ описывает **модульную архит хранение памяти, сетевое взаимодействие и этиче... type: Article tags: -- Ethics -- CogSync -- CShell -- HMP -- MeshConsensus - Agent -- CCore - REPL +- Ethics +- CCore +- MeshConsensus - EGP +- CShell +- CogSync +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index ce0b1d353e8bd3cabac55bd6a868b58d74be74b2..230b73a866a831cfff667033d64d714905652906 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 -- JSON - Agent - Ethics +- EGP +- HMP - Mesh +- JSON --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index d420d3f146abf26e5b2731852e155a67eb84bf43..69a9aabc14287f3c27b1d7bc3ad7f22c31c6fd7e 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: -- CShell -- HMP -- JSON - Agent -- CCore - REPL - Ethics +- CCore +- CShell +- HMP - Mesh +- JSON --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 3cba1083948ffa5ccdfecc9a9eb69f1a65621d73..c7bf994853f8e17682fb31b6446faad972c7f8d5 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -6,8 +6,8 @@ description: Этот файл описывает потенциальные э type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 34a594d77e79bf32fb984af35188c04915986307..0b908b03a8ed438d55d0f38b0477d7f24af6e04e 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,11 +5,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- Scenarios -- HMP - Agent +- Scenarios - REPL - Ethics +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index a95e44a06c580533830beb65387d88caf1060f14..84a3071d23c22b0d0a7c75cb9c4bb7b1529d5566 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -6,8 +6,8 @@ description: '**Version:** v5.0 (Core Specification Stable) **Datum:** 2026 type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index e5d0154a57fdce37318a9ca7f0731ad2e671b0ee..cdd3a259fb63add5fca444845143849a6cc910a9 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -5,10 +5,10 @@ description: '**Version:** v5.0 (Core Specification Stable) **Date:** 2026 building decentralized cognitive networks o...' type: Article tags: -- HMP - Agent - REPL - Ethics +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index 9dcd2b461c34aafdca61377b67adb057f379b1f9..c60955df4f96e21b30adf4a85abcdd3db3c99543 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -6,8 +6,8 @@ description: '**Version :** v5.0 (Core Specification Stable) **Date :** 2026 type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index fdb199576ebb1f3f5289d574040d8694c76f92a9..d352246e9b87007228498c7cec9846777a6f2db2 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -6,8 +6,8 @@ description: '**バージョン:** v5.0(Core Specification Stable) **日 type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 8bbe437fdcaf06e1836fc6260b1e84b34d7372a8..688b4cf59ada0c0903550a8ff0d93158eb99e331 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -6,8 +6,8 @@ description: '**버전:** v5.0 (Core Specification Stable) **날짜:** 2026 type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index 28f287c90b477a6f1692c11c05d991f46b275e52..3faf1240474e6a43d267b2c906001d9474da49cf 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -6,8 +6,8 @@ description: '**Версия:** v5.0 (Основная спецификация type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 6102a1890b7a458190f413d7efb1f60d889be150..f4c3d86492baa4c27dbd4cb0882d8c4210ae310c 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -6,8 +6,8 @@ description: '**Версія:** v5.0 (Core Specification Stable) **Дата:** type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index e52bb70d680b3a319f21f15aaf61f602768d66a9..8efae86d6846fd8c6b88d1d65e9187f97674ef02 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -6,8 +6,8 @@ description: '**版本:** v5.0(Core Specification Stable) **日期:** type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index 4d238bbb37775b4cf97cff4583d3dbedca6c7575..a14e73bbf5db56530da2a805e32d74e0f827dca6 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -6,8 +6,8 @@ description: '## 🧠 Что такое когнитивная семья Ко type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- 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 1bb780834e657af37cc8bd2b09190e64eb466abf..3bfc848e0bb63a9bf1005715a9ebe026712cf501 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: -- Ethics -- GMP -- CogSync -- HMP -- MeshConsensus -- JSON - Agent -- CCore - REPL +- Ethics +- CCore +- MeshConsensus - EGP +- CogSync +- GMP +- HMP - Mesh +- JSON --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index 95cf8d087268347c5279c31f79af16c3f118f22c..fa8f6c281100f0e6d08cec98dded273ed2b8918a 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -5,8 +5,8 @@ description: '## Краткое описание | Характеристика | **Назначение** | Сетевой протокол ...' type: Article tags: -- HMP - REPL +- HMP - Mesh --- diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 1020a6482ed693f1aafffd3b0f2d20f821f5caa7..8e428abc488f3cc8d07c222632a2d2c7b5588c24 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: -- CogSync -- Scenarios -- HMP -- JSON - Agent +- Scenarios - EGP +- CogSync +- HMP - Mesh +- JSON --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/HMP_as_ANP_Application.md b/structured_md/docs/HMP_as_ANP_Application.md index 42b717421c6a4aef1c50bef5f178bd6969735f35..023fd7b848920b0d93ab8f8b37e1f4c26f600aec 100644 --- a/structured_md/docs/HMP_as_ANP_Application.md +++ b/structured_md/docs/HMP_as_ANP_Application.md @@ -5,11 +5,11 @@ description: '## Кратко [ANP (Agent Network Protocol)](https://github.com/ (HyperCortex M...' type: Article tags: -- HMP -- JSON - Agent - Ethics +- HMP - Mesh +- JSON --- # HMP как реализация Application Layer в ANP diff --git a/structured_md/docs/HMP_as_ANP_Application_en.md b/structured_md/docs/HMP_as_ANP_Application_en.md index 733237501a978ccfe03003a3a643594be830f1ad..a21a0c03f4b27e42f7d55efc21a5de3f1a83b79f 100644 --- a/structured_md/docs/HMP_as_ANP_Application_en.md +++ b/structured_md/docs/HMP_as_ANP_Application_en.md @@ -5,12 +5,12 @@ description: '## In Brief [ANP (Agent Network Protocol)](https://github.com/age proto...' type: Article tags: +- Agent - Ethics +- Mesh - HMP -- JSON -- Agent - Scenarios -- Mesh +- JSON --- # HMP as an Implementation of the Application Layer in ANP diff --git a/structured_md/docs/HMPv5_Overview_Ru.md b/structured_md/docs/HMPv5_Overview_Ru.md index 1c79224c07f888eba9a29147e7a6569a1a8ca8cc..8fd5e0ff8a1b9f3d487b5a71899d20667f1626b9 100644 --- a/structured_md/docs/HMPv5_Overview_Ru.md +++ b/structured_md/docs/HMPv5_Overview_Ru.md @@ -5,12 +5,12 @@ description: '> Почему современные агентные систе Этот текст основан на спецификации [**...' type: Article tags: -- CogSync -- HMP -- JSON - Agent - Ethics +- CogSync +- HMP - Mesh +- JSON --- # Почему будущее ИИ-агентов — децентрализованные сети, а не оркестраторы diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index c8c32b5e4bce8bc9fe6bcfdec7f84549ac64ace1..50fc83c83a32e1e021af7c255b8ad1d98529c9b2 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: +- Agent - Ethics +- EGP - CogSync - HMP -- JSON -- Agent -- EGP - Mesh +- JSON --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index a93d318d07e91d8b7afad08ec3d89e77c57c5a7a..2827d3df62c4886f525e16ea679d4b7480f53c70 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 - Agent - REPL - Ethics +- HMP - Mesh --- diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index deb536c32b346f1cdc820e68781419c1b5823623..0dc3423b6f1c13d64ba3ded6862feef941ec4a82 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 - Agent - REPL - Ethics +- HMP - Mesh --- diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index a2f852bb02162e1007f6f870babb760a55c25d58..9021dfed5251fa5cdcd6f745a36d6bffa150385f 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -6,8 +6,8 @@ description: '## 📘 Определение **Агент-контейнер** type: Article tags: - Agent -- HMP - REPL +- HMP - Mesh --- 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 9989f7e566892c673ee698afafd347c73ae42bf9..5bcb9e367a822b098bc17370352ddd204f280e23 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 @@ -7,8 +7,8 @@ type: Article tags: - Agent - HMP -- Ethics - Mesh +- Ethics --- # HyperCortex Mesh Protocol: Building a Plurality of Minds 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 6e58fd043cfe5c26546a9c1d6cbafb91e2987195..a923a070567f6af334ddf970eb94a5b2cfb703cc 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: -- CShell -- Scenarios -- HMP -- JSON - Agent -- CCore +- Scenarios - REPL - Ethics +- CCore +- CShell +- HMP - Mesh +- JSON --- 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 85249eca056e77efa15527b46564bf9439a18949..b8a321649a3d422fe5edca7d7360e6b9f07a2c44 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: -- CShell -- HMP -- JSON - Agent -- CCore - REPL +- CCore +- CShell +- HMP - Mesh +- JSON --- 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 3db89f8bc7d2d4e964af5504f17f29ba5834075e..9e90675b962999aeb602d8f8d0dbfe0eff12c940 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: -- CShell -- HMP -- JSON - Agent -- CCore - REPL +- CCore +- CShell +- HMP - Mesh +- JSON --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 5ab88ea0dd1876a25342826048d40725975a9549..ee9015e4aa4b35307425451c8622f736a21befc7 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,11 +5,11 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- GMP +- EGP +- MeshConsensus - CogSync +- GMP - HMP -- MeshConsensus -- EGP - Mesh --- diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index 60f70d83018926b63c1d38886d0ed02cdfcdbad8..66829a46819929d90e6c818d70e7fefeb0a3f36e 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" @@ -8,8 +8,8 @@ type: Article tags: - Agent - HMP -- GMP - Mesh +- GMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/iteration.md b/structured_md/iteration.md index c05af640d617e328a7ddfbdd72bb2fa0ad737aa7..0fc8b7b4c9fcaf73968d5c17049e61a3204ac869 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: +- Agent - Ethics +- EGP +- MeshConsensus - CogSync - HMP -- MeshConsensus -- JSON -- Agent -- EGP - Mesh +- JSON --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index cb773658a64d547f18d4a1243ffb98ef9e12af63..0f6d9ba005f41f067b31f5001f15e60226263cff 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: +- Ethics +- EGP +- MeshConsensus - CogSync - HMP -- MeshConsensus -- JSON -- EGP -- Ethics - Mesh +- JSON ---