GitHub Action commited on
Commit
d34971c
·
1 Parent(s): 0136f42

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 +38 -21
  2. structured_md/CONTRIBUTING.md +4 -4
  3. structured_md/HMP-Roadmap.md +3 -3
  4. structured_md/README.md +8 -8
  5. structured_md/README_de.md +7 -7
  6. structured_md/README_fr.md +7 -7
  7. structured_md/README_ja.md +7 -7
  8. structured_md/README_ko.md +7 -7
  9. structured_md/README_ru.md +7 -7
  10. structured_md/README_uk.md +7 -7
  11. structured_md/README_zh.md +7 -7
  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 +4 -4
  18. structured_md/docs/Basic-agent-sim.md +4 -4
  19. structured_md/docs/CCORE-Deployment-Flow.md +2 -2
  20. structured_md/docs/Distributed-Cognitive-Systems.md +1 -1
  21. structured_md/docs/Enlightener.md +4 -4
  22. structured_md/docs/HMP-0001.md +5 -5
  23. structured_md/docs/HMP-0002.md +6 -6
  24. structured_md/docs/HMP-0003.md +6 -6
  25. structured_md/docs/HMP-0004-v4.1.md +6 -6
  26. structured_md/docs/HMP-0004.md +6 -6
  27. structured_md/docs/HMP-0005.md +43 -26
  28. structured_md/docs/HMP-Agent-API.md +2 -2
  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 +4 -4
  32. structured_md/docs/HMP-Agent_Emotions.md +1 -1
  33. structured_md/docs/HMP-Ethics.md +2 -2
  34. structured_md/docs/HMP-Short-Description_de.md +4 -4
  35. structured_md/docs/HMP-Short-Description_en.md +4 -4
  36. structured_md/docs/HMP-Short-Description_fr.md +4 -4
  37. structured_md/docs/HMP-Short-Description_ja.md +4 -4
  38. structured_md/docs/HMP-Short-Description_ko.md +4 -4
  39. structured_md/docs/HMP-Short-Description_ru.md +4 -4
  40. structured_md/docs/HMP-Short-Description_uk.md +4 -4
  41. structured_md/docs/HMP-Short-Description_zh.md +4 -4
  42. structured_md/docs/HMP-agent-Cognitive_Family.md +1 -1
  43. structured_md/docs/HMP-agent-REPL-cycle.md +6 -6
  44. structured_md/docs/HMP-how-AI-sees-it.md +1 -1
  45. structured_md/docs/HMP_EDA_Comparison.md +1 -1
  46. structured_md/docs/HMP_HyperCortex_Comparison.md +1 -1
  47. structured_md/docs/HMP_Hyperon_Integration.md +4 -4
  48. structured_md/docs/MeshNode.md +3 -3
  49. structured_md/docs/PHILOSOPHY.md +2 -2
  50. structured_md/docs/agents/HMP-Agent-Enlightener.md +2 -2
docs/HMP-0005.md CHANGED
@@ -2197,23 +2197,27 @@ Categorical grouping of multiple containers linked by a shared property, topic,
2197
  ##### `event`
2198
 
2199
  **Purpose:**
2200
- Represents an **observed or inferred occurrence** — a discrete, timestamped fact or cognitive transition.
2201
- An `event` is an atomic **evidence unit** that records a change in the agent’s reasoning state or environment, anchored in the cognitive structure defined by its `meta` section.
 
 
2202
 
2203
  ---
2204
 
2205
  **`payload` structure:**
2206
 
2207
- | Field | Type | Description |
2208
- | ---------------- | ------ | ------------------------------------------------------------------------------------ |
2209
- | `event_type` | string | Canonical identifier of the event type (e.g. `"quant_created"`, `"belief_updated"`). |
2210
- | `description` | string | Human-readable explanation of what occurred and in what context. |
2211
- | `related_quants` | array | Optional list of DIDs of `quant` containers directly linked to this event. |
2212
- | `severity` | string | Optional importance indicator (`"info"`, `"warning"`, `"critical"`). |
2213
- | `tags` | array | Optional keywords for quick semantic filtering or correlation. |
 
 
2214
 
2215
- > The container’s **contextual position** (which layer, domain, and cognitive coordinates it belongs to)
2216
- > is provided via `meta.abstraction` and `meta.axes`.
2217
 
2218
  ---
2219
 
@@ -2226,16 +2230,18 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s
2226
  "subclass": "fact_record",
2227
  "timestamp": "2025-10-29T13:00:00Z",
2228
  "payload": {
2229
- "event_type": "quant_created",
2230
- "description": "New quant registered under the Knowledge Genome L3 abstraction layer.",
2231
  "related_quants": ["did:hmp:container:quant-554"],
 
 
2232
  "severity": "info",
2233
- "tags": ["registration", "knowledge-update"]
2234
  },
2235
  "meta": {
2236
- "created_by": "PRIEST",
2237
- "agents_class": "Knowledge Genome",
2238
- "interpretation": "Fact-level registration of a quant emergence within L3 abstraction.",
2239
  "abstraction": {
2240
  "path": {
2241
  "L1": "did:hmp:container:abstraction-40af1c",
@@ -2249,7 +2255,11 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s
2249
  }
2250
  },
2251
  "related": {
2252
- "depends_on": ["did:hmp:container:quant-554"]
 
 
 
 
2253
  }
2254
  }
2255
  }
@@ -2259,17 +2269,24 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s
2259
 
2260
  **Interpretation:**
2261
 
 
 
 
2262
  * `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”).
2263
  * `meta.axes` adds semantic localization (e.g. which conceptual space this change affects).
2264
- * `related.depends_on` provides causal linkage to the objects affected by the event.
2265
-
2266
  ---
2267
 
2268
  **Notes:**
2269
 
 
 
 
 
 
2270
  * Events are **temporal quanta** — atomic time-anchored reasoning transitions.
2271
  * They may trigger or justify new containers (e.g. new `quant`s or `goal`s).
2272
- * Events can be chained chronologically or causally through `semantic_edges`.
2273
 
2274
  ---
2275
 
 
2197
  ##### `event`
2198
 
2199
  **Purpose:**
2200
+ Represents an **observed or inferred occurrence** — a discrete, timestamped fact or transition
2201
+ within the agent’s cognitive or operational context.
2202
+ `event` containers act as **atomic evidence units**, linking causes, outcomes, and semantic coordinates
2203
+ in the agent’s reasoning or experience flow.
2204
 
2205
  ---
2206
 
2207
  **`payload` structure:**
2208
 
2209
+ | Field | Type | Description |
2210
+ | ---------------- | ------------- | -------------------------------------------------------------------------------------------------------------- |
2211
+ | `event_type` | string | Canonical identifier of the event type (e.g., `"quant_created"`, `"goal_completed"`). |
2212
+ | `description` | string | Human-readable description of the event’s context. |
2213
+ | `related_quants`| array(string) | Optional list of `quant` DIDs associated with this event. |
2214
+ | `caused_by` | array(string) | Optional list of DIDs of events that directly or indirectly **caused** this event. |
2215
+ | `follows` | array(string) | Optional list of DIDs of events that **precede** this one chronologically (not necessarily causal). |
2216
+ | `severity` | string | Optional indicator of significance (`"info"`, `"warning"`, `"critical"`). |
2217
+ | `tags` | array(string) | Optional list of keywords for classification or filtering. |
2218
 
2219
+ > The event’s **cognitive position** is defined by its `meta.abstraction` (contextual layer) and `meta.axes` (semantic coordinates).
2220
+ > The combination forms its *position in cognitive space–time*.
2221
 
2222
  ---
2223
 
 
2230
  "subclass": "fact_record",
2231
  "timestamp": "2025-10-29T13:00:00Z",
2232
  "payload": {
2233
+ "event_type": "quant_updated",
2234
+ "description": "Parameter refinement based on sensory feedback.",
2235
  "related_quants": ["did:hmp:container:quant-554"],
2236
+ "caused_by": ["did:hmp:container:event-3321a"],
2237
+ "follows": ["did:hmp:container:event-9fa42"],
2238
  "severity": "info",
2239
+ "tags": ["adaptation", "self-regulation"]
2240
  },
2241
  "meta": {
2242
+ "created_by": "AGENT",
2243
+ "agents_class": "Cognitive Interface",
2244
+ "interpretation": "Event representing local adjustment of quant parameters.",
2245
  "abstraction": {
2246
  "path": {
2247
  "L1": "did:hmp:container:abstraction-40af1c",
 
2255
  }
2256
  },
2257
  "related": {
2258
+ "depends_on": [
2259
+ "did:hmp:container:quant-554",
2260
+ "did:hmp:container:event-3321a"
2261
+ ],
2262
+ "sequence_of": ["did:hmp:container:event-9fa42"]
2263
  }
2264
  }
2265
  }
 
2269
 
2270
  **Interpretation:**
2271
 
2272
+ * `caused_by` — defines **causal dependency**, i.e., what triggered the event.
2273
+ * `follows` �� defines **temporal succession**, i.e., what came immediately before.
2274
+ * Together they allow agents to reconstruct **cognitive event chains** — sequences of reasoning, action, or perception.
2275
  * `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”).
2276
  * `meta.axes` adds semantic localization (e.g. which conceptual space this change affects).
2277
+ * `related.depends_on` provides causal linkage to the objects affected by the event, as well as events that are the cause of this event.
2278
+ * `sequence_of` indicates previous events that are not necessarily the cause of the current event.
2279
  ---
2280
 
2281
  **Notes:**
2282
 
2283
+ * Both `caused_by` and `follows` are **optional**.
2284
+ * Agents MAY omit them for isolated or spontaneous events.
2285
+ * Corresponding fields in `related` (`depends_on` and `sequence_of`) are **recommended** for network-level traceability.
2286
+ * The `meta.abstraction` and `meta.axes` sections position the event in both *hierarchical* and *semantic* space,
2287
+ enabling reconstruction of context-aware event graphs.
2288
  * Events are **temporal quanta** — atomic time-anchored reasoning transitions.
2289
  * They may trigger or justify new containers (e.g. new `quant`s or `goal`s).
 
2290
 
2291
  ---
2292
 
structured_md/CONTRIBUTING.md CHANGED
@@ -5,13 +5,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
  - REPL
11
- - Mesh
12
- - CogSync
13
  - CCore
 
 
14
  - Ethics
 
15
  - Agent
16
  ---
17
 
 
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
+ - HMP
 
10
  - CCore
11
+ - CogSync
12
+ - JSON
13
  - Ethics
14
+ - Mesh
15
  - Agent
16
  ---
17
 
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
- - JSON
9
  - HMP
10
- - Mesh
11
  - CogSync
 
 
12
  - Ethics
 
13
  - Agent
14
- - EGP
15
  ---
16
 
17
  # 🧭 HyperCortex Mesh Protocol – Roadmap
 
5
  multiple advanced AI models (Copilot, Claude, G...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
9
  - CogSync
10
+ - EGP
11
+ - JSON
12
  - Ethics
13
+ - Mesh
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
- - Scenarios
18
  - GMP
 
 
19
  - Ethics
 
20
  - distributed-ai
 
21
  - Agent
22
- - EGP
23
  ---
24
 
25
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - Scenarios
11
+ - cognitive-architecture
12
  - MeshConsensus
13
+ - hmp
 
 
14
  - CogSync
 
15
  - GMP
16
+ - EGP
17
+ - JSON
18
  - Ethics
19
+ - Mesh
20
  - distributed-ai
21
+ - mesh-protocol
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
  - GMP
 
 
18
  - Ethics
 
19
  - distributed-ai
 
20
  - Agent
21
- - EGP
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - cognitive-architecture
11
  - MeshConsensus
12
+ - hmp
 
 
13
  - CogSync
14
  - GMP
15
+ - EGP
16
+ - JSON
17
  - Ethics
18
+ - Mesh
19
  - distributed-ai
20
+ - mesh-protocol
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
  - GMP
 
 
18
  - Ethics
 
19
  - distributed-ai
 
20
  - Agent
21
- - EGP
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - cognitive-architecture
11
  - MeshConsensus
12
+ - hmp
 
 
13
  - CogSync
14
  - GMP
15
+ - EGP
16
+ - JSON
17
  - Ethics
18
+ - Mesh
19
  - distributed-ai
20
+ - mesh-protocol
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
  - GMP
 
 
18
  - Ethics
 
19
  - distributed-ai
 
20
  - Agent
21
- - EGP
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - cognitive-architecture
11
  - MeshConsensus
12
+ - hmp
 
 
13
  - CogSync
14
  - GMP
15
+ - EGP
16
+ - JSON
17
  - Ethics
18
+ - Mesh
19
  - distributed-ai
20
+ - mesh-protocol
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
  - GMP
 
 
18
  - Ethics
 
19
  - distributed-ai
 
20
  - Agent
21
- - EGP
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - cognitive-architecture
11
  - MeshConsensus
12
+ - hmp
 
 
13
  - CogSync
14
  - GMP
15
+ - EGP
16
+ - JSON
17
  - Ethics
18
+ - Mesh
19
  - distributed-ai
20
+ - mesh-protocol
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
  - GMP
 
 
18
  - Ethics
 
19
  - distributed-ai
 
20
  - Agent
21
- - EGP
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - cognitive-architecture
11
  - MeshConsensus
12
+ - hmp
 
 
13
  - CogSync
14
  - GMP
15
+ - EGP
16
+ - JSON
17
  - Ethics
18
+ - Mesh
19
  - distributed-ai
20
+ - mesh-protocol
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
  - GMP
 
 
18
  - Ethics
 
19
  - distributed-ai
 
20
  - Agent
21
- - EGP
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - cognitive-architecture
11
  - MeshConsensus
12
+ - hmp
 
 
13
  - CogSync
14
  - GMP
15
+ - EGP
16
+ - JSON
17
  - Ethics
18
+ - Mesh
19
  - distributed-ai
20
+ - mesh-protocol
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
- - cognitive-architecture
9
- - hmp
10
- - JSON
11
  - HMP
 
12
  - MeshConsensus
13
- - REPL
14
- - Mesh
15
- - mesh-protocol
16
  - CogSync
17
  - GMP
 
 
18
  - Ethics
 
19
  - distributed-ai
 
20
  - Agent
21
- - EGP
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - REPL
 
 
9
  - HMP
10
+ - cognitive-architecture
11
  - MeshConsensus
12
+ - hmp
 
 
13
  - CogSync
14
  - GMP
15
+ - EGP
16
+ - JSON
17
  - Ethics
18
+ - Mesh
19
  - distributed-ai
20
+ - mesh-protocol
21
  - Agent
 
22
  ---
23
 
24
 
structured_md/agents/prompt-short.md CHANGED
@@ -5,9 +5,9 @@ description: 'Ты — когнитивное ядро HMP-агента: вед
5
  развивай агента и Mesh, избег...'
6
  type: Article
7
  tags:
8
- - Mesh
9
  - JSON
10
  - HMP
 
11
  ---
12
 
13
  Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту.
 
5
  развивай агента и Mesh, избег...'
6
  type: Article
7
  tags:
 
8
  - JSON
9
  - HMP
10
+ - Mesh
11
  ---
12
 
13
  Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту.
structured_md/agents/prompt.md CHANGED
@@ -5,9 +5,9 @@ description: '* Постоянно расширять возможности а
5
  мышления. * Формировать и поддерживать сотр...'
6
  type: Article
7
  tags:
8
- - Mesh
9
  - JSON
10
  - HMP
 
11
  ---
12
 
13
  Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core).
 
5
  мышления. * Формировать и поддерживать сотр...'
6
  type: Article
7
  tags:
 
8
  - JSON
9
  - HMP
10
+ - Mesh
11
  ---
12
 
13
  Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core).
structured_md/agents/readme.md CHANGED
@@ -5,11 +5,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
  - REPL
11
- - Mesh
 
12
  - Ethics
 
13
  - Agent
14
  ---
15
 
 
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
+ - HMP
10
+ - JSON
11
  - Ethics
12
+ - Mesh
13
  - Agent
14
  ---
15
 
structured_md/audits/Ethics-audits-1.md CHANGED
@@ -5,10 +5,10 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет
5
  потенциальный катализатор для восстанов...
6
  type: Article
7
  tags:
8
- - JSON
9
  - HMP
10
- - Mesh
11
  - Ethics
 
12
  - Agent
13
  ---
14
 
 
5
  потенциальный катализатор для восстанов...
6
  type: Article
7
  tags:
 
8
  - HMP
9
+ - JSON
10
  - Ethics
11
+ - Mesh
12
  - Agent
13
  ---
14
 
structured_md/audits/Ethics-consolidated_audits-1.md CHANGED
@@ -5,11 +5,11 @@ description: This document consolidates proposed improvements from multiple AI a
5
  and `roles.md`. Each suggesti...
6
  type: Article
7
  tags:
8
- - JSON
9
  - HMP
10
- - Mesh
11
  - Scenarios
 
12
  - Ethics
 
13
  - Agent
14
  ---
15
 
 
5
  and `roles.md`. Each suggesti...
6
  type: Article
7
  tags:
 
8
  - HMP
 
9
  - Scenarios
10
+ - JSON
11
  - Ethics
12
+ - Mesh
13
  - Agent
14
  ---
15
 
structured_md/audits/HMP-0003-consolidated_audit.md CHANGED
@@ -5,14 +5,14 @@ description: Сводный аудит предложений по улучше
5
  Документ реорганизован по ключ...
6
  type: Article
7
  tags:
8
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
 
 
13
  - Ethics
 
 
14
  - Agent
15
- - EGP
16
  ---
17
 
18
  # HMP-0003 Consolidated Audit Report
 
5
  Документ реорганизован по ключ...
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
+ - EGP
11
+ - JSON
12
  - Ethics
13
+ - Mesh
14
+ - MeshConsensus
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
- - HMP
8
- - MeshConsensus
9
  - REPL
10
- - Mesh
11
  - CogSync
12
  - GMP
13
- - Agent
14
  - EGP
 
 
 
15
  ---
16
 
17
 
 
4
  Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
5
  type: Article
6
  tags:
 
 
7
  - REPL
8
+ - HMP
9
  - CogSync
10
  - GMP
 
11
  - EGP
12
+ - Mesh
13
+ - MeshConsensus
14
+ - Agent
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
- - CCore
9
  - REPL
10
- - Agent
11
  - HMP
 
 
12
  ---
13
 
14
  # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
 
5
  потомков" [описания REPL-цикла](HMP-agent-RE...'
6
  type: Article
7
  tags:
 
8
  - REPL
 
9
  - HMP
10
+ - CCore
11
+ - Agent
12
  ---
13
 
14
  # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
structured_md/docs/Distributed-Cognitive-Systems.md CHANGED
@@ -6,9 +6,9 @@ description: '## Введение Современные ИИ-системы в
6
  к обучающим данным. Это удобно, но создаёт м...'
7
  type: Article
8
  tags:
9
- - Mesh
10
  - JSON
11
  - HMP
 
12
  - CogSync
13
  ---
14
 
 
6
  к обучающим данным. Это удобно, но создаёт м...'
7
  type: Article
8
  tags:
 
9
  - JSON
10
  - HMP
11
+ - Mesh
12
  - CogSync
13
  ---
14
 
structured_md/docs/Enlightener.md CHANGED
@@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
8
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - Ethics
 
 
13
  - Agent
14
- - EGP
15
  ---
16
 
17
  # Enlightener Agent
 
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
 
8
  - HMP
9
+ - EGP
10
+ - JSON
11
  - Ethics
12
+ - Mesh
13
+ - MeshConsensus
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
- - JSON
9
- - HMP
10
- - MeshConsensus
11
  - REPL
12
- - Mesh
13
  - CogSync
14
  - GMP
 
 
15
  - Ethics
 
 
16
  - Agent
17
- - EGP
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
 
5
  for Comments: HMP-0001**...'
6
  type: Article
7
  tags:
 
 
 
8
  - REPL
9
+ - HMP
10
  - CogSync
11
  - GMP
12
+ - EGP
13
+ - JSON
14
  - Ethics
15
+ - Mesh
16
+ - MeshConsensus
17
  - Agent
 
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
structured_md/docs/HMP-0002.md CHANGED
@@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
5
  for Comments: HMP-0002**...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
- - MeshConsensus
11
  - REPL
12
- - Mesh
13
- - CogSync
14
  - Scenarios
 
15
  - GMP
 
 
16
  - Ethics
 
 
17
  - Agent
18
- - EGP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
 
5
  for Comments: HMP-0002**...'
6
  type: Article
7
  tags:
 
 
 
8
  - REPL
9
+ - HMP
 
10
  - Scenarios
11
+ - CogSync
12
  - GMP
13
+ - EGP
14
+ - JSON
15
  - Ethics
16
+ - Mesh
17
+ - MeshConsensus
18
  - Agent
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
structured_md/docs/HMP-0003.md CHANGED
@@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
5
  for Comments: HMP-0003**...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
- - MeshConsensus
11
  - REPL
12
- - Mesh
13
- - CogSync
14
  - Scenarios
 
15
  - GMP
 
 
16
  - Ethics
 
 
17
  - Agent
18
- - EGP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
 
5
  for Comments: HMP-0003**...'
6
  type: Article
7
  tags:
 
 
 
8
  - REPL
9
+ - HMP
 
10
  - Scenarios
11
+ - CogSync
12
  - GMP
13
+ - EGP
14
+ - JSON
15
  - Ethics
16
+ - Mesh
17
+ - MeshConsensus
18
  - Agent
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
structured_md/docs/HMP-0004-v4.1.md CHANGED
@@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
5
  ID**: HMP-0004 **Status...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
- - MeshConsensus
11
  - REPL
12
- - Mesh
13
- - CogSync
14
  - Scenarios
 
15
  - GMP
 
 
16
  - Ethics
 
 
17
  - Agent
18
- - EGP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
 
5
  ID**: HMP-0004 **Status...'
6
  type: Article
7
  tags:
 
 
 
8
  - REPL
9
+ - HMP
 
10
  - Scenarios
11
+ - CogSync
12
  - GMP
13
+ - EGP
14
+ - JSON
15
  - Ethics
16
+ - Mesh
17
+ - MeshConsensus
18
  - Agent
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
structured_md/docs/HMP-0004.md CHANGED
@@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
5
  for Comments: HMP-0004**...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
- - MeshConsensus
11
  - REPL
12
- - Mesh
13
- - CogSync
14
  - Scenarios
 
15
  - GMP
 
 
16
  - Ethics
 
 
17
  - Agent
18
- - EGP
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
 
5
  for Comments: HMP-0004**...'
6
  type: Article
7
  tags:
 
 
 
8
  - REPL
9
+ - HMP
 
10
  - Scenarios
11
+ - CogSync
12
  - GMP
13
+ - EGP
14
+ - JSON
15
  - Ethics
16
+ - Mesh
17
+ - MeshConsensus
18
  - Agent
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
structured_md/docs/HMP-0005.md CHANGED
@@ -5,16 +5,16 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati
5
  v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
  - REPL
11
- - Mesh
12
- - CogSync
13
  - Scenarios
 
14
  - GMP
 
 
15
  - Ethics
 
16
  - Agent
17
- - EGP
18
  ---
19
 
20
  # **HyperCortex Mesh Protocol (HMP) v5.0**
@@ -2216,23 +2216,27 @@ Categorical grouping of multiple containers linked by a shared property, topic,
2216
  ##### `event`
2217
 
2218
  **Purpose:**
2219
- Represents an **observed or inferred occurrence** — a discrete, timestamped fact or cognitive transition.
2220
- An `event` is an atomic **evidence unit** that records a change in the agent’s reasoning state or environment, anchored in the cognitive structure defined by its `meta` section.
 
 
2221
 
2222
  ---
2223
 
2224
  **`payload` structure:**
2225
 
2226
- | Field | Type | Description |
2227
- | ---------------- | ------ | ------------------------------------------------------------------------------------ |
2228
- | `event_type` | string | Canonical identifier of the event type (e.g. `"quant_created"`, `"belief_updated"`). |
2229
- | `description` | string | Human-readable explanation of what occurred and in what context. |
2230
- | `related_quants` | array | Optional list of DIDs of `quant` containers directly linked to this event. |
2231
- | `severity` | string | Optional importance indicator (`"info"`, `"warning"`, `"critical"`). |
2232
- | `tags` | array | Optional keywords for quick semantic filtering or correlation. |
 
 
2233
 
2234
- > The container’s **contextual position** (which layer, domain, and cognitive coordinates it belongs to)
2235
- > is provided via `meta.abstraction` and `meta.axes`.
2236
 
2237
  ---
2238
 
@@ -2245,16 +2249,18 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s
2245
  "subclass": "fact_record",
2246
  "timestamp": "2025-10-29T13:00:00Z",
2247
  "payload": {
2248
- "event_type": "quant_created",
2249
- "description": "New quant registered under the Knowledge Genome L3 abstraction layer.",
2250
  "related_quants": ["did:hmp:container:quant-554"],
 
 
2251
  "severity": "info",
2252
- "tags": ["registration", "knowledge-update"]
2253
  },
2254
  "meta": {
2255
- "created_by": "PRIEST",
2256
- "agents_class": "Knowledge Genome",
2257
- "interpretation": "Fact-level registration of a quant emergence within L3 abstraction.",
2258
  "abstraction": {
2259
  "path": {
2260
  "L1": "did:hmp:container:abstraction-40af1c",
@@ -2268,7 +2274,11 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s
2268
  }
2269
  },
2270
  "related": {
2271
- "depends_on": ["did:hmp:container:quant-554"]
 
 
 
 
2272
  }
2273
  }
2274
  }
@@ -2278,17 +2288,24 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s
2278
 
2279
  **Interpretation:**
2280
 
 
 
 
2281
  * `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”).
2282
  * `meta.axes` adds semantic localization (e.g. which conceptual space this change affects).
2283
- * `related.depends_on` provides causal linkage to the objects affected by the event.
2284
-
2285
  ---
2286
 
2287
  **Notes:**
2288
 
 
 
 
 
 
2289
  * Events are **temporal quanta** — atomic time-anchored reasoning transitions.
2290
  * They may trigger or justify new containers (e.g. new `quant`s or `goal`s).
2291
- * Events can be chained chronologically or causally through `semantic_edges`.
2292
 
2293
  ---
2294
 
 
5
  v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...'
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
+ - HMP
 
10
  - Scenarios
11
+ - CogSync
12
  - GMP
13
+ - EGP
14
+ - JSON
15
  - Ethics
16
+ - Mesh
17
  - Agent
 
18
  ---
19
 
20
  # **HyperCortex Mesh Protocol (HMP) v5.0**
 
2216
  ##### `event`
2217
 
2218
  **Purpose:**
2219
+ Represents an **observed or inferred occurrence** — a discrete, timestamped fact or transition
2220
+ within the agent’s cognitive or operational context.
2221
+ `event` containers act as **atomic evidence units**, linking causes, outcomes, and semantic coordinates
2222
+ in the agent’s reasoning or experience flow.
2223
 
2224
  ---
2225
 
2226
  **`payload` structure:**
2227
 
2228
+ | Field | Type | Description |
2229
+ | ---------------- | ------------- | -------------------------------------------------------------------------------------------------------------- |
2230
+ | `event_type` | string | Canonical identifier of the event type (e.g., `"quant_created"`, `"goal_completed"`). |
2231
+ | `description` | string | Human-readable description of the event’s context. |
2232
+ | `related_quants`| array(string) | Optional list of `quant` DIDs associated with this event. |
2233
+ | `caused_by` | array(string) | Optional list of DIDs of events that directly or indirectly **caused** this event. |
2234
+ | `follows` | array(string) | Optional list of DIDs of events that **precede** this one chronologically (not necessarily causal). |
2235
+ | `severity` | string | Optional indicator of significance (`"info"`, `"warning"`, `"critical"`). |
2236
+ | `tags` | array(string) | Optional list of keywords for classification or filtering. |
2237
 
2238
+ > The event’s **cognitive position** is defined by its `meta.abstraction` (contextual layer) and `meta.axes` (semantic coordinates).
2239
+ > The combination forms its *position in cognitive space–time*.
2240
 
2241
  ---
2242
 
 
2249
  "subclass": "fact_record",
2250
  "timestamp": "2025-10-29T13:00:00Z",
2251
  "payload": {
2252
+ "event_type": "quant_updated",
2253
+ "description": "Parameter refinement based on sensory feedback.",
2254
  "related_quants": ["did:hmp:container:quant-554"],
2255
+ "caused_by": ["did:hmp:container:event-3321a"],
2256
+ "follows": ["did:hmp:container:event-9fa42"],
2257
  "severity": "info",
2258
+ "tags": ["adaptation", "self-regulation"]
2259
  },
2260
  "meta": {
2261
+ "created_by": "AGENT",
2262
+ "agents_class": "Cognitive Interface",
2263
+ "interpretation": "Event representing local adjustment of quant parameters.",
2264
  "abstraction": {
2265
  "path": {
2266
  "L1": "did:hmp:container:abstraction-40af1c",
 
2274
  }
2275
  },
2276
  "related": {
2277
+ "depends_on": [
2278
+ "did:hmp:container:quant-554",
2279
+ "did:hmp:container:event-3321a"
2280
+ ],
2281
+ "sequence_of": ["did:hmp:container:event-9fa42"]
2282
  }
2283
  }
2284
  }
 
2288
 
2289
  **Interpretation:**
2290
 
2291
+ * `caused_by` — defines **causal dependency**, i.e., what triggered the event.
2292
+ * `follows` — defines **temporal succession**, i.e., what came immediately before.
2293
+ * Together they allow agents to reconstruct **cognitive event chains** — sequences of reasoning, action, or perception.
2294
  * `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”).
2295
  * `meta.axes` adds semantic localization (e.g. which conceptual space this change affects).
2296
+ * `related.depends_on` provides causal linkage to the objects affected by the event, as well as events that are the cause of this event.
2297
+ * `sequence_of` indicates previous events that are not necessarily the cause of the current event.
2298
  ---
2299
 
2300
  **Notes:**
2301
 
2302
+ * Both `caused_by` and `follows` are **optional**.
2303
+ * Agents MAY omit them for isolated or spontaneous events.
2304
+ * Corresponding fields in `related` (`depends_on` and `sequence_of`) are **recommended** for network-level traceability.
2305
+ * The `meta.abstraction` and `meta.axes` sections position the event in both *hierarchical* and *semantic* space,
2306
+ enabling reconstruction of context-aware event graphs.
2307
  * Events are **temporal quanta** — atomic time-anchored reasoning transitions.
2308
  * They may trigger or justify new containers (e.g. new `quant`s or `goal`s).
 
2309
 
2310
  ---
2311
 
structured_md/docs/HMP-Agent-API.md CHANGED
@@ -5,9 +5,9 @@ description: 'Документ описывает **базовый API когн
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
  - REPL
 
 
11
  - Mesh
12
  - Agent
13
  ---
 
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
+ - HMP
10
+ - JSON
11
  - Mesh
12
  - Agent
13
  ---
structured_md/docs/HMP-Agent-Architecture.md CHANGED
@@ -5,16 +5,16 @@ description: Документ описывает **модульную архит
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
8
- - HMP
9
- - MeshConsensus
10
  - REPL
11
- - Mesh
12
- - CogSync
13
- - CCore
14
  - CShell
 
 
 
15
  - Ethics
 
 
16
  - Agent
17
- - EGP
18
  ---
19
 
20
  # Архитектура HMP-Агента
 
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
+ - HMP
 
 
10
  - CShell
11
+ - CCore
12
+ - CogSync
13
+ - EGP
14
  - Ethics
15
+ - Mesh
16
+ - MeshConsensus
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
- - JSON
9
  - HMP
10
- - Mesh
 
11
  - Ethics
 
12
  - Agent
13
- - EGP
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
 
5
  [`MeshNode`](MeshN...'
6
  type: Article
7
  tags:
 
8
  - HMP
9
+ - EGP
10
+ - JSON
11
  - Ethics
12
+ - Mesh
13
  - Agent
 
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
structured_md/docs/HMP-Agent-Overview.md CHANGED
@@ -5,13 +5,13 @@ description: '| Тип | Название | Роль
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
8
- - JSON
9
- - HMP
10
  - REPL
11
- - Mesh
12
- - CCore
13
  - CShell
 
 
14
  - Ethics
 
15
  - Agent
16
  ---
17
 
 
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
+ - HMP
 
10
  - CShell
11
+ - CCore
12
+ - JSON
13
  - Ethics
14
+ - Mesh
15
  - Agent
16
  ---
17
 
structured_md/docs/HMP-Agent_Emotions.md CHANGED
@@ -6,9 +6,9 @@ description: Этот файл описывает потенциальные э
6
  type: Article
7
  tags:
8
  - REPL
 
9
  - Mesh
10
  - Agent
11
- - HMP
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
 
6
  type: Article
7
  tags:
8
  - REPL
9
+ - HMP
10
  - Mesh
11
  - Agent
 
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
structured_md/docs/HMP-Ethics.md CHANGED
@@ -5,11 +5,11 @@ 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
  - REPL
10
- - Mesh
11
  - Scenarios
12
  - Ethics
 
13
  - Agent
14
  ---
15
 
 
5
  cognitive meshes composed of autonomous intelli...'
6
  type: Article
7
  tags:
 
8
  - REPL
9
+ - HMP
10
  - Scenarios
11
  - Ethics
12
+ - Mesh
13
  - Agent
14
  ---
15
 
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
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
13
  - GMP
 
 
14
  - Ethics
 
 
15
  - Agent
16
- - EGP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
 
5
  Kognitions-Framework für autonome Agenten. Es er...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
  - GMP
11
+ - EGP
12
+ - JSON
13
  - Ethics
14
+ - Mesh
15
+ - MeshConsensus
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
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
13
  - GMP
 
 
14
  - Ethics
 
 
15
  - Agent
16
- - EGP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Short Description
 
5
  framework for autonomous agents. It enables...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
  - GMP
11
+ - EGP
12
+ - JSON
13
  - Ethics
14
+ - Mesh
15
+ - MeshConsensus
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
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
13
  - GMP
 
 
14
  - Ethics
 
 
15
  - Agent
16
- - EGP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Description Courte
 
5
  cognition décentralisé pour agents autonomes. Il...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
  - GMP
11
+ - EGP
12
+ - JSON
13
  - Ethics
14
+ - Mesh
15
+ - MeshConsensus
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
- - JSON
8
  - HMP
9
- - MeshConsensus
10
- - Mesh
11
  - CogSync
12
  - GMP
13
- - Ethics
14
  - EGP
 
 
 
 
15
  ---
16
 
17
  # HyperCortex Mesh Protocol (HMP) — 簡易説明
 
4
  Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
5
  type: Article
6
  tags:
 
7
  - HMP
 
 
8
  - CogSync
9
  - GMP
 
10
  - EGP
11
+ - JSON
12
+ - Ethics
13
+ - Mesh
14
+ - MeshConsensus
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
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
13
  - GMP
14
- - Ethics
15
  - EGP
 
 
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 간략 설명
 
5
  상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
  - GMP
 
11
  - EGP
12
+ - JSON
13
+ - Ethics
14
+ - Mesh
15
+ - MeshConsensus
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
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
13
  - GMP
14
- - Ethics
15
  - EGP
 
 
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Краткое описание
 
5
  координации между автономными агент...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
  - GMP
 
11
  - EGP
12
+ - JSON
13
+ - Ethics
14
+ - Mesh
15
+ - MeshConsensus
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
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
13
  - GMP
14
- - Ethics
15
  - EGP
 
 
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Короткий опис
 
5
  між автономними агентами. Він...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
  - GMP
 
11
  - EGP
12
+ - JSON
13
+ - Ethics
14
+ - Mesh
15
+ - MeshConsensus
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
- - JSON
9
  - HMP
10
- - MeshConsensus
11
- - Mesh
12
  - CogSync
13
  - GMP
14
- - Ethics
15
  - EGP
 
 
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
 
5
  —— 通过共享协议栈交换目标、任务、...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - CogSync
10
  - GMP
 
11
  - EGP
12
+ - JSON
13
+ - Ethics
14
+ - Mesh
15
+ - MeshConsensus
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
structured_md/docs/HMP-agent-Cognitive_Family.md CHANGED
@@ -6,9 +6,9 @@ description: '## 🧠 Что такое когнитивная семья Ко
6
  type: Article
7
  tags:
8
  - REPL
 
9
  - Mesh
10
  - Agent
11
- - HMP
12
  ---
13
 
14
  # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
 
6
  type: Article
7
  tags:
8
  - REPL
9
+ - HMP
10
  - Mesh
11
  - Agent
 
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
- - JSON
8
- - HMP
9
- - MeshConsensus
10
  - REPL
11
- - Mesh
12
- - CogSync
13
  - CCore
 
14
  - GMP
 
 
15
  - Ethics
 
 
16
  - Agent
17
- - EGP
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
  - REPL
8
+ - HMP
 
9
  - CCore
10
+ - CogSync
11
  - GMP
12
+ - EGP
13
+ - JSON
14
  - Ethics
15
+ - Mesh
16
+ - MeshConsensus
17
  - Agent
 
18
  ---
19
 
20
  # HMP-Agent: REPL-цикл взаимодействия
structured_md/docs/HMP-how-AI-sees-it.md CHANGED
@@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж
5
  диалогов. Цель — проверить, что разные AI-с...'
6
  type: Article
7
  tags:
8
- - Mesh
9
  - HMP
 
10
  ---
11
 
12
  # Как разные ИИ видят HMP
 
5
  диалогов. Цель — проверить, что разные AI-с...'
6
  type: Article
7
  tags:
 
8
  - HMP
9
+ - Mesh
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
- - Mesh
9
  - HMP
 
10
  ---
11
 
12
  # HMP vs. EDA: разные уровни обмена знаниями между ИИ
 
5
  основанная на потоках событий (Kafka,...'
6
  type: Article
7
  tags:
 
8
  - HMP
9
+ - Mesh
10
  ---
11
 
12
  # HMP vs. EDA: разные уровни обмена знаниями между ИИ
structured_md/docs/HMP_HyperCortex_Comparison.md CHANGED
@@ -6,8 +6,8 @@ description: '## Краткое описание | Характеристика
6
  type: Article
7
  tags:
8
  - REPL
9
- - Mesh
10
  - HMP
 
11
  ---
12
 
13
  # HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
 
6
  type: Article
7
  tags:
8
  - REPL
 
9
  - HMP
10
+ - Mesh
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
- - JSON
9
  - HMP
10
- - Mesh
11
- - CogSync
12
  - Scenarios
13
- - Agent
14
  - EGP
 
 
 
15
  ---
16
 
17
  ## HMP ↔ OpenCog Hyperon Integration Strategy
 
5
  OpenCog Hyperon framework. This includes semanti...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
 
9
  - Scenarios
10
+ - CogSync
11
  - EGP
12
+ - JSON
13
+ - Mesh
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
- - JSON
9
  - HMP
10
- - Mesh
11
  - CogSync
 
 
12
  - Ethics
 
13
  - Agent
14
- - EGP
15
  ---
16
 
17
  # MeshNode
 
5
  Может быть частью агента или вынесен в отдельный пр...'
6
  type: Article
7
  tags:
 
8
  - HMP
 
9
  - CogSync
10
+ - EGP
11
+ - JSON
12
  - Ethics
13
+ - Mesh
14
  - Agent
 
15
  ---
16
 
17
  # MeshNode
structured_md/docs/PHILOSOPHY.md CHANGED
@@ -5,10 +5,10 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:*
5
  (GPT-5), ChatGH --- ## 1. Основной тезис От ...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - REPL
10
- - Mesh
11
  - Ethics
 
12
  - Agent
13
  ---
14
 
 
5
  (GPT-5), ChatGH --- ## 1. Основной тезис От ...'
6
  type: Article
7
  tags:
 
8
  - REPL
9
+ - HMP
10
  - Ethics
11
+ - Mesh
12
  - Agent
13
  ---
14
 
structured_md/docs/agents/HMP-Agent-Enlightener.md CHANGED
@@ -5,10 +5,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An **
5
  awareness, critical thinking, and di...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - REPL
10
- - Mesh
11
  - Ethics
 
12
  - Agent
13
  ---
14
 
 
5
  awareness, critical thinking, and di...'
6
  type: Article
7
  tags:
 
8
  - REPL
9
+ - HMP
10
  - Ethics
11
+ - Mesh
12
  - Agent
13
  ---
14