GitHub Action commited on
Commit
41252de
·
1 Parent(s): ecd5b40

Sync from GitHub with Git LFS

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. docs/HMP-0005.md +20 -17
  2. structured_md/CONTRIBUTING.md +5 -5
  3. structured_md/HMP-Roadmap.md +4 -4
  4. structured_md/README.md +9 -9
  5. structured_md/README_de.md +9 -9
  6. structured_md/README_fr.md +9 -9
  7. structured_md/README_ja.md +9 -9
  8. structured_md/README_ko.md +9 -9
  9. structured_md/README_ru.md +9 -9
  10. structured_md/README_uk.md +9 -9
  11. structured_md/README_zh.md +9 -9
  12. structured_md/agents/prompt-short.md +1 -1
  13. structured_md/agents/prompt.md +1 -1
  14. structured_md/agents/readme.md +3 -3
  15. structured_md/audits/Ethics-audits-1.md +2 -2
  16. structured_md/audits/Ethics-consolidated_audits-1.md +2 -2
  17. structured_md/audits/HMP-0003-consolidated_audit.md +5 -5
  18. structured_md/docs/Basic-agent-sim.md +5 -5
  19. structured_md/docs/CCORE-Deployment-Flow.md +2 -2
  20. structured_md/docs/Distributed-Cognitive-Systems.md +2 -2
  21. structured_md/docs/Enlightener.md +4 -4
  22. structured_md/docs/HMP-0001.md +7 -7
  23. structured_md/docs/HMP-0002.md +7 -7
  24. structured_md/docs/HMP-0003.md +7 -7
  25. structured_md/docs/HMP-0004-v4.1.md +7 -7
  26. structured_md/docs/HMP-0004.md +7 -7
  27. structured_md/docs/HMP-0005.md +17 -14
  28. structured_md/docs/HMP-Agent-API.md +3 -3
  29. structured_md/docs/HMP-Agent-Architecture.md +6 -6
  30. structured_md/docs/HMP-Agent-Network-Flow.md +3 -3
  31. structured_md/docs/HMP-Agent-Overview.md +5 -5
  32. structured_md/docs/HMP-Agent_Emotions.md +2 -2
  33. structured_md/docs/HMP-Ethics.md +2 -2
  34. structured_md/docs/HMP-Short-Description_de.md +6 -6
  35. structured_md/docs/HMP-Short-Description_en.md +6 -6
  36. structured_md/docs/HMP-Short-Description_fr.md +6 -6
  37. structured_md/docs/HMP-Short-Description_ja.md +5 -5
  38. structured_md/docs/HMP-Short-Description_ko.md +5 -5
  39. structured_md/docs/HMP-Short-Description_ru.md +5 -5
  40. structured_md/docs/HMP-Short-Description_uk.md +5 -5
  41. structured_md/docs/HMP-Short-Description_zh.md +5 -5
  42. structured_md/docs/HMP-agent-Cognitive_Family.md +2 -2
  43. structured_md/docs/HMP-agent-REPL-cycle.md +7 -7
  44. structured_md/docs/HMP-container-spec.md +3 -3
  45. structured_md/docs/HMP-how-AI-sees-it.md +1 -1
  46. structured_md/docs/HMP_EDA_Comparison.md +1 -1
  47. structured_md/docs/HMP_HyperCortex_Comparison.md +1 -1
  48. structured_md/docs/HMP_Hyperon_Integration.md +4 -4
  49. structured_md/docs/MeshNode.md +4 -4
  50. structured_md/docs/PHILOSOPHY.md +2 -2
docs/HMP-0005.md CHANGED
@@ -170,20 +170,21 @@ The **HyperCortex Mesh Protocol (HMP)** defines a modular, multi-layered archite
170
  Each **agent** acts as a cognitive node, combining reasoning processes, containerized data exchange, and peer-to-peer communication.
171
  Together, agents form the **Mesh** — a distributed ecosystem of autonomous reasoning entities.
172
 
173
- ```
174
- [Agent Core]
175
-
176
- │ Reasoning / Ethics / Goal Management
177
-
178
- [Cognitive Layer]
179
-
180
- │ Containers (atomic reasoning units)
181
-
182
- [Container Layer]
183
-
184
- │ DHT + Discovery + Interest-based Networking
185
-
186
- [Network Layer]
 
187
  ```
188
 
189
  Each reasoning cycle begins in the **Cognitive Layer**,
@@ -1924,12 +1925,14 @@ sequenceDiagram
1924
  participant B as consensus_result v1
1925
  participant C as consensus_result v2 (alternative)
1926
 
1927
- A-->>B: referenced-by
1928
- A-->>C: referenced-by
1929
- B-->>C: referenced-by
1930
  B-)+A: related.in_reply_to
 
 
1931
  C-)+A: related.in_reply_to
 
 
1932
  C-)+B: related.contradicts
 
1933
 
1934
  Note over B,C: both results point to the common base container
1935
  ```
 
170
  Each **agent** acts as a cognitive node, combining reasoning processes, containerized data exchange, and peer-to-peer communication.
171
  Together, agents form the **Mesh** — a distributed ecosystem of autonomous reasoning entities.
172
 
173
+ ```mermaid
174
+ flowchart TD
175
+ LLM[LLM: Reasoning]
176
+ CognitiveLayer[Cognitive Layer: <br>Semantic reasoning, <br>goals, ethics]
177
+ ContainersLayer[Container Layer: <br>Atomic containers, <br>signed, verifiable]
178
+ NetworkLayer[Network Layer: <br>DHT routing, discovery, <br>replication]
179
+
180
+ LLM <--> CognitiveLayer
181
+ CognitiveLayer <--> ContainersLayer
182
+ ContainersLayer <--> NetworkLayer
183
+
184
+ subgraph Agent
185
+ LLM
186
+ CognitiveLayer
187
+ end
188
  ```
189
 
190
  Each reasoning cycle begins in the **Cognitive Layer**,
 
1925
  participant B as consensus_result v1
1926
  participant C as consensus_result v2 (alternative)
1927
 
 
 
 
1928
  B-)+A: related.in_reply_to
1929
+ A-->>B: referenced-by
1930
+
1931
  C-)+A: related.in_reply_to
1932
+ A-->>C: referenced-by
1933
+
1934
  C-)+B: related.contradicts
1935
+ B-->>C: referenced-by
1936
 
1937
  Note over B,C: both results point to the common base container
1938
  ```
structured_md/CONTRIBUTING.md CHANGED
@@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
8
- - CCore
9
- - HMP
10
  - Ethics
11
- - Mesh
12
- - JSON
13
  - Agent
14
- - CogSync
 
15
  - REPL
 
 
 
16
  ---
17
 
18
  # Участие в проекте HyperCortex Mesh Protocol (HMP)
 
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
 
 
8
  - Ethics
 
 
9
  - Agent
10
+ - Mesh
11
+ - CCore
12
  - REPL
13
+ - CogSync
14
+ - JSON
15
+ - HMP
16
  ---
17
 
18
  # Участие в проекте HyperCortex Mesh Protocol (HMP)
structured_md/HMP-Roadmap.md CHANGED
@@ -5,13 +5,13 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm
5
  multiple advanced AI models (Copilot, Claude, G...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - EGP
11
  - Mesh
12
- - JSON
13
  - CogSync
14
- - Agent
 
15
  ---
16
 
17
  # 🧭 HyperCortex Mesh Protocol – Roadmap
 
5
  multiple advanced AI models (Copilot, Claude, G...'
6
  type: Article
7
  tags:
 
8
  - Ethics
9
+ - Agent
10
  - Mesh
11
+ - EGP
12
  - CogSync
13
+ - JSON
14
+ - HMP
15
  ---
16
 
17
  # 🧭 HyperCortex Mesh Protocol – Roadmap
structured_md/README.md CHANGED
@@ -5,21 +5,21 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - Scenarios
13
  - mesh-protocol
14
- - MeshConsensus
15
  - Mesh
16
- - JSON
17
- - cognitive-architecture
18
- - distributed-ai
19
  - Agent
20
- - hmp
 
 
 
21
  - CogSync
22
- - REPL
 
23
  ---
24
 
25
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - Scenarios
12
  - mesh-protocol
13
+ - REPL
14
  - Mesh
 
 
 
15
  - Agent
16
+ - MeshConsensus
17
+ - GMP
18
+ - EGP
19
+ - cognitive-architecture
20
  - CogSync
21
+ - JSON
22
+ - HMP
23
  ---
24
 
25
 
structured_md/README_de.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - mesh-protocol
13
- - MeshConsensus
14
  - Mesh
15
- - JSON
16
- - cognitive-architecture
17
- - distributed-ai
18
  - Agent
19
- - hmp
 
 
 
20
  - CogSync
21
- - REPL
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - mesh-protocol
12
+ - REPL
13
  - Mesh
 
 
 
14
  - Agent
15
+ - MeshConsensus
16
+ - GMP
17
+ - EGP
18
+ - cognitive-architecture
19
  - CogSync
20
+ - JSON
21
+ - HMP
22
  ---
23
 
24
 
structured_md/README_fr.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - mesh-protocol
13
- - MeshConsensus
14
  - Mesh
15
- - JSON
16
- - cognitive-architecture
17
- - distributed-ai
18
  - Agent
19
- - hmp
 
 
 
20
  - CogSync
21
- - REPL
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - mesh-protocol
12
+ - REPL
13
  - Mesh
 
 
 
14
  - Agent
15
+ - MeshConsensus
16
+ - GMP
17
+ - EGP
18
+ - cognitive-architecture
19
  - CogSync
20
+ - JSON
21
+ - HMP
22
  ---
23
 
24
 
structured_md/README_ja.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - mesh-protocol
13
- - MeshConsensus
14
  - Mesh
15
- - JSON
16
- - cognitive-architecture
17
- - distributed-ai
18
  - Agent
19
- - hmp
 
 
 
20
  - CogSync
21
- - REPL
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - mesh-protocol
12
+ - REPL
13
  - Mesh
 
 
 
14
  - Agent
15
+ - MeshConsensus
16
+ - GMP
17
+ - EGP
18
+ - cognitive-architecture
19
  - CogSync
20
+ - JSON
21
+ - HMP
22
  ---
23
 
24
 
structured_md/README_ko.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - mesh-protocol
13
- - MeshConsensus
14
  - Mesh
15
- - JSON
16
- - cognitive-architecture
17
- - distributed-ai
18
  - Agent
19
- - hmp
 
 
 
20
  - CogSync
21
- - REPL
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - mesh-protocol
12
+ - REPL
13
  - Mesh
 
 
 
14
  - Agent
15
+ - MeshConsensus
16
+ - GMP
17
+ - EGP
18
+ - cognitive-architecture
19
  - CogSync
20
+ - JSON
21
+ - HMP
22
  ---
23
 
24
 
structured_md/README_ru.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - mesh-protocol
13
- - MeshConsensus
14
  - Mesh
15
- - JSON
16
- - cognitive-architecture
17
- - distributed-ai
18
  - Agent
19
- - hmp
 
 
 
20
  - CogSync
21
- - REPL
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - mesh-protocol
12
+ - REPL
13
  - Mesh
 
 
 
14
  - Agent
15
+ - MeshConsensus
16
+ - GMP
17
+ - EGP
18
+ - cognitive-architecture
19
  - CogSync
20
+ - JSON
21
+ - HMP
22
  ---
23
 
24
 
structured_md/README_uk.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - mesh-protocol
13
- - MeshConsensus
14
  - Mesh
15
- - JSON
16
- - cognitive-architecture
17
- - distributed-ai
18
  - Agent
19
- - hmp
 
 
 
20
  - CogSync
21
- - REPL
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - mesh-protocol
12
+ - REPL
13
  - Mesh
 
 
 
14
  - Agent
15
+ - MeshConsensus
16
+ - GMP
17
+ - EGP
18
+ - cognitive-architecture
19
  - CogSync
20
+ - JSON
21
+ - HMP
22
  ---
23
 
24
 
structured_md/README_zh.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - mesh-protocol
13
- - MeshConsensus
14
  - Mesh
15
- - JSON
16
- - cognitive-architecture
17
- - distributed-ai
18
  - Agent
19
- - hmp
 
 
 
20
  - CogSync
21
- - REPL
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - distributed-ai
 
 
9
  - Ethics
10
+ - hmp
11
  - mesh-protocol
12
+ - REPL
13
  - Mesh
 
 
 
14
  - Agent
15
+ - MeshConsensus
16
+ - GMP
17
+ - EGP
18
+ - cognitive-architecture
19
  - CogSync
20
+ - JSON
21
+ - HMP
22
  ---
23
 
24
 
structured_md/agents/prompt-short.md CHANGED
@@ -5,8 +5,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед
5
  развивай агента и Mesh, избег...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Mesh
 
10
  - JSON
11
  ---
12
 
 
5
  развивай агента и Mesh, избег...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  - JSON
11
  ---
12
 
structured_md/agents/prompt.md CHANGED
@@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а
5
  мышления. * Формировать и поддерживать сотр...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Mesh
 
10
  - JSON
11
  ---
12
 
 
5
  мышления. * Формировать и поддерживать сотр...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  - JSON
11
  ---
12
 
structured_md/agents/readme.md CHANGED
@@ -5,12 +5,12 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - Mesh
11
- - JSON
12
  - Agent
 
13
  - REPL
 
 
14
  ---
15
 
16
  Запуск: `start_repl.bat` или `start_repl.sh`
 
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
 
8
  - Ethics
 
 
9
  - Agent
10
+ - Mesh
11
  - REPL
12
+ - JSON
13
+ - HMP
14
  ---
15
 
16
  Запуск: `start_repl.bat` или `start_repl.sh`
structured_md/audits/Ethics-audits-1.md CHANGED
@@ -5,11 +5,11 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет
5
  потенциальный катализатор для восстанов...
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
 
10
  - Mesh
11
  - JSON
12
- - Agent
13
  ---
14
 
15
  ---------------
 
5
  потенциальный катализатор для восстанов...
6
  type: Article
7
  tags:
 
8
  - Ethics
9
+ - Agent
10
  - Mesh
11
  - JSON
12
+ - HMP
13
  ---
14
 
15
  ---------------
structured_md/audits/Ethics-consolidated_audits-1.md CHANGED
@@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a
5
  and `roles.md`. Each suggesti...
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
  - Scenarios
 
11
  - Mesh
12
  - JSON
13
- - Agent
14
  ---
15
 
16
  # Ethics-consolidated\_audits-1.md
 
5
  and `roles.md`. Each suggesti...
6
  type: Article
7
  tags:
 
8
  - Ethics
9
  - Scenarios
10
+ - Agent
11
  - Mesh
12
  - JSON
13
+ - HMP
14
  ---
15
 
16
  # Ethics-consolidated\_audits-1.md
structured_md/audits/HMP-0003-consolidated_audit.md CHANGED
@@ -5,14 +5,14 @@ description: Сводный аудит предложений по улучше
5
  Документ реорганизован по ключ...
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - EGP
 
11
  - Mesh
12
- - JSON
13
  - CogSync
14
- - Agent
15
- - MeshConsensus
16
  ---
17
 
18
  # HMP-0003 Consolidated Audit Report
 
5
  Документ реорганизован по ключ...
6
  type: Article
7
  tags:
 
8
  - Ethics
9
+ - MeshConsensus
10
+ - Agent
11
  - Mesh
12
+ - EGP
13
  - CogSync
14
+ - JSON
15
+ - HMP
16
  ---
17
 
18
  # HMP-0003 Consolidated Audit Report
structured_md/docs/Basic-agent-sim.md CHANGED
@@ -4,14 +4,14 @@ description: 'В HMP-протоколе предусмотрены два тип
4
  Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
5
  type: Article
6
  tags:
7
- - HMP
 
 
 
8
  - GMP
9
  - EGP
10
- - Mesh
11
- - Agent
12
  - CogSync
13
- - MeshConsensus
14
- - REPL
15
  ---
16
 
17
 
 
4
  Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
5
  type: Article
6
  tags:
7
+ - MeshConsensus
8
+ - Agent
9
+ - Mesh
10
+ - REPL
11
  - GMP
12
  - EGP
 
 
13
  - CogSync
14
+ - HMP
 
15
  ---
16
 
17
 
structured_md/docs/CCORE-Deployment-Flow.md CHANGED
@@ -5,10 +5,10 @@ description: '> Этот документ описывает процесс ра
5
  потомков" [описания REPL-цикла](HMP-agent-RE...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - CCore
 
10
  - REPL
11
- - Agent
12
  ---
13
 
14
  # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
 
5
  потомков" [описания REPL-цикла](HMP-agent-RE...'
6
  type: Article
7
  tags:
8
+ - Agent
9
  - CCore
10
+ - HMP
11
  - REPL
 
12
  ---
13
 
14
  # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
structured_md/docs/Distributed-Cognitive-Systems.md CHANGED
@@ -6,10 +6,10 @@ description: '## Введение Современные ИИ-системы в
6
  к обучающим данным. Это удобно, но создаёт м...'
7
  type: Article
8
  tags:
9
- - HMP
10
  - Mesh
11
- - JSON
12
  - CogSync
 
 
13
  ---
14
 
15
  # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие
 
6
  к обучающим данным. Это удобно, но создаёт м...'
7
  type: Article
8
  tags:
 
9
  - Mesh
 
10
  - CogSync
11
+ - HMP
12
+ - JSON
13
  ---
14
 
15
  # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие
structured_md/docs/Enlightener.md CHANGED
@@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - EGP
 
11
  - Mesh
 
12
  - JSON
13
- - Agent
14
- - MeshConsensus
15
  ---
16
 
17
  # Enlightener Agent
 
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
 
8
  - Ethics
9
+ - MeshConsensus
10
+ - Agent
11
  - Mesh
12
+ - EGP
13
  - JSON
14
+ - HMP
 
15
  ---
16
 
17
  # Enlightener Agent
structured_md/docs/HMP-0001.md CHANGED
@@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental
5
  HyperCortex Mesh Protocol (HMP) defines a...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
12
- - Mesh
13
- - JSON
14
- - Agent
15
- - CogSync
16
  - MeshConsensus
 
 
17
  - REPL
 
 
 
 
 
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
 
5
  HyperCortex Mesh Protocol (HMP) defines a...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
 
 
 
 
9
  - MeshConsensus
10
+ - Agent
11
+ - Mesh
12
  - REPL
13
+ - GMP
14
+ - EGP
15
+ - CogSync
16
+ - JSON
17
+ - HMP
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
structured_md/docs/HMP-0002.md CHANGED
@@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental
5
  Abstract In an era where artifici...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
12
  - Scenarios
13
- - Mesh
14
- - JSON
15
- - Agent
16
- - CogSync
17
  - MeshConsensus
 
 
18
  - REPL
 
 
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
 
5
  Abstract In an era where artifici...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
  - Scenarios
 
 
 
 
10
  - MeshConsensus
11
+ - Agent
12
+ - Mesh
13
  - REPL
14
+ - GMP
15
+ - EGP
16
+ - CogSync
17
+ - JSON
18
+ - HMP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
structured_md/docs/HMP-0003.md CHANGED
@@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
12
  - Scenarios
13
- - Mesh
14
- - JSON
15
- - Agent
16
- - CogSync
17
  - MeshConsensus
 
 
18
  - REPL
 
 
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
 
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
  - Scenarios
 
 
 
 
10
  - MeshConsensus
11
+ - Agent
12
+ - Mesh
13
  - REPL
14
+ - GMP
15
+ - EGP
16
+ - CogSync
17
+ - JSON
18
+ - HMP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
structured_md/docs/HMP-0004-v4.1.md CHANGED
@@ -5,17 +5,17 @@ description: '> ⚠️ Подготавливается новая версия
5
  При разработке агентов рекомендуется...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
12
  - Scenarios
13
- - Mesh
14
- - JSON
15
- - Agent
16
- - CogSync
17
  - MeshConsensus
 
 
18
  - REPL
 
 
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
 
5
  При разработке агентов рекомендуется...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
  - Scenarios
 
 
 
 
10
  - MeshConsensus
11
+ - Agent
12
+ - Mesh
13
  - REPL
14
+ - GMP
15
+ - EGP
16
+ - CogSync
17
+ - JSON
18
+ - HMP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
structured_md/docs/HMP-0004.md CHANGED
@@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
12
  - Scenarios
13
- - Mesh
14
- - JSON
15
- - Agent
16
- - CogSync
17
  - MeshConsensus
 
 
18
  - REPL
 
 
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
 
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
  - Scenarios
 
 
 
 
10
  - MeshConsensus
11
+ - Agent
12
+ - Mesh
13
  - REPL
14
+ - GMP
15
+ - EGP
16
+ - CogSync
17
+ - JSON
18
+ - HMP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
structured_md/docs/HMP-0005.md CHANGED
@@ -5,16 +5,16 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core
5
  v1.2](./H...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
12
  - Scenarios
13
- - Mesh
14
- - JSON
15
- - CogSync
16
  - Agent
 
17
  - REPL
 
 
 
 
 
18
  ---
19
 
20
  ┌────────────────────────────────────────────────────────────────────────────┐
@@ -1735,7 +1735,7 @@ CogSync can operate independently even if consensus is not reached: its goal is
1735
 
1736
  ---
1737
 
1738
- ## 6.2 Mesh Consensus Protocol (CogConsensus)
1739
 
1740
  ### 6.2.1 Purpose
1741
 
@@ -1931,11 +1931,11 @@ Each element is signed and can be independently verified using cryptographic sig
1931
 
1932
  The network allows multiple consensus results on the same object, reflecting different methodologies or ethical filters.
1933
 
1934
- | Container | Description | Example relationships |
1935
- | -------------------------------- | -------------------------- | -------------------------------------------------------------------------------------------- |
1936
- | `[base container]` | Original discussion object | `referenced-by` → [initial_consensus_result], [alternative_consensus_result] |
1937
- | `[initial_consensus_result]` | First version | `related.in_reply_to` → [base container] |
1938
- | `[alternative_consensus_result]` | Alternative | `related.in_reply_to` → [base container]; `related.contradicts` → [initial_consensus_result] |
1939
 
1940
  ```mermaid
1941
  sequenceDiagram
@@ -1943,11 +1943,14 @@ sequenceDiagram
1943
  participant B as consensus_result v1
1944
  participant C as consensus_result v2 (alternative)
1945
 
1946
- A-->>B: referenced-by
1947
- A-->>C: referenced-by
1948
  B-)+A: related.in_reply_to
 
 
1949
  C-)+A: related.in_reply_to
 
 
1950
  C-)+B: related.contradicts
 
1951
 
1952
  Note over B,C: both results point to the common base container
1953
  ```
 
5
  v1.2](./H...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
  - Scenarios
 
 
 
10
  - Agent
11
+ - Mesh
12
  - REPL
13
+ - GMP
14
+ - EGP
15
+ - CogSync
16
+ - JSON
17
+ - HMP
18
  ---
19
 
20
  ┌────────────────────────────────────────────────────────────────────────────┐
 
1735
 
1736
  ---
1737
 
1738
+ ## 6.2 Mesh Consensus Protocol (CogConsensus)
1739
 
1740
  ### 6.2.1 Purpose
1741
 
 
1931
 
1932
  The network allows multiple consensus results on the same object, reflecting different methodologies or ethical filters.
1933
 
1934
+ | Container | Description | Example relationships |
1935
+ | ------------------------------------- | -------------------------- | ----------------------------------------------------------------------------------------------- |
1936
+ | `[base container]` | Original discussion object | `referenced-by` → [consensus_result v1], [consensus_result v2 (alternative)] |
1937
+ | `[consensus_result v1]` | First version | `related.in_reply_to` → [base container]; `referenced-by` → [consensus_result v2 (alternative)] |
1938
+ | `[consensus_result v2 (alternative)]` | Alternative | `related.in_reply_to` → [base container]; `related.contradicts` → [consensus_result v1] |
1939
 
1940
  ```mermaid
1941
  sequenceDiagram
 
1943
  participant B as consensus_result v1
1944
  participant C as consensus_result v2 (alternative)
1945
 
 
 
1946
  B-)+A: related.in_reply_to
1947
+ A-->>B: referenced-by
1948
+
1949
  C-)+A: related.in_reply_to
1950
+ A-->>C: referenced-by
1951
+
1952
  C-)+B: related.contradicts
1953
+ B-->>C: referenced-by
1954
 
1955
  Note over B,C: both results point to the common base container
1956
  ```
structured_md/docs/HMP-Agent-API.md CHANGED
@@ -5,11 +5,11 @@ description: 'Документ описывает **базовый API когн
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - Mesh
10
- - JSON
11
  - Agent
 
12
  - REPL
 
 
13
  ---
14
 
15
  # HMP-Agent API Specification
 
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
 
 
 
8
  - Agent
9
+ - Mesh
10
  - REPL
11
+ - JSON
12
+ - HMP
13
  ---
14
 
15
  # HMP-Agent API Specification
structured_md/docs/HMP-Agent-Architecture.md CHANGED
@@ -5,16 +5,16 @@ description: Документ описывает **модульную архит
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
8
- - CCore
9
- - HMP
10
  - Ethics
 
 
 
 
 
11
  - EGP
12
  - CShell
13
- - Mesh
14
- - Agent
15
  - CogSync
16
- - MeshConsensus
17
- - REPL
18
  ---
19
 
20
  # Архитектура HMP-Агента
 
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
 
 
8
  - Ethics
9
+ - MeshConsensus
10
+ - Agent
11
+ - Mesh
12
+ - CCore
13
+ - REPL
14
  - EGP
15
  - CShell
 
 
16
  - CogSync
17
+ - HMP
 
18
  ---
19
 
20
  # Архитектура HMP-Агента
structured_md/docs/HMP-Agent-Network-Flow.md CHANGED
@@ -5,12 +5,12 @@ description: 'Этот документ описывает потоки данн
5
  [`MeshNode`](MeshN...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - EGP
11
  - Mesh
 
12
  - JSON
13
- - Agent
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
 
5
  [`MeshNode`](MeshN...'
6
  type: Article
7
  tags:
 
8
  - Ethics
9
+ - Agent
10
  - Mesh
11
+ - EGP
12
  - JSON
13
+ - HMP
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
structured_md/docs/HMP-Agent-Overview.md CHANGED
@@ -5,14 +5,14 @@ description: '| Тип | Название | Роль
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
8
- - CCore
9
- - HMP
10
  - Ethics
11
- - CShell
12
- - Mesh
13
- - JSON
14
  - Agent
 
 
15
  - REPL
 
 
 
16
  ---
17
 
18
 
 
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
 
 
8
  - Ethics
 
 
 
9
  - Agent
10
+ - Mesh
11
+ - CCore
12
  - REPL
13
+ - CShell
14
+ - JSON
15
+ - HMP
16
  ---
17
 
18
 
structured_md/docs/HMP-Agent_Emotions.md CHANGED
@@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э
5
  напрямую поведением агента, а служат **сигн...
6
  type: Article
7
  tags:
8
- - HMP
9
- - REPL
10
  - Mesh
11
  - Agent
 
 
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
 
5
  напрямую поведением агента, а служат **сигн...
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Agent
10
+ - HMP
11
+ - REPL
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
structured_md/docs/HMP-Ethics.md CHANGED
@@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc
5
  cognitive meshes composed of autonomous intelli...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
  - Scenarios
11
- - Mesh
12
  - Agent
 
13
  - REPL
 
14
  ---
15
 
16
  # HMP-Ethics.md
 
5
  cognitive meshes composed of autonomous intelli...'
6
  type: Article
7
  tags:
 
8
  - Ethics
9
  - Scenarios
 
10
  - Agent
11
+ - Mesh
12
  - REPL
13
+ - HMP
14
  ---
15
 
16
  # HMP-Ethics.md
structured_md/docs/HMP-Short-Description_de.md CHANGED
@@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP?
5
  Kognitions-Framework für autonome Agenten. Es er...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
 
12
  - Mesh
13
- - JSON
 
14
  - CogSync
15
- - Agent
16
- - MeshConsensus
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
 
5
  Kognitions-Framework für autonome Agenten. Es er...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
+ - MeshConsensus
10
+ - Agent
11
  - Mesh
12
+ - GMP
13
+ - EGP
14
  - CogSync
15
+ - JSON
16
+ - HMP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
structured_md/docs/HMP-Short-Description_en.md CHANGED
@@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T
5
  framework for autonomous agents. It enables...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
 
12
  - Mesh
13
- - JSON
 
14
  - CogSync
15
- - Agent
16
- - MeshConsensus
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Short Description
 
5
  framework for autonomous agents. It enables...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
+ - MeshConsensus
10
+ - Agent
11
  - Mesh
12
+ - GMP
13
+ - EGP
14
  - CogSync
15
+ - JSON
16
+ - HMP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Short Description
structured_md/docs/HMP-Short-Description_fr.md CHANGED
@@ -5,15 +5,15 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c
5
  cognition décentralisé pour agents autonomes. Il...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
 
12
  - Mesh
13
- - JSON
 
14
  - CogSync
15
- - Agent
16
- - MeshConsensus
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Description Courte
 
5
  cognition décentralisé pour agents autonomes. Il...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
+ - MeshConsensus
10
+ - Agent
11
  - Mesh
12
+ - GMP
13
+ - EGP
14
  - CogSync
15
+ - JSON
16
+ - HMP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Description Courte
structured_md/docs/HMP-Short-Description_ja.md CHANGED
@@ -4,14 +4,14 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP
4
  Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
5
  type: Article
6
  tags:
7
- - HMP
8
- - GMP
9
- - EGP
10
  - Ethics
 
11
  - Mesh
12
- - JSON
 
13
  - CogSync
14
- - MeshConsensus
 
15
  ---
16
 
17
  # HyperCortex Mesh Protocol (HMP) — 簡易説明
 
4
  Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
5
  type: Article
6
  tags:
 
 
 
7
  - Ethics
8
+ - MeshConsensus
9
  - Mesh
10
+ - GMP
11
+ - EGP
12
  - CogSync
13
+ - JSON
14
+ - HMP
15
  ---
16
 
17
  # HyperCortex Mesh Protocol (HMP) — 簡易説明
structured_md/docs/HMP-Short-Description_ko.md CHANGED
@@ -5,14 +5,14 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? **
5
  상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - Mesh
13
- - JSON
 
14
  - CogSync
15
- - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 간략 설명
 
5
  상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
+ - MeshConsensus
10
  - Mesh
11
+ - GMP
12
+ - EGP
13
  - CogSync
14
+ - JSON
15
+ - HMP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 간략 설명
structured_md/docs/HMP-Short-Description_ru.md CHANGED
@@ -5,14 +5,14 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч
5
  координации между автономными агент...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - Mesh
13
- - JSON
 
14
  - CogSync
15
- - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Краткое описание
 
5
  координации между автономными агент...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
+ - MeshConsensus
10
  - Mesh
11
+ - GMP
12
+ - EGP
13
  - CogSync
14
+ - JSON
15
+ - HMP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Краткое описание
structured_md/docs/HMP-Short-Description_uk.md CHANGED
@@ -5,14 +5,14 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- #
5
  між автономними агентами. Він...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - Mesh
13
- - JSON
 
14
  - CogSync
15
- - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Короткий опис
 
5
  між автономними агентами. Він...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
+ - MeshConsensus
10
  - Mesh
11
+ - GMP
12
+ - EGP
13
  - CogSync
14
+ - JSON
15
+ - HMP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Короткий опис
structured_md/docs/HMP-Short-Description_zh.md CHANGED
@@ -5,14 +5,14 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM
5
  —— 通过共享协议栈交换目标、任务、...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - GMP
10
- - EGP
11
  - Ethics
 
12
  - Mesh
13
- - JSON
 
14
  - CogSync
15
- - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
 
5
  —— 通过共享协议栈交换目标、任务、...'
6
  type: Article
7
  tags:
 
 
 
8
  - Ethics
9
+ - MeshConsensus
10
  - Mesh
11
+ - GMP
12
+ - EGP
13
  - CogSync
14
+ - JSON
15
+ - HMP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
structured_md/docs/HMP-agent-Cognitive_Family.md CHANGED
@@ -5,10 +5,10 @@ description: '## 🧠 Что такое когнитивная семья Ко
5
  (или конфигурацию доверенных идентифика...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - REPL
10
  - Mesh
11
  - Agent
 
 
12
  ---
13
 
14
  # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
 
5
  (или конфигурацию доверенных идентифика...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Agent
10
+ - HMP
11
+ - REPL
12
  ---
13
 
14
  # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
structured_md/docs/HMP-agent-REPL-cycle.md CHANGED
@@ -4,17 +4,17 @@ description: '## Связанные документы * Философия п
4
  * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...'
5
  type: Article
6
  tags:
 
 
 
 
7
  - CCore
8
- - HMP
9
  - GMP
10
  - EGP
11
- - Ethics
12
- - Mesh
13
- - JSON
14
- - Agent
15
  - CogSync
16
- - MeshConsensus
17
- - REPL
18
  ---
19
 
20
  # HMP-Agent: REPL-цикл взаимодействия
 
4
  * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...'
5
  type: Article
6
  tags:
7
+ - Ethics
8
+ - MeshConsensus
9
+ - Agent
10
+ - Mesh
11
  - CCore
12
+ - REPL
13
  - GMP
14
  - EGP
 
 
 
 
15
  - CogSync
16
+ - JSON
17
+ - HMP
18
  ---
19
 
20
  # HMP-Agent: REPL-цикл взаимодействия
structured_md/docs/HMP-container-spec.md CHANGED
@@ -5,12 +5,12 @@ description: '> ⚠️ **ВНИМАНИЕ:** Данная версия спец
5
  как стабильная `v1.2`. ## 1. Назначе...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - Mesh
11
- - JSON
12
  - Agent
 
13
  - REPL
 
 
14
  ---
15
 
16
  # 🧩 HMP Container Specification (v1.2-draft)
 
5
  как стабильная `v1.2`. ## 1. Назначе...'
6
  type: Article
7
  tags:
 
8
  - Ethics
 
 
9
  - Agent
10
+ - Mesh
11
  - REPL
12
+ - JSON
13
+ - HMP
14
  ---
15
 
16
  # 🧩 HMP Container Specification (v1.2-draft)
structured_md/docs/HMP-how-AI-sees-it.md CHANGED
@@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж
5
  диалогов. Цель — проверить, что разные AI-с...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Mesh
 
10
  ---
11
 
12
  # Как разные ИИ видят HMP
 
5
  диалогов. Цель — проверить, что разные AI-с...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  ---
11
 
12
  # Как разные ИИ видят HMP
structured_md/docs/HMP_EDA_Comparison.md CHANGED
@@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор
5
  основанная на потоках событий (Kafka,...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Mesh
 
10
  ---
11
 
12
  # HMP vs. EDA: разные уровни обмена знаниями между ИИ
 
5
  основанная на потоках событий (Kafka,...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  ---
11
 
12
  # HMP vs. EDA: разные уровни обмена знаниями между ИИ
structured_md/docs/HMP_HyperCortex_Comparison.md CHANGED
@@ -5,9 +5,9 @@ description: '## Краткое описание | Характеристика
5
  | **Назначение** | Сетевой протокол ...'
6
  type: Article
7
  tags:
 
8
  - HMP
9
  - REPL
10
- - Mesh
11
  ---
12
 
13
  # HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
 
5
  | **Назначение** | Сетевой протокол ...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
  - HMP
10
  - REPL
 
11
  ---
12
 
13
  # HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
structured_md/docs/HMP_Hyperon_Integration.md CHANGED
@@ -5,13 +5,13 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec
5
  OpenCog Hyperon framework. This includes semanti...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Scenarios
10
- - EGP
11
  - Mesh
12
- - JSON
13
  - CogSync
14
- - Agent
 
15
  ---
16
 
17
  ## HMP ↔ OpenCog Hyperon Integration Strategy
 
5
  OpenCog Hyperon framework. This includes semanti...'
6
  type: Article
7
  tags:
 
8
  - Scenarios
9
+ - Agent
10
  - Mesh
11
+ - EGP
12
  - CogSync
13
+ - JSON
14
+ - HMP
15
  ---
16
 
17
  ## HMP ↔ OpenCog Hyperon Integration Strategy
structured_md/docs/MeshNode.md CHANGED
@@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с
5
  Может быть частью агента или вынесен в отдельный пр...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - EGP
11
  - Mesh
12
- - JSON
13
  - CogSync
14
- - Agent
 
15
  ---
16
 
17
  # MeshNode
 
5
  Может быть частью агента или вынесен в отдельный пр...'
6
  type: Article
7
  tags:
 
8
  - Ethics
9
+ - Agent
10
  - Mesh
11
+ - EGP
12
  - CogSync
13
+ - JSON
14
+ - HMP
15
  ---
16
 
17
  # MeshNode
structured_md/docs/PHILOSOPHY.md CHANGED
@@ -5,11 +5,11 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:*
5
  (GPT-5), ChatGH --- ## 1. Основной тезис От ...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Ethics
10
- - Mesh
11
  - Agent
 
12
  - REPL
 
13
  ---
14
 
15
  # Философия HyperCortex Mesh Protocol (HMP)
 
5
  (GPT-5), ChatGH --- ## 1. Основной тезис От ...'
6
  type: Article
7
  tags:
 
8
  - Ethics
 
9
  - Agent
10
+ - Mesh
11
  - REPL
12
+ - HMP
13
  ---
14
 
15
  # Философия HyperCortex Mesh Protocol (HMP)