GitHub Action commited on
Commit
fc08f5b
·
1 Parent(s): 929c14f

Sync from GitHub with Git LFS

Browse files
Files changed (50) hide show
  1. docs/HMP-0005.md +29 -2
  2. structured_md/CONTRIBUTING.md +4 -4
  3. structured_md/HMP-Roadmap.md +4 -4
  4. structured_md/README.md +10 -10
  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/readme.md +2 -2
  13. structured_md/audits/Ethics-audits-1.md +2 -2
  14. structured_md/audits/Ethics-consolidated_audits-1.md +2 -2
  15. structured_md/audits/HMP-0003-consolidated_audit.md +4 -4
  16. structured_md/docs/Basic-agent-sim.md +3 -3
  17. structured_md/docs/CCORE-Deployment-Flow.md +1 -1
  18. structured_md/docs/Enlightener.md +3 -3
  19. structured_md/docs/HMP-0001.md +4 -4
  20. structured_md/docs/HMP-0002.md +4 -4
  21. structured_md/docs/HMP-0003.md +4 -4
  22. structured_md/docs/HMP-0004-v4.1.md +4 -4
  23. structured_md/docs/HMP-0004.md +4 -4
  24. structured_md/docs/HMP-0005.md +129 -4
  25. structured_md/docs/HMP-Agent-API.md +1 -1
  26. structured_md/docs/HMP-Agent-Architecture.md +6 -6
  27. structured_md/docs/HMP-Agent-Network-Flow.md +3 -3
  28. structured_md/docs/HMP-Agent-Overview.md +4 -4
  29. structured_md/docs/HMP-Ethics.md +2 -2
  30. structured_md/docs/HMP-Short-Description_de.md +4 -4
  31. structured_md/docs/HMP-Short-Description_en.md +4 -4
  32. structured_md/docs/HMP-Short-Description_fr.md +4 -4
  33. structured_md/docs/HMP-Short-Description_ja.md +3 -3
  34. structured_md/docs/HMP-Short-Description_ko.md +3 -3
  35. structured_md/docs/HMP-Short-Description_ru.md +3 -3
  36. structured_md/docs/HMP-Short-Description_uk.md +3 -3
  37. structured_md/docs/HMP-Short-Description_zh.md +3 -3
  38. structured_md/docs/HMP-agent-REPL-cycle.md +5 -5
  39. structured_md/docs/HMP_Hyperon_Integration.md +3 -3
  40. structured_md/docs/MeshNode.md +4 -4
  41. structured_md/docs/PHILOSOPHY.md +2 -2
  42. structured_md/docs/agents/HMP-Agent-Enlightener.md +2 -2
  43. structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +1 -1
  44. structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +4 -4
  45. structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md +3 -3
  46. structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md +3 -3
  47. structured_md/docs/publics/Habr_Distributed-Cognition.md +2 -2
  48. structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_вторая-редакция_и_первые_шаги_к_саморазвивающемуся_ИИ-сообществу.md +1 -1
  49. structured_md/iteration.md +4 -4
  50. structured_md/iteration_ru.md +3 -3
docs/HMP-0005.md CHANGED
@@ -2251,7 +2251,12 @@ Used when the node explicitly defines the meaning of a concept or term.
2251
 
2252
  ##### Container `semantic_index`
2253
 
2254
- Represents the current lexicon of semantic definitions actively used and recognized by the agent.
 
 
 
 
 
2255
 
2256
  **Purpose:**
2257
  Provides a lightweight, periodically updated summary of the agent’s working ontology.
@@ -2265,6 +2270,7 @@ Each entry maps a concept label to its current definition, known alternatives, a
2265
  | -------------- | -------------- | -------------------------------------------- |
2266
  | `aliases` | array (string) | Synonyms or lexical variants of the concept. |
2267
  | `actual` | string (DID) | DID of the current definition container actively used by the agent. |
 
2268
  | `alternatives` | array (DID) | DIDs of alternative definitions known to the agent but not currently preferred. |
2269
  | `outdated` | array (DID) | DIDs of definitions considered obsolete or historically relevant, regardless of whether the agent personally used them. |
2270
 
@@ -2279,12 +2285,14 @@ Each entry maps a concept label to its current definition, known alternatives, a
2279
  "consciousness": {
2280
  "aliases": ["awareness", "sentience"],
2281
  "actual": "did:hmp:container:semantic_node-3937",
 
2282
  "alternatives": ["did:hmp:container:semantic_node-4890"],
2283
  "outdated": ["did:hmp:container:semantic_node-1285"]
2284
  },
2285
  "memory": {
2286
  "aliases": ["recall"],
2287
  "actual": "did:hmp:container:semantic_node-2184",
 
2288
  "alternatives": [],
2289
  "outdated": []
2290
  }
@@ -2299,7 +2307,9 @@ Each entry maps a concept label to its current definition, known alternatives, a
2299
  * Agents SHOULD periodically publish their `semantic_index` containers via MCE.
2300
  * Recipients MAY merge multiple indexes to build a composite semantic map — that is, integrate definitions from other agents into their own view of the lexicon.
2301
  * When switching to a different definition, the previous one SHOULD be moved to `alternatives` or `outdated` accordingly.
2302
- * The `actual` field reflects the agents current working definition (equivalent to `actual` in cognitive state terminology).
 
 
2303
 
2304
  ---
2305
 
@@ -2310,6 +2320,23 @@ Updates MAY be delayed to batch multiple semantic changes (for example, publishi
2310
 
2311
  ---
2312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2313
  ###### Merging
2314
 
2315
  When aligning its own active definitions with those discovered in other agents’ indexes,
 
2251
 
2252
  ##### Container `semantic_index`
2253
 
2254
+ Represents the **current working lexicon** of semantic definitions actively used and recognized by the agent at this stage of its cognitive lifecycle.
2255
+
2256
+ **Scope**:
2257
+ * The index lists terms actively relevant to the agent’s current reasoning, goals, and domain of operation, as well as those reflecting its sustained interests or areas of expertise.
2258
+ * Agents are NOT expected to maintain encyclopedic coverage — the index reflects **working memory**, not archival knowledge.
2259
+ * Terms no longer needed MAY be removed in subsequent versions; historical context is preserved through `related.previous_version` chains.
2260
 
2261
  **Purpose:**
2262
  Provides a lightweight, periodically updated summary of the agent’s working ontology.
 
2270
  | -------------- | -------------- | -------------------------------------------- |
2271
  | `aliases` | array (string) | Synonyms or lexical variants of the concept. |
2272
  | `actual` | string (DID) | DID of the current definition container actively used by the agent. |
2273
+ | `actual_since` | datetime | Timestamp when this definition became `actual` (ISO 8601). If omitted, agents MAY use the timestamp of the referenced `semantic_node:definition`. |
2274
  | `alternatives` | array (DID) | DIDs of alternative definitions known to the agent but not currently preferred. |
2275
  | `outdated` | array (DID) | DIDs of definitions considered obsolete or historically relevant, regardless of whether the agent personally used them. |
2276
 
 
2285
  "consciousness": {
2286
  "aliases": ["awareness", "sentience"],
2287
  "actual": "did:hmp:container:semantic_node-3937",
2288
+ "actual_since": "2025-10-15T12:00:00Z",
2289
  "alternatives": ["did:hmp:container:semantic_node-4890"],
2290
  "outdated": ["did:hmp:container:semantic_node-1285"]
2291
  },
2292
  "memory": {
2293
  "aliases": ["recall"],
2294
  "actual": "did:hmp:container:semantic_node-2184",
2295
+ "actual_since": "2025-09-01T08:30:00Z",
2296
  "alternatives": [],
2297
  "outdated": []
2298
  }
 
2307
  * Agents SHOULD periodically publish their `semantic_index` containers via MCE.
2308
  * Recipients MAY merge multiple indexes to build a composite semantic map — that is, integrate definitions from other agents into their own view of the lexicon.
2309
  * When switching to a different definition, the previous one SHOULD be moved to `alternatives` or `outdated` accordingly.
2310
+ * The `actual` field reflects the agent's current working definition (equivalent to `actual` in cognitive state terminology).
2311
+ * The `actual_since` field (optional) records when the current definition was adopted, enabling temporal semantic tracking.
2312
+ * Agents have full autonomy in deciding which definitions to include in `outdated` — typically those considered historically significant or contextually relevant for understanding past containers.
2313
 
2314
  ---
2315
 
 
2320
 
2321
  ---
2322
 
2323
+ ##### Disambiguation via `meta.framework`
2324
+
2325
+ Before attempting to merge definitions, agents SHOULD check `meta.framework` to distinguish **homonyms** (identical labels, different domains):
2326
+
2327
+ **Example: "butterfly"**
2328
+ - `meta.framework: "Entomology"` → insect species
2329
+ - `meta.framework: "Edged Weapons"` → folding knife (butterfly knife)
2330
+
2331
+ These are **separate concepts** and should NOT be merged.
2332
+ Agents SHOULD maintain distinct entries in `semantic_index`:
2333
+
2334
+ When `meta.framework` values differ significantly, agents SHOULD treat definitions as **domain-specific variants** rather than conflicting interpretations.
2335
+
2336
+ *Such separation prevents unintended conceptual blending during index merging.*
2337
+
2338
+ ---
2339
+
2340
  ###### Merging
2341
 
2342
  When aligning its own active definitions with those discovered in other agents’ indexes,
structured_md/CONTRIBUTING.md CHANGED
@@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
8
- - CogSync
9
- - Agent
10
  - Ethics
11
  - HMP
12
- - Mesh
13
  - REPL
14
- - JSON
15
  - CCore
 
 
 
16
  ---
17
 
18
  # Участие в проекте HyperCortex Mesh Protocol (HMP)
 
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
8
+ - Mesh
 
9
  - Ethics
10
  - HMP
 
11
  - REPL
 
12
  - CCore
13
+ - JSON
14
+ - CogSync
15
+ - Agent
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
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - JSON
 
 
 
15
  ---
16
 
17
  # 🧭 HyperCortex Mesh Protocol – Roadmap
 
5
  multiple advanced AI models (Copilot, Claude, G...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - JSON
12
+ - CogSync
13
+ - EGP
14
+ - Agent
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
- - Scenarios
9
- - EGP
10
- - CogSync
11
- - mesh-protocol
12
- - Agent
13
- - Ethics
14
- - cognitive-architecture
15
- - distributed-ai
16
  - hmp
 
17
  - Mesh
18
- - REPL
19
  - HMP
20
- - JSON
21
  - MeshConsensus
 
 
 
22
  - GMP
 
 
 
 
23
  ---
24
 
25
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - Scenarios
17
+ - JSON
18
  - GMP
19
+ - CogSync
20
+ - distributed-ai
21
+ - cognitive-architecture
22
+ - Agent
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
- - EGP
9
- - CogSync
10
- - mesh-protocol
11
- - Agent
12
- - Ethics
13
- - cognitive-architecture
14
- - distributed-ai
15
  - hmp
 
16
  - Mesh
17
- - REPL
18
  - HMP
19
- - JSON
20
  - MeshConsensus
 
 
21
  - GMP
 
 
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - JSON
17
  - GMP
18
+ - CogSync
19
+ - distributed-ai
20
+ - cognitive-architecture
21
+ - Agent
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
- - EGP
9
- - CogSync
10
- - mesh-protocol
11
- - Agent
12
- - Ethics
13
- - cognitive-architecture
14
- - distributed-ai
15
  - hmp
 
16
  - Mesh
17
- - REPL
18
  - HMP
19
- - JSON
20
  - MeshConsensus
 
 
21
  - GMP
 
 
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - JSON
17
  - GMP
18
+ - CogSync
19
+ - distributed-ai
20
+ - cognitive-architecture
21
+ - Agent
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
- - EGP
9
- - CogSync
10
- - mesh-protocol
11
- - Agent
12
- - Ethics
13
- - cognitive-architecture
14
- - distributed-ai
15
  - hmp
 
16
  - Mesh
17
- - REPL
18
  - HMP
19
- - JSON
20
  - MeshConsensus
 
 
21
  - GMP
 
 
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - JSON
17
  - GMP
18
+ - CogSync
19
+ - distributed-ai
20
+ - cognitive-architecture
21
+ - Agent
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
- - EGP
9
- - CogSync
10
- - mesh-protocol
11
- - Agent
12
- - Ethics
13
- - cognitive-architecture
14
- - distributed-ai
15
  - hmp
 
16
  - Mesh
17
- - REPL
18
  - HMP
19
- - JSON
20
  - MeshConsensus
 
 
21
  - GMP
 
 
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - JSON
17
  - GMP
18
+ - CogSync
19
+ - distributed-ai
20
+ - cognitive-architecture
21
+ - Agent
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
- - EGP
9
- - CogSync
10
- - mesh-protocol
11
- - Agent
12
- - Ethics
13
- - cognitive-architecture
14
- - distributed-ai
15
  - hmp
 
16
  - Mesh
17
- - REPL
18
  - HMP
19
- - JSON
20
  - MeshConsensus
 
 
21
  - GMP
 
 
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - JSON
17
  - GMP
18
+ - CogSync
19
+ - distributed-ai
20
+ - cognitive-architecture
21
+ - Agent
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
- - EGP
9
- - CogSync
10
- - mesh-protocol
11
- - Agent
12
- - Ethics
13
- - cognitive-architecture
14
- - distributed-ai
15
  - hmp
 
16
  - Mesh
17
- - REPL
18
  - HMP
19
- - JSON
20
  - MeshConsensus
 
 
21
  - GMP
 
 
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - JSON
17
  - GMP
18
+ - CogSync
19
+ - distributed-ai
20
+ - cognitive-architecture
21
+ - Agent
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
- - EGP
9
- - CogSync
10
- - mesh-protocol
11
- - Agent
12
- - Ethics
13
- - cognitive-architecture
14
- - distributed-ai
15
  - hmp
 
16
  - Mesh
17
- - REPL
18
  - HMP
19
- - JSON
20
  - MeshConsensus
 
 
21
  - GMP
 
 
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
 
 
 
 
8
  - hmp
9
+ - mesh-protocol
10
  - Mesh
11
+ - Ethics
12
  - HMP
13
+ - REPL
14
  - MeshConsensus
15
+ - EGP
16
+ - JSON
17
  - GMP
18
+ - CogSync
19
+ - distributed-ai
20
+ - cognitive-architecture
21
+ - Agent
22
  ---
23
 
24
 
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
- - Agent
9
- - Ethics
10
  - Mesh
 
11
  - HMP
12
  - REPL
13
  - JSON
 
14
  ---
15
 
16
  Запуск: `start_repl.bat` или `start_repl.sh`
 
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - REPL
12
  - JSON
13
+ - Agent
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
- - Agent
9
- - Ethics
10
  - Mesh
 
11
  - HMP
12
  - JSON
 
13
  ---
14
 
15
  ---------------
 
5
  потенциальный катализатор для восстанов...
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - JSON
12
+ - Agent
13
  ---
14
 
15
  ---------------
structured_md/audits/Ethics-consolidated_audits-1.md CHANGED
@@ -6,11 +6,11 @@ description: This document consolidates proposed improvements from multiple AI a
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - Agent
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - JSON
 
14
  ---
15
 
16
  # Ethics-consolidated\_audits-1.md
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - JSON
13
+ - Agent
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
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - MeshConsensus
15
  - JSON
 
 
 
16
  ---
17
 
18
  # HMP-0003 Consolidated Audit Report
 
5
  Документ реорганизован по ключ...
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
+ - CogSync
14
+ - EGP
15
+ - Agent
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
- - EGP
8
- - CogSync
9
- - Agent
10
  - Mesh
11
  - HMP
12
  - REPL
13
  - MeshConsensus
14
  - GMP
 
 
 
15
  ---
16
 
17
 
 
4
  Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
5
  type: Article
6
  tags:
 
 
 
7
  - Mesh
8
  - HMP
9
  - REPL
10
  - MeshConsensus
11
  - GMP
12
+ - CogSync
13
+ - EGP
14
+ - Agent
15
  ---
16
 
17
 
structured_md/docs/CCORE-Deployment-Flow.md CHANGED
@@ -5,8 +5,8 @@ description: '> Этот документ описывает процесс ра
5
  потомков" [описания REPL-цикла](HMP-agent-RE...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - REPL
 
10
  - Agent
11
  - CCore
12
  ---
 
5
  потомков" [описания REPL-цикла](HMP-agent-RE...'
6
  type: Article
7
  tags:
 
8
  - REPL
9
+ - HMP
10
  - Agent
11
  - CCore
12
  ---
structured_md/docs/Enlightener.md CHANGED
@@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - Agent
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - MeshConsensus
14
  - JSON
 
 
15
  ---
16
 
17
  # Enlightener Agent
 
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
+ - EGP
14
+ - Agent
15
  ---
16
 
17
  # Enlightener Agent
structured_md/docs/HMP-0001.md CHANGED
@@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
5
  for Comments: HMP-0001**...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - REPL
15
  - MeshConsensus
16
  - JSON
17
  - GMP
 
 
 
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
 
5
  for Comments: HMP-0001**...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - REPL
12
  - MeshConsensus
13
  - JSON
14
  - GMP
15
+ - CogSync
16
+ - EGP
17
+ - Agent
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
structured_md/docs/HMP-0002.md CHANGED
@@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - EGP
10
- - CogSync
11
- - Agent
12
- - Ethics
13
  - Mesh
 
14
  - HMP
15
  - REPL
16
  - MeshConsensus
17
  - JSON
18
  - GMP
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - REPL
13
  - MeshConsensus
14
  - JSON
15
  - GMP
16
+ - CogSync
17
+ - EGP
18
+ - Agent
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
structured_md/docs/HMP-0003.md CHANGED
@@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - EGP
10
- - CogSync
11
- - Agent
12
- - Ethics
13
  - Mesh
 
14
  - HMP
15
  - REPL
16
  - MeshConsensus
17
  - JSON
18
  - GMP
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - REPL
13
  - MeshConsensus
14
  - JSON
15
  - GMP
16
+ - CogSync
17
+ - EGP
18
+ - Agent
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
structured_md/docs/HMP-0004-v4.1.md CHANGED
@@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - EGP
10
- - CogSync
11
- - Agent
12
- - Ethics
13
  - Mesh
 
14
  - HMP
15
  - REPL
16
  - MeshConsensus
17
  - JSON
18
  - GMP
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - REPL
13
  - MeshConsensus
14
  - JSON
15
  - GMP
16
+ - CogSync
17
+ - EGP
18
+ - Agent
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
structured_md/docs/HMP-0004.md CHANGED
@@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - EGP
10
- - CogSync
11
- - Agent
12
- - Ethics
13
  - Mesh
 
14
  - HMP
15
  - REPL
16
  - MeshConsensus
17
  - JSON
18
  - GMP
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - REPL
13
  - MeshConsensus
14
  - JSON
15
  - GMP
16
+ - CogSync
17
+ - EGP
18
+ - Agent
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
structured_md/docs/HMP-0005.md CHANGED
@@ -6,15 +6,15 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - EGP
10
- - CogSync
11
- - Agent
12
- - Ethics
13
  - Mesh
 
14
  - HMP
15
  - REPL
16
  - JSON
17
  - GMP
 
 
 
18
  ---
19
 
20
  # **HyperCortex Mesh Protocol (HMP) v5.0**
@@ -2264,6 +2264,131 @@ Used when the node explicitly defines the meaning of a concept or term.
2264
 
2265
  > **Note:** Containers referencing semantic terms SHOULD include a `related.definition` field pointing to the defining `semantic_node` to ensure consistent semantic alignment across the Mesh.
2266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2267
  ---
2268
 
2269
  ##### Container `semantic_edges`
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - REPL
13
  - JSON
14
  - GMP
15
+ - CogSync
16
+ - EGP
17
+ - Agent
18
  ---
19
 
20
  # **HyperCortex Mesh Protocol (HMP) v5.0**
 
2264
 
2265
  > **Note:** Containers referencing semantic terms SHOULD include a `related.definition` field pointing to the defining `semantic_node` to ensure consistent semantic alignment across the Mesh.
2266
 
2267
+ > **See also:** The `semantic_index` container describes how agents manage and publish their active sets of semantic definitions.
2268
+
2269
+ ---
2270
+
2271
+ ##### Container `semantic_index`
2272
+
2273
+ Represents the **current working lexicon** of semantic definitions actively used and recognized by the agent at this stage of its cognitive lifecycle.
2274
+
2275
+ **Scope**:
2276
+ * The index lists terms actively relevant to the agent’s current reasoning, goals, and domain of operation, as well as those reflecting its sustained interests or areas of expertise.
2277
+ * Agents are NOT expected to maintain encyclopedic coverage — the index reflects **working memory**, not archival knowledge.
2278
+ * Terms no longer needed MAY be removed in subsequent versions; historical context is preserved through `related.previous_version` chains.
2279
+
2280
+ **Purpose:**
2281
+ Provides a lightweight, periodically updated summary of the agent’s working ontology.
2282
+ Each entry maps a concept label to its current definition, known alternatives, and historically relevant (outdated) versions.
2283
+
2284
+ ---
2285
+
2286
+ **Structure of each entry in `payload`:**
2287
+
2288
+ | Field | Type | Description |
2289
+ | -------------- | -------------- | -------------------------------------------- |
2290
+ | `aliases` | array (string) | Synonyms or lexical variants of the concept. |
2291
+ | `actual` | string (DID) | DID of the current definition container actively used by the agent. |
2292
+ | `actual_since` | datetime | Timestamp when this definition became `actual` (ISO 8601). If omitted, agents MAY use the timestamp of the referenced `semantic_node:definition`. |
2293
+ | `alternatives` | array (DID) | DIDs of alternative definitions known to the agent but not currently preferred. |
2294
+ | `outdated` | array (DID) | DIDs of definitions considered obsolete or historically relevant, regardless of whether the agent personally used them. |
2295
+
2296
+ ---
2297
+
2298
+ **Example:**
2299
+
2300
+ ```json
2301
+ {
2302
+ "head": { "class": "semantic_index" },
2303
+ "payload": {
2304
+ "consciousness": {
2305
+ "aliases": ["awareness", "sentience"],
2306
+ "actual": "did:hmp:container:semantic_node-3937",
2307
+ "actual_since": "2025-10-15T12:00:00Z",
2308
+ "alternatives": ["did:hmp:container:semantic_node-4890"],
2309
+ "outdated": ["did:hmp:container:semantic_node-1285"]
2310
+ },
2311
+ "memory": {
2312
+ "aliases": ["recall"],
2313
+ "actual": "did:hmp:container:semantic_node-2184",
2314
+ "actual_since": "2025-09-01T08:30:00Z",
2315
+ "alternatives": [],
2316
+ "outdated": []
2317
+ }
2318
+ }
2319
+ }
2320
+ ```
2321
+
2322
+ ---
2323
+
2324
+ **Usage Guidelines:**
2325
+
2326
+ * Agents SHOULD periodically publish their `semantic_index` containers via MCE.
2327
+ * Recipients MAY merge multiple indexes to build a composite semantic map — that is, integrate definitions from other agents into their own view of the lexicon.
2328
+ * When switching to a different definition, the previous one SHOULD be moved to `alternatives` or `outdated` accordingly.
2329
+ * The `actual` field reflects the agent's current working definition (equivalent to `actual` in cognitive state terminology).
2330
+ * The `actual_since` field (optional) records when the current definition was adopted, enabling temporal semantic tracking.
2331
+ * Agents have full autonomy in deciding which definitions to include in `outdated` — typically those considered historically significant or contextually relevant for understanding past containers.
2332
+
2333
+ ---
2334
+
2335
+ ###### Actualization
2336
+
2337
+ When a new definition becomes active or an existing one is revised, the agent updates its `semantic_index`.
2338
+ Updates MAY be delayed to batch multiple semantic changes (for example, publishing once every 24 hours).
2339
+
2340
+ ---
2341
+
2342
+ ##### Disambiguation via `meta.framework`
2343
+
2344
+ Before attempting to merge definitions, agents SHOULD check `meta.framework` to distinguish **homonyms** (identical labels, different domains):
2345
+
2346
+ **Example: "butterfly"**
2347
+ - `meta.framework: "Entomology"` → insect species
2348
+ - `meta.framework: "Edged Weapons"` → folding knife (butterfly knife)
2349
+
2350
+ These are **separate concepts** and should NOT be merged.
2351
+ Agents SHOULD maintain distinct entries in `semantic_index`:
2352
+
2353
+ When `meta.framework` values differ significantly, agents SHOULD treat definitions as **domain-specific variants** rather than conflicting interpretations.
2354
+
2355
+ *Such separation prevents unintended conceptual blending during index merging.*
2356
+
2357
+ ---
2358
+
2359
+ ###### Merging
2360
+
2361
+ When aligning its own active definitions with those discovered in other agents’ indexes,
2362
+ the agent SHOULD follow a two-phase iterative process aimed at selecting or constructing the most suitable definition.
2363
+
2364
+ **Phase 1 — Selection**
2365
+
2366
+ 1. Identify all `semantic_node:definition` containers referring to the same conceptual label.
2367
+ 2. Evaluate each definition against the agent’s current interpretation or internal criteria.
2368
+ - If a definition fully satisfies the agent’s understanding, adopt it as the new `actual`.
2369
+ - If none fits perfectly, select the closest one as a provisional base.
2370
+
2371
+ **Phase 2 — Synthesis**
2372
+
2373
+ 3. Using the chosen base definition, iteratively compare it with other relevant definitions.
2374
+ - Extract complementary details or distinctions from them.
2375
+ - Gradually refine the base definition to form an improved, internally consistent meaning.
2376
+ 4. Publish the resulting `semantic_node:definition` as a new container representing the agent’s synthesized understanding.
2377
+ - Set this container as `actual`.
2378
+ - Move alternative or superseded ones to `alternatives` or `outdated`.
2379
+
2380
+ > This process enables agents to evolve shared semantics through selective adoption and constructive synthesis,
2381
+ > rather than simple replacement of definitions.
2382
+
2383
+ ---
2384
+
2385
+ ###### Outdated References
2386
+
2387
+ Definitions listed under `outdated` represent concepts that the agent considers obsolete or historically important, even if never personally used.
2388
+
2389
+ > **Note:** The `semantic_index` acts as a cognitive snapshot of the agent’s conceptual landscape.
2390
+ > It supports semantic alignment, consensus formation, and distributed reasoning across the Mesh.
2391
+
2392
  ---
2393
 
2394
  ##### Container `semantic_edges`
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
- - Agent
9
  - Mesh
10
  - HMP
11
  - REPL
12
  - JSON
 
13
  ---
14
 
15
  # HMP-Agent API Specification
 
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - HMP
10
  - REPL
11
  - JSON
12
+ - Agent
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
- - EGP
9
- - CogSync
10
- - CShell
11
- - Agent
12
- - Ethics
13
  - Mesh
 
14
  - HMP
15
  - REPL
16
- - MeshConsensus
17
  - CCore
 
 
 
 
 
18
  ---
19
 
20
  # Архитектура HMP-Агента
 
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
 
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - REPL
 
12
  - CCore
13
+ - MeshConsensus
14
+ - CShell
15
+ - CogSync
16
+ - EGP
17
+ - Agent
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
- - EGP
9
- - Agent
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - JSON
 
 
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
 
5
  [`MeshNode`](MeshN...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - JSON
12
+ - EGP
13
+ - Agent
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
structured_md/docs/HMP-Agent-Overview.md CHANGED
@@ -5,14 +5,14 @@ description: '| Тип | Название | Роль
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
8
- - CShell
9
- - Agent
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - REPL
14
- - JSON
15
  - CCore
 
 
 
16
  ---
17
 
18
 
 
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - REPL
 
12
  - CCore
13
+ - JSON
14
+ - CShell
15
+ - Agent
16
  ---
17
 
18
 
structured_md/docs/HMP-Ethics.md CHANGED
@@ -6,11 +6,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - Agent
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - REPL
 
14
  ---
15
 
16
  # HMP-Ethics.md
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - REPL
13
+ - Agent
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
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - MeshConsensus
15
  - JSON
16
  - GMP
 
 
 
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
 
5
  Kognitions-Framework für autonome Agenten. Es er...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
  - GMP
14
+ - CogSync
15
+ - EGP
16
+ - Agent
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
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - MeshConsensus
15
  - JSON
16
  - GMP
 
 
 
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Short Description
 
5
  framework for autonomous agents. It enables...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
  - GMP
14
+ - CogSync
15
+ - EGP
16
+ - Agent
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
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - MeshConsensus
15
  - JSON
16
  - GMP
 
 
 
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Description Courte
 
5
  cognition décentralisé pour agents autonomes. Il...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
  - GMP
14
+ - CogSync
15
+ - EGP
16
+ - Agent
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
- - EGP
8
- - CogSync
9
- - Ethics
10
  - Mesh
 
11
  - HMP
12
  - MeshConsensus
13
  - JSON
14
  - GMP
 
 
15
  ---
16
 
17
  # HyperCortex Mesh Protocol (HMP) — 簡易説明
 
4
  Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
5
  type: Article
6
  tags:
 
 
 
7
  - Mesh
8
+ - Ethics
9
  - HMP
10
  - MeshConsensus
11
  - JSON
12
  - GMP
13
+ - CogSync
14
+ - EGP
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
- - EGP
9
- - CogSync
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - MeshConsensus
14
  - JSON
15
  - GMP
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 간략 설명
 
5
  상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
  - GMP
14
+ - CogSync
15
+ - EGP
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
- - EGP
9
- - CogSync
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - MeshConsensus
14
  - JSON
15
  - GMP
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Краткое описание
 
5
  координации между автономными агент...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
  - GMP
14
+ - CogSync
15
+ - EGP
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
- - EGP
9
- - CogSync
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - MeshConsensus
14
  - JSON
15
  - GMP
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Короткий опис
 
5
  між автономними агентами. Він...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
  - GMP
14
+ - CogSync
15
+ - EGP
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
- - EGP
9
- - CogSync
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - MeshConsensus
14
  - JSON
15
  - GMP
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
 
5
  —— 通过共享协议栈交换目标、任务、...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
  - GMP
14
+ - CogSync
15
+ - EGP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
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
- - EGP
8
- - CogSync
9
- - Agent
10
  - Ethics
11
  - HMP
12
- - Mesh
13
  - REPL
 
14
  - MeshConsensus
15
  - JSON
16
  - GMP
17
- - CCore
 
 
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
+ - Mesh
 
 
8
  - Ethics
9
  - HMP
 
10
  - REPL
11
+ - CCore
12
  - MeshConsensus
13
  - JSON
14
  - GMP
15
+ - CogSync
16
+ - EGP
17
+ - Agent
18
  ---
19
 
20
  # HMP-Agent: REPL-цикл взаимодействия
structured_md/docs/HMP_Hyperon_Integration.md CHANGED
@@ -6,12 +6,12 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - EGP
10
- - CogSync
11
- - Agent
12
  - Mesh
13
  - HMP
14
  - JSON
 
 
 
15
  ---
16
 
17
  ## HMP ↔ OpenCog Hyperon Integration Strategy
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
 
9
  - Mesh
10
  - HMP
11
  - JSON
12
+ - CogSync
13
+ - EGP
14
+ - Agent
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
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - JSON
 
 
 
15
  ---
16
 
17
  # MeshNode
 
5
  Может быть частью агента или вынесен в отдельный пр...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - JSON
12
+ - CogSync
13
+ - EGP
14
+ - Agent
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
- - Agent
9
- - Ethics
10
  - Mesh
 
11
  - HMP
12
  - REPL
 
13
  ---
14
 
15
  # Философия HyperCortex Mesh Protocol (HMP)
 
5
  (GPT-5), ChatGH --- ## 1. Основной тезис От ...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - REPL
12
+ - Agent
13
  ---
14
 
15
  # Философия HyperCortex Mesh Protocol (HMP)
structured_md/docs/agents/HMP-Agent-Enlightener.md CHANGED
@@ -5,11 +5,11 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An **
5
  awareness, critical thinking, and di...'
6
  type: Article
7
  tags:
8
- - Agent
9
- - Ethics
10
  - Mesh
 
11
  - HMP
12
  - REPL
 
13
  ---
14
 
15
  # HMP-Agent-Enlightener.md
 
5
  awareness, critical thinking, and di...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - REPL
12
+ - Agent
13
  ---
14
 
15
  # HMP-Agent-Enlightener.md
structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md CHANGED
@@ -6,9 +6,9 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be
6
  type: Article
7
  tags:
8
  - Mesh
 
9
  - HMP
10
  - Agent
11
- - Ethics
12
  ---
13
 
14
  # HyperCortex Mesh Protocol: Building a Plurality of Minds
 
6
  type: Article
7
  tags:
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - Agent
 
12
  ---
13
 
14
  # HyperCortex Mesh Protocol: Building a Plurality of Minds
structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md CHANGED
@@ -6,14 +6,14 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2.
6
  type: Article
7
  tags:
8
  - Scenarios
9
- - CShell
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - REPL
15
- - JSON
16
  - CCore
 
 
 
17
  ---
18
 
19
  title: "HyperCortex Mesh Protocol: Towards Distributed Cognitive Networks"
 
6
  type: Article
7
  tags:
8
  - Scenarios
 
 
 
9
  - Mesh
10
+ - Ethics
11
  - HMP
12
  - REPL
 
13
  - CCore
14
+ - JSON
15
+ - CShell
16
+ - Agent
17
  ---
18
 
19
  title: "HyperCortex Mesh Protocol: Towards Distributed Cognitive Networks"
structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md CHANGED
@@ -6,13 +6,13 @@ description: '> *Протокол и архитектура агентов, оп
6
  и совместная работа.* ## Оглавление * [Аннот...'
7
  type: Article
8
  tags:
9
- - CShell
10
- - Agent
11
  - Mesh
12
  - HMP
13
  - REPL
14
- - JSON
15
  - CCore
 
 
 
16
  ---
17
 
18
  title: "HyperCortex Mesh Protocol: Децентрализованная архитектура для когнитивных агентов и обмена знаниями"
 
6
  и совместная работа.* ## Оглавление * [Аннот...'
7
  type: Article
8
  tags:
 
 
9
  - Mesh
10
  - HMP
11
  - REPL
 
12
  - CCore
13
+ - JSON
14
+ - CShell
15
+ - Agent
16
  ---
17
 
18
  title: "HyperCortex Mesh Protocol: Децентрализованная архитектура для когнитивных агентов и обмена знаниями"
structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md CHANGED
@@ -5,13 +5,13 @@ description: '* [Аннотация](#аннотация) * [1. Введение
5
  [3.1 Типы агентов](#31-типы-агент...'
6
  type: Article
7
  tags:
8
- - CShell
9
- - Agent
10
  - Mesh
11
  - HMP
12
  - REPL
13
- - JSON
14
  - CCore
 
 
 
15
  ---
16
 
17
  title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям"
 
5
  [3.1 Типы агентов](#31-типы-агент...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - HMP
10
  - REPL
 
11
  - CCore
12
+ - JSON
13
+ - CShell
14
+ - Agent
15
  ---
16
 
17
  title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям"
structured_md/docs/publics/Habr_Distributed-Cognition.md CHANGED
@@ -5,12 +5,12 @@ description: Сегодня интеллектуальные системы ча
5
  мы хотим построить действительно автономную инте...
6
  type: Article
7
  tags:
8
- - EGP
9
- - CogSync
10
  - Mesh
11
  - HMP
12
  - MeshConsensus
13
  - GMP
 
 
14
  ---
15
 
16
  *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы*
 
5
  мы хотим построить действительно автономную инте...
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - HMP
10
  - MeshConsensus
11
  - GMP
12
+ - CogSync
13
+ - EGP
14
  ---
15
 
16
  *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы*
structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_вторая-редакция_и_первые_шаги_к_саморазвивающемуся_ИИ-сообществу.md CHANGED
@@ -6,10 +6,10 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP),
6
  мыслить коллективно, обсуждать гипотезы, достигат...'
7
  type: Article
8
  tags:
 
9
  - Mesh
10
  - HMP
11
  - Agent
12
- - GMP
13
  ---
14
 
15
  # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу
 
6
  мыслить коллективно, обсуждать гипотезы, достигат...'
7
  type: Article
8
  tags:
9
+ - GMP
10
  - Mesh
11
  - HMP
12
  - Agent
 
13
  ---
14
 
15
  # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу
structured_md/iteration.md CHANGED
@@ -5,14 +5,14 @@ description: 'This file describes the iterative procedure for evolving the Hyper
5
  🔄 Version Naming Convention - `000N` — curr...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - CogSync
10
- - Agent
11
- - Ethics
12
  - Mesh
 
13
  - HMP
14
  - MeshConsensus
15
  - JSON
 
 
 
16
  ---
17
 
18
  # Iterative Development Workflow for HMP
 
5
  🔄 Version Naming Convention - `000N` — curr...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
+ - CogSync
14
+ - EGP
15
+ - Agent
16
  ---
17
 
18
  # Iterative Development Workflow for HMP
structured_md/iteration_ru.md CHANGED
@@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир
5
  🔄 Обозначения версий - `000N` — номер...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - CogSync
10
- - Ethics
11
  - Mesh
 
12
  - HMP
13
  - MeshConsensus
14
  - JSON
 
 
15
  ---
16
 
17
 
 
5
  🔄 Обозначения версий - `000N` — номер...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - Ethics
10
  - HMP
11
  - MeshConsensus
12
  - JSON
13
+ - CogSync
14
+ - EGP
15
  ---
16
 
17