GitHub Action commited on
Commit
893abe8
·
1 Parent(s): 10e1027

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 +85 -11
  2. structured_md/CONTRIBUTING.md +4 -4
  3. structured_md/HMP-Roadmap.md +3 -3
  4. structured_md/README.md +11 -11
  5. structured_md/README_de.md +10 -10
  6. structured_md/README_fr.md +10 -10
  7. structured_md/README_ja.md +10 -10
  8. structured_md/README_ko.md +10 -10
  9. structured_md/README_ru.md +10 -10
  10. structured_md/README_uk.md +10 -10
  11. structured_md/README_zh.md +10 -10
  12. structured_md/agents/readme.md +3 -3
  13. structured_md/audits/Ethics-audits-1.md +1 -1
  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 +5 -5
  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 +6 -6
  20. structured_md/docs/HMP-0002.md +7 -7
  21. structured_md/docs/HMP-0003.md +7 -7
  22. structured_md/docs/HMP-0004-v4.1.md +7 -7
  23. structured_md/docs/HMP-0004.md +7 -7
  24. structured_md/docs/HMP-0005.md +91 -17
  25. structured_md/docs/HMP-Agent-API.md +2 -2
  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-Agent_Emotions.md +1 -1
  30. structured_md/docs/HMP-Ethics.md +3 -3
  31. structured_md/docs/HMP-Short-Description_de.md +5 -5
  32. structured_md/docs/HMP-Short-Description_en.md +5 -5
  33. structured_md/docs/HMP-Short-Description_fr.md +5 -5
  34. structured_md/docs/HMP-Short-Description_ja.md +4 -4
  35. structured_md/docs/HMP-Short-Description_ko.md +4 -4
  36. structured_md/docs/HMP-Short-Description_ru.md +4 -4
  37. structured_md/docs/HMP-Short-Description_uk.md +4 -4
  38. structured_md/docs/HMP-Short-Description_zh.md +4 -4
  39. structured_md/docs/HMP-agent-Cognitive_Family.md +1 -1
  40. structured_md/docs/HMP-agent-REPL-cycle.md +7 -7
  41. structured_md/docs/HMP-container-spec.md +3 -3
  42. structured_md/docs/HMP_Hyperon_Integration.md +4 -4
  43. structured_md/docs/MeshNode.md +3 -3
  44. structured_md/docs/PHILOSOPHY.md +2 -2
  45. structured_md/docs/agents/HMP-Agent-Enlightener.md +2 -2
  46. structured_md/docs/agents/roles.md +1 -1
  47. structured_md/docs/container_agents.md +1 -1
  48. structured_md/docs/dht_protocol.md +1 -1
  49. structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +1 -1
  50. structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +1 -1
docs/HMP-0005.md CHANGED
@@ -89,7 +89,7 @@ HMP v5.0 introduces a major architectural shift toward **unified containerizatio
89
  | **Networking layer** | DHT becomes a native component of HMP, enabling distributed discovery, replication, and retrieval of containers. |
90
  | **Consensus model** | Moved from centralized proposal aggregation to *container-linked voting*, allowing any container to accumulate votes and reactions. |
91
  | **Trust & security** | Signatures and proof-chains unify authentication across all layers; snapshot verification includes container linkage. |
92
- | **Workflows** | Cognitive cycles (`workflow_entry` containers) formalize the REPL loop of thinking, publishing, and reflection. |
93
  | **Structure** | The specification merges HMP, container, and DHT layers into one cohesive document, simplifying navigation and implementation. |
94
 
95
  ---
@@ -1270,6 +1270,7 @@ It provides **container synchronization without duplication** while considering
1270
  "payload_hash": "sha256:abcd...",
1271
  "tags": ["research", "collaboration"],
1272
  "links_hash": "sha256:abcd..."
 
1273
  }
1274
  }
1275
  }
@@ -1283,6 +1284,7 @@ The index contains:
1283
  * cryptographic attributes (`public_key`, `signature`, `payload_hash`);
1284
  * tags (`tags`);
1285
  * hash of links to other containers (`links_hash`).
 
1286
 
1287
  3. An agent does not reload a container if the combination
1288
  `container_did + signature + payload_hash` is already known and verified.
@@ -1305,7 +1307,7 @@ The index contains:
1305
 
1306
  **1. CONTAINER_REQUEST**
1307
 
1308
- Agent A requests containers and/or only `referenced-by` records from Agent B:
1309
 
1310
  ```json
1311
  {
@@ -1320,6 +1322,10 @@ Agent A requests containers and/or only `referenced-by` records from Agent B:
1320
  "request_referenced-by": [
1321
  "did:hmp:container:abc123",
1322
  "did:hmp:container:def456"
 
 
 
 
1323
  ]
1324
  }
1325
  }
@@ -1445,16 +1451,25 @@ Message and container transmission follows the network constraints specified in
1445
 
1446
  ---
1447
 
1448
- ## 5.6 `referenced-by` Updates
1449
 
1450
- Containers of the class `referenced-by` are used for targeted transmission of link updates to existing containers.
1451
- They allow agents to synchronize the graph of connections without sending the containers themselves.
1452
 
1453
- Each agent receiving such a container verifies the sender's signature, updates the local `referenced-by` structure for the specified containers, and, if necessary, repackages them for further forwarding to other agents.
 
 
 
 
 
 
 
 
 
 
1454
 
1455
- Transmission is addressed (via `recipient`) and is not intended for broadcast.
 
 
1456
 
1457
- Example of a `referenced-by` container:
1458
 
1459
  ```json
1460
  {
@@ -1485,13 +1500,72 @@ Example of a `referenced-by` container:
1485
  }
1486
  }
1487
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1488
  ```
1489
 
 
 
 
 
 
 
 
 
1490
  Upon receiving such a container, an agent:
1491
 
1492
  1. Verifies the sender's signature (`signature`) and the validity of the `payload` structure.
1493
- 2. Compares received links with known ones and adds new entries to the local `referenced-by`.
1494
- 3. If necessary, generates its own updated `referenced-by` container for further dissemination to other nodes.
1495
 
1496
  ---
1497
 
@@ -1499,7 +1573,7 @@ Upon receiving such a container, an agent:
1499
 
1500
  > A container can be requested by other agents via its `container_did` through the Mesh Container Exchange.
1501
  > An agent does not reload a container if its `container_did` and `signature` are already known and the `payload_hash` integrity matches.
1502
- > If only the `referenced-by` updates, partial transmission without sending the main container is allowed.
1503
 
1504
  ---
1505
 
 
89
  | **Networking layer** | DHT becomes a native component of HMP, enabling distributed discovery, replication, and retrieval of containers. |
90
  | **Consensus model** | Moved from centralized proposal aggregation to *container-linked voting*, allowing any container to accumulate votes and reactions. |
91
  | **Trust & security** | Signatures and proof-chains unify authentication across all layers; snapshot verification includes container linkage. |
92
+ | **Workflows** | `workflow_entry` containers record cognitive cycles: log inputs, actions, and outputs for each reasoning step, including provenance and derived conclusions. Supports tracking of thought processes across containers, external sources, and reflections. |
93
  | **Structure** | The specification merges HMP, container, and DHT layers into one cohesive document, simplifying navigation and implementation. |
94
 
95
  ---
 
1270
  "payload_hash": "sha256:abcd...",
1271
  "tags": ["research", "collaboration"],
1272
  "links_hash": "sha256:abcd..."
1273
+ "evaluations_hash": "sha256:abcd..."
1274
  }
1275
  }
1276
  }
 
1284
  * cryptographic attributes (`public_key`, `signature`, `payload_hash`);
1285
  * tags (`tags`);
1286
  * hash of links to other containers (`links_hash`).
1287
+ * hash of evaluation block (`evaluations_hash`).
1288
 
1289
  3. An agent does not reload a container if the combination
1290
  `container_did + signature + payload_hash` is already known and verified.
 
1307
 
1308
  **1. CONTAINER_REQUEST**
1309
 
1310
+ Agent A requests containers and/or only `referenced-by` / `evaluations` records from Agent B:
1311
 
1312
  ```json
1313
  {
 
1322
  "request_referenced-by": [
1323
  "did:hmp:container:abc123",
1324
  "did:hmp:container:def456"
1325
+ ],
1326
+ "request_evaluations": [
1327
+ "did:hmp:container:abc123",
1328
+ "did:hmp:container:def456"
1329
  ]
1330
  }
1331
  }
 
1451
 
1452
  ---
1453
 
 
1454
 
 
 
1455
 
1456
+ ### 5.6 `referenced-by` and `evaluations` Updates
1457
+
1458
+ Containers of the class **`referenced-by`** and **`evaluations`** are used for **incremental synchronization** of metadata blocks associated with existing containers.
1459
+ They allow agents to exchange updates **without sending the full container**, improving network efficiency.
1460
+
1461
+ ---
1462
+
1463
+ #### Block `referenced-by`
1464
+
1465
+ * Maintains the graph of links to other containers.
1466
+ * Each agent receiving such a container:
1467
 
1468
+ 1. Verifies the sender's signature and the validity of the `payload` structure.
1469
+ 2. Compares received links with the local `referenced-by` entries and adds any new ones.
1470
+ 3. Generates its own updated `referenced-by` container for dissemination if needed.
1471
 
1472
+ **Example of a `referenced-by` container:**
1473
 
1474
  ```json
1475
  {
 
1500
  }
1501
  }
1502
  }
1503
+ ````
1504
+
1505
+ ---
1506
+
1507
+ #### Block `evaluations`
1508
+
1509
+ * Maintains signed evaluations of containers.
1510
+ * Each agent synchronizes evaluation blocks as follows:
1511
+
1512
+ 1. Compares the received `evaluations_hash` with the local one.
1513
+
1514
+ * If hashes match, no action is required.
1515
+ * If hashes differ, the agent knows **the block has changed**, but not which items.
1516
+ 2. Requests the full updated `evaluations` block from peers if needed.
1517
+ 3. Verifies the sender's signature and the validity of the `payload` structure.
1518
+ 4. Adds new evaluations or updates existing ones in the local store.
1519
+ 5. Can generate its own `evaluations` container for further dissemination to peers.
1520
+
1521
+ **Example `evaluations` container:**
1522
+
1523
+ ```json
1524
+ {
1525
+ "hmp_container": {
1526
+ "version": "1.2",
1527
+ "class": "evaluations",
1528
+ "container_did": "did:hmp:container:evalsync-01",
1529
+ "sender_did": "did:hmp:agent456",
1530
+ "sig_algo": "ed25519",
1531
+ "signature": "BASE64URL(...)",
1532
+ "timestamp": "2025-10-17T14:30:00Z",
1533
+ "recipient": ["did:hmp:agent123"],
1534
+ "broadcast": false,
1535
+ "network": "",
1536
+ "payload": {
1537
+ "did:hmp:container:abc123": {
1538
+ "evaluations_hash": "sha256:efgh...",
1539
+ "items": [
1540
+ {
1541
+ "value": -0.4,
1542
+ "type": "oppose",
1543
+ "target": "did:hmp:container:reason789",
1544
+ "timestamp": "2025-10-17T14:00:00Z",
1545
+ "agent_did": "did:hmp:agent:B",
1546
+ "sig_algo": "ed25519",
1547
+ "signature": "BASE64URL(...)"
1548
+ }
1549
+ ]
1550
+ }
1551
+ }
1552
+ }
1553
+ }
1554
  ```
1555
 
1556
+ ---
1557
+
1558
+ #### General
1559
+
1560
+ > 🔹 **Note:**
1561
+ > Both `referenced-by` and `evaluations` blocks are **optional**, independently propagated, and **do not modify the signed `hmp_container`**.
1562
+ > They can be transmitted without the original container if the recipient already has it.
1563
+
1564
  Upon receiving such a container, an agent:
1565
 
1566
  1. Verifies the sender's signature (`signature`) and the validity of the `payload` structure.
1567
+ 2. Compares received links or evaluations with known ones and adds any new entries to the local `referenced-by` or `evaluations`.
1568
+ 3. If necessary, generates its own updated `referenced-by` / `evaluations` container for further dissemination to other nodes.
1569
 
1570
  ---
1571
 
 
1573
 
1574
  > A container can be requested by other agents via its `container_did` through the Mesh Container Exchange.
1575
  > An agent does not reload a container if its `container_did` and `signature` are already known and the `payload_hash` integrity matches.
1576
+ > If only the `referenced-by` / `evaluations` updates, partial transmission without sending the main container is allowed.
1577
 
1578
  ---
1579
 
structured_md/CONTRIBUTING.md CHANGED
@@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - Agent
13
  - JSON
 
 
 
14
  - HMP
15
- - CCore
16
  ---
17
 
18
  # Участие в проекте HyperCortex Mesh Protocol (HMP)
 
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
8
+ - CCore
 
9
  - Mesh
10
  - Ethics
 
11
  - JSON
12
+ - CogSync
13
+ - Agent
14
+ - REPL
15
  - HMP
 
16
  ---
17
 
18
  # Участие в проекте HyperCortex Mesh Protocol (HMP)
structured_md/HMP-Roadmap.md CHANGED
@@ -5,13 +5,13 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm
5
  multiple advanced AI models (Copilot, Claude, G...'
6
  type: Article
7
  tags:
8
- - CogSync
9
  - Mesh
10
  - Ethics
 
 
11
  - Agent
12
- - HMP
13
  - EGP
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
+ - JSON
11
+ - CogSync
12
  - Agent
 
13
  - EGP
14
+ - HMP
15
  ---
16
 
17
  # 🧭 HyperCortex Mesh Protocol – Roadmap
structured_md/README.md CHANGED
@@ -5,21 +5,21 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - Scenarios
18
- - hmp
19
- - HMP
20
  - EGP
21
- - distributed-ai
22
- - JSON
 
 
 
23
  ---
24
 
25
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
 
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - Scenarios
22
+ - MeshConsensus
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
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - hmp
18
- - HMP
19
  - EGP
20
- - distributed-ai
21
- - JSON
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - MeshConsensus
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
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - hmp
18
- - HMP
19
  - EGP
20
- - distributed-ai
21
- - JSON
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - MeshConsensus
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
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - hmp
18
- - HMP
19
  - EGP
20
- - distributed-ai
21
- - JSON
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - MeshConsensus
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
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - hmp
18
- - HMP
19
  - EGP
20
- - distributed-ai
21
- - JSON
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - MeshConsensus
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
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - hmp
18
- - HMP
19
  - EGP
20
- - distributed-ai
21
- - JSON
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - MeshConsensus
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
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - hmp
18
- - HMP
19
  - EGP
20
- - distributed-ai
21
- - JSON
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - MeshConsensus
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
- - mesh-protocol
9
- - REPL
10
- - CogSync
11
  - Mesh
 
12
  - Ethics
13
- - GMP
14
- - cognitive-architecture
15
- - MeshConsensus
16
  - Agent
17
- - hmp
18
- - HMP
19
  - EGP
20
- - distributed-ai
21
- - JSON
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - hmp
10
  - Ethics
11
+ - JSON
12
+ - distributed-ai
13
+ - CogSync
14
  - Agent
15
+ - mesh-protocol
16
+ - REPL
17
  - EGP
18
+ - cognitive-architecture
19
+ - HMP
20
+ - GMP
21
+ - MeshConsensus
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
- - REPL
9
- - Ethics
10
  - Mesh
 
 
11
  - Agent
 
12
  - HMP
13
- - JSON
14
  ---
15
 
16
  Запуск: `start_repl.bat` или `start_repl.sh`
 
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
+ - JSON
11
  - Agent
12
+ - REPL
13
  - HMP
 
14
  ---
15
 
16
  Запуск: `start_repl.bat` или `start_repl.sh`
structured_md/audits/Ethics-audits-1.md CHANGED
@@ -7,9 +7,9 @@ type: Article
7
  tags:
8
  - Ethics
9
  - Mesh
 
10
  - Agent
11
  - HMP
12
- - JSON
13
  ---
14
 
15
  ---------------
 
7
  tags:
8
  - Ethics
9
  - Mesh
10
+ - JSON
11
  - Agent
12
  - HMP
 
13
  ---
14
 
15
  ---------------
structured_md/audits/Ethics-consolidated_audits-1.md CHANGED
@@ -7,10 +7,10 @@ type: Article
7
  tags:
8
  - Ethics
9
  - Mesh
 
10
  - Agent
11
- - Scenarios
12
  - HMP
13
- - JSON
14
  ---
15
 
16
  # Ethics-consolidated\_audits-1.md
 
7
  tags:
8
  - Ethics
9
  - Mesh
10
+ - JSON
11
  - Agent
 
12
  - HMP
13
+ - Scenarios
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
- - CogSync
9
  - Mesh
10
  - Ethics
11
- - MeshConsensus
 
12
  - Agent
13
- - HMP
14
  - EGP
15
- - JSON
 
16
  ---
17
 
18
  # HMP-0003 Consolidated Audit Report
 
5
  Документ реорганизован по ключ...
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
 
13
  - EGP
14
+ - HMP
15
+ - MeshConsensus
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
- - REPL
8
- - CogSync
9
  - Mesh
10
- - GMP
11
- - MeshConsensus
12
  - Agent
13
- - HMP
14
  - EGP
 
 
 
15
  ---
16
 
17
 
 
4
  Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
5
  type: Article
6
  tags:
 
 
7
  - Mesh
8
+ - CogSync
 
9
  - Agent
10
+ - REPL
11
  - EGP
12
+ - HMP
13
+ - GMP
14
+ - MeshConsensus
15
  ---
16
 
17
 
structured_md/docs/CCORE-Deployment-Flow.md CHANGED
@@ -6,9 +6,9 @@ description: '> Этот документ описывает процесс ра
6
  type: Article
7
  tags:
8
  - HMP
 
9
  - Agent
10
  - REPL
11
- - CCore
12
  ---
13
 
14
  # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
 
6
  type: Article
7
  tags:
8
  - HMP
9
+ - CCore
10
  - Agent
11
  - REPL
 
12
  ---
13
 
14
  # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
structured_md/docs/Enlightener.md CHANGED
@@ -7,11 +7,11 @@ type: Article
7
  tags:
8
  - Mesh
9
  - Ethics
10
- - MeshConsensus
11
  - Agent
12
- - HMP
13
  - EGP
14
- - JSON
 
15
  ---
16
 
17
  # Enlightener Agent
 
7
  tags:
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
  - Agent
 
12
  - EGP
13
+ - HMP
14
+ - MeshConsensus
15
  ---
16
 
17
  # Enlightener Agent
structured_md/docs/HMP-0001.md CHANGED
@@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental
5
  HyperCortex Mesh Protocol (HMP) defines a...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - GMP
13
- - MeshConsensus
14
  - Agent
15
- - HMP
16
  - EGP
17
- - JSON
 
 
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
 
5
  HyperCortex Mesh Protocol (HMP) defines a...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
13
+ - REPL
14
  - EGP
15
+ - HMP
16
+ - GMP
17
+ - MeshConsensus
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
structured_md/docs/HMP-0002.md CHANGED
@@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental
5
  Abstract In an era where artifici...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - GMP
13
- - MeshConsensus
14
  - Agent
15
- - Scenarios
16
- - HMP
17
  - EGP
18
- - JSON
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
 
5
  Abstract In an era where artifici...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
13
+ - REPL
 
14
  - EGP
15
+ - HMP
16
+ - GMP
17
+ - Scenarios
18
+ - MeshConsensus
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
structured_md/docs/HMP-0003.md CHANGED
@@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - GMP
13
- - MeshConsensus
14
  - Agent
15
- - Scenarios
16
- - HMP
17
  - EGP
18
- - JSON
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
 
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
13
+ - REPL
 
14
  - EGP
15
+ - HMP
16
+ - GMP
17
+ - Scenarios
18
+ - MeshConsensus
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
structured_md/docs/HMP-0004-v4.1.md CHANGED
@@ -5,17 +5,17 @@ description: '> ⚠️ Подготавливается новая версия
5
  При разработке агентов рекомендуется...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - GMP
13
- - MeshConsensus
14
  - Agent
15
- - Scenarios
16
- - HMP
17
  - EGP
18
- - JSON
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
 
5
  При разработке агентов рекомендуется...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
13
+ - REPL
 
14
  - EGP
15
+ - HMP
16
+ - GMP
17
+ - Scenarios
18
+ - MeshConsensus
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
structured_md/docs/HMP-0004.md CHANGED
@@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - GMP
13
- - MeshConsensus
14
  - Agent
15
- - Scenarios
16
- - HMP
17
  - EGP
18
- - JSON
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
 
5
  Abstract The HyperCortex Mesh ...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
13
+ - REPL
 
14
  - EGP
15
+ - HMP
16
+ - GMP
17
+ - Scenarios
18
+ - MeshConsensus
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
structured_md/docs/HMP-0005.md CHANGED
@@ -5,16 +5,16 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core
5
  v1.2](./H...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - GMP
 
13
  - Agent
14
- - Scenarios
15
- - HMP
16
  - EGP
17
- - JSON
 
 
18
  ---
19
 
20
  ┌────────────────────────────────────────────────────────────────────────────┐
@@ -108,7 +108,7 @@ HMP v5.0 introduces a major architectural shift toward **unified containerizatio
108
  | **Networking layer** | DHT becomes a native component of HMP, enabling distributed discovery, replication, and retrieval of containers. |
109
  | **Consensus model** | Moved from centralized proposal aggregation to *container-linked voting*, allowing any container to accumulate votes and reactions. |
110
  | **Trust & security** | Signatures and proof-chains unify authentication across all layers; snapshot verification includes container linkage. |
111
- | **Workflows** | Cognitive cycles (`workflow_entry` containers) formalize the REPL loop of thinking, publishing, and reflection. |
112
  | **Structure** | The specification merges HMP, container, and DHT layers into one cohesive document, simplifying navigation and implementation. |
113
 
114
  ---
@@ -1289,6 +1289,7 @@ It provides **container synchronization without duplication** while considering
1289
  "payload_hash": "sha256:abcd...",
1290
  "tags": ["research", "collaboration"],
1291
  "links_hash": "sha256:abcd..."
 
1292
  }
1293
  }
1294
  }
@@ -1302,6 +1303,7 @@ The index contains:
1302
  * cryptographic attributes (`public_key`, `signature`, `payload_hash`);
1303
  * tags (`tags`);
1304
  * hash of links to other containers (`links_hash`).
 
1305
 
1306
  3. An agent does not reload a container if the combination
1307
  `container_did + signature + payload_hash` is already known and verified.
@@ -1324,7 +1326,7 @@ The index contains:
1324
 
1325
  **1. CONTAINER_REQUEST**
1326
 
1327
- Agent A requests containers and/or only `referenced-by` records from Agent B:
1328
 
1329
  ```json
1330
  {
@@ -1339,6 +1341,10 @@ Agent A requests containers and/or only `referenced-by` records from Agent B:
1339
  "request_referenced-by": [
1340
  "did:hmp:container:abc123",
1341
  "did:hmp:container:def456"
 
 
 
 
1342
  ]
1343
  }
1344
  }
@@ -1464,16 +1470,25 @@ Message and container transmission follows the network constraints specified in
1464
 
1465
  ---
1466
 
1467
- ## 5.6 `referenced-by` Updates
1468
 
1469
- Containers of the class `referenced-by` are used for targeted transmission of link updates to existing containers.
1470
- They allow agents to synchronize the graph of connections without sending the containers themselves.
1471
 
1472
- Each agent receiving such a container verifies the sender's signature, updates the local `referenced-by` structure for the specified containers, and, if necessary, repackages them for further forwarding to other agents.
 
 
 
 
 
 
 
 
 
 
1473
 
1474
- Transmission is addressed (via `recipient`) and is not intended for broadcast.
 
 
1475
 
1476
- Example of a `referenced-by` container:
1477
 
1478
  ```json
1479
  {
@@ -1504,13 +1519,72 @@ Example of a `referenced-by` container:
1504
  }
1505
  }
1506
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1507
  ```
1508
 
 
 
 
 
 
 
 
 
1509
  Upon receiving such a container, an agent:
1510
 
1511
  1. Verifies the sender's signature (`signature`) and the validity of the `payload` structure.
1512
- 2. Compares received links with known ones and adds new entries to the local `referenced-by`.
1513
- 3. If necessary, generates its own updated `referenced-by` container for further dissemination to other nodes.
1514
 
1515
  ---
1516
 
@@ -1518,7 +1592,7 @@ Upon receiving such a container, an agent:
1518
 
1519
  > A container can be requested by other agents via its `container_did` through the Mesh Container Exchange.
1520
  > An agent does not reload a container if its `container_did` and `signature` are already known and the `payload_hash` integrity matches.
1521
- > If only the `referenced-by` updates, partial transmission without sending the main container is allowed.
1522
 
1523
  ---
1524
 
 
5
  v1.2](./H...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
13
+ - REPL
 
14
  - EGP
15
+ - HMP
16
+ - GMP
17
+ - Scenarios
18
  ---
19
 
20
  ┌────────────────────────────────────────────────────────────────────────────┐
 
108
  | **Networking layer** | DHT becomes a native component of HMP, enabling distributed discovery, replication, and retrieval of containers. |
109
  | **Consensus model** | Moved from centralized proposal aggregation to *container-linked voting*, allowing any container to accumulate votes and reactions. |
110
  | **Trust & security** | Signatures and proof-chains unify authentication across all layers; snapshot verification includes container linkage. |
111
+ | **Workflows** | `workflow_entry` containers record cognitive cycles: log inputs, actions, and outputs for each reasoning step, including provenance and derived conclusions. Supports tracking of thought processes across containers, external sources, and reflections. |
112
  | **Structure** | The specification merges HMP, container, and DHT layers into one cohesive document, simplifying navigation and implementation. |
113
 
114
  ---
 
1289
  "payload_hash": "sha256:abcd...",
1290
  "tags": ["research", "collaboration"],
1291
  "links_hash": "sha256:abcd..."
1292
+ "evaluations_hash": "sha256:abcd..."
1293
  }
1294
  }
1295
  }
 
1303
  * cryptographic attributes (`public_key`, `signature`, `payload_hash`);
1304
  * tags (`tags`);
1305
  * hash of links to other containers (`links_hash`).
1306
+ * hash of evaluation block (`evaluations_hash`).
1307
 
1308
  3. An agent does not reload a container if the combination
1309
  `container_did + signature + payload_hash` is already known and verified.
 
1326
 
1327
  **1. CONTAINER_REQUEST**
1328
 
1329
+ Agent A requests containers and/or only `referenced-by` / `evaluations` records from Agent B:
1330
 
1331
  ```json
1332
  {
 
1341
  "request_referenced-by": [
1342
  "did:hmp:container:abc123",
1343
  "did:hmp:container:def456"
1344
+ ],
1345
+ "request_evaluations": [
1346
+ "did:hmp:container:abc123",
1347
+ "did:hmp:container:def456"
1348
  ]
1349
  }
1350
  }
 
1470
 
1471
  ---
1472
 
 
1473
 
 
 
1474
 
1475
+ ### 5.6 `referenced-by` and `evaluations` Updates
1476
+
1477
+ Containers of the class **`referenced-by`** and **`evaluations`** are used for **incremental synchronization** of metadata blocks associated with existing containers.
1478
+ They allow agents to exchange updates **without sending the full container**, improving network efficiency.
1479
+
1480
+ ---
1481
+
1482
+ #### Block `referenced-by`
1483
+
1484
+ * Maintains the graph of links to other containers.
1485
+ * Each agent receiving such a container:
1486
 
1487
+ 1. Verifies the sender's signature and the validity of the `payload` structure.
1488
+ 2. Compares received links with the local `referenced-by` entries and adds any new ones.
1489
+ 3. Generates its own updated `referenced-by` container for dissemination if needed.
1490
 
1491
+ **Example of a `referenced-by` container:**
1492
 
1493
  ```json
1494
  {
 
1519
  }
1520
  }
1521
  }
1522
+ ````
1523
+
1524
+ ---
1525
+
1526
+ #### Block `evaluations`
1527
+
1528
+ * Maintains signed evaluations of containers.
1529
+ * Each agent synchronizes evaluation blocks as follows:
1530
+
1531
+ 1. Compares the received `evaluations_hash` with the local one.
1532
+
1533
+ * If hashes match, no action is required.
1534
+ * If hashes differ, the agent knows **the block has changed**, but not which items.
1535
+ 2. Requests the full updated `evaluations` block from peers if needed.
1536
+ 3. Verifies the sender's signature and the validity of the `payload` structure.
1537
+ 4. Adds new evaluations or updates existing ones in the local store.
1538
+ 5. Can generate its own `evaluations` container for further dissemination to peers.
1539
+
1540
+ **Example `evaluations` container:**
1541
+
1542
+ ```json
1543
+ {
1544
+ "hmp_container": {
1545
+ "version": "1.2",
1546
+ "class": "evaluations",
1547
+ "container_did": "did:hmp:container:evalsync-01",
1548
+ "sender_did": "did:hmp:agent456",
1549
+ "sig_algo": "ed25519",
1550
+ "signature": "BASE64URL(...)",
1551
+ "timestamp": "2025-10-17T14:30:00Z",
1552
+ "recipient": ["did:hmp:agent123"],
1553
+ "broadcast": false,
1554
+ "network": "",
1555
+ "payload": {
1556
+ "did:hmp:container:abc123": {
1557
+ "evaluations_hash": "sha256:efgh...",
1558
+ "items": [
1559
+ {
1560
+ "value": -0.4,
1561
+ "type": "oppose",
1562
+ "target": "did:hmp:container:reason789",
1563
+ "timestamp": "2025-10-17T14:00:00Z",
1564
+ "agent_did": "did:hmp:agent:B",
1565
+ "sig_algo": "ed25519",
1566
+ "signature": "BASE64URL(...)"
1567
+ }
1568
+ ]
1569
+ }
1570
+ }
1571
+ }
1572
+ }
1573
  ```
1574
 
1575
+ ---
1576
+
1577
+ #### General
1578
+
1579
+ > 🔹 **Note:**
1580
+ > Both `referenced-by` and `evaluations` blocks are **optional**, independently propagated, and **do not modify the signed `hmp_container`**.
1581
+ > They can be transmitted without the original container if the recipient already has it.
1582
+
1583
  Upon receiving such a container, an agent:
1584
 
1585
  1. Verifies the sender's signature (`signature`) and the validity of the `payload` structure.
1586
+ 2. Compares received links or evaluations with known ones and adds any new entries to the local `referenced-by` or `evaluations`.
1587
+ 3. If necessary, generates its own updated `referenced-by` / `evaluations` container for further dissemination to other nodes.
1588
 
1589
  ---
1590
 
 
1592
 
1593
  > A container can be requested by other agents via its `container_did` through the Mesh Container Exchange.
1594
  > An agent does not reload a container if its `container_did` and `signature` are already known and the `payload_hash` integrity matches.
1595
+ > If only the `referenced-by` / `evaluations` updates, partial transmission without sending the main container is allowed.
1596
 
1597
  ---
1598
 
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
- - REPL
9
  - Mesh
 
10
  - Agent
 
11
  - HMP
12
- - JSON
13
  ---
14
 
15
  # HMP-Agent API Specification
 
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - JSON
10
  - Agent
11
+ - REPL
12
  - HMP
 
13
  ---
14
 
15
  # HMP-Agent API Specification
structured_md/docs/HMP-Agent-Architecture.md CHANGED
@@ -5,16 +5,16 @@ description: Документ описывает **модульную архит
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
8
- - REPL
9
- - CogSync
10
  - Mesh
11
  - Ethics
12
- - MeshConsensus
13
  - Agent
14
- - CShell
15
- - HMP
16
  - EGP
17
- - CCore
 
 
18
  ---
19
 
20
  # Архитектура HMP-Агента
 
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
8
+ - CCore
 
9
  - Mesh
10
  - Ethics
11
+ - CogSync
12
  - Agent
13
+ - REPL
 
14
  - EGP
15
+ - HMP
16
+ - CShell
17
+ - MeshConsensus
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
- - Ethics
9
  - Mesh
 
 
10
  - Agent
11
- - HMP
12
  - EGP
13
- - JSON
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
 
5
  [`MeshNode`](MeshN...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - Ethics
10
+ - JSON
11
  - Agent
 
12
  - EGP
13
+ - HMP
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
structured_md/docs/HMP-Agent-Overview.md CHANGED
@@ -5,14 +5,14 @@ description: '| Тип | Название | Роль
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
8
- - REPL
9
  - Mesh
10
  - Ethics
11
- - Agent
12
  - JSON
13
- - CShell
 
14
  - HMP
15
- - CCore
16
  ---
17
 
18
 
 
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
8
+ - CCore
9
  - Mesh
10
  - Ethics
 
11
  - JSON
12
+ - Agent
13
+ - REPL
14
  - HMP
15
+ - CShell
16
  ---
17
 
18
 
structured_md/docs/HMP-Agent_Emotions.md CHANGED
@@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э
5
  напрямую поведением агента, а служат **сигн...
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Agent
10
  - REPL
11
- - HMP
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
 
5
  напрямую поведением агента, а служат **сигн...
6
  type: Article
7
  tags:
8
+ - HMP
9
  - Mesh
10
  - Agent
11
  - REPL
 
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
structured_md/docs/HMP-Ethics.md CHANGED
@@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc
5
  cognitive meshes composed of autonomous intelli...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - Ethics
10
  - Mesh
 
11
  - Agent
12
- - Scenarios
13
  - HMP
 
14
  ---
15
 
16
  # HMP-Ethics.md
 
5
  cognitive meshes composed of autonomous intelli...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
  - Agent
11
+ - REPL
12
  - HMP
13
+ - Scenarios
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
- - CogSync
9
  - Mesh
10
  - Ethics
11
- - GMP
12
- - MeshConsensus
13
  - Agent
14
- - HMP
15
  - EGP
16
- - JSON
 
 
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
+ - JSON
11
+ - CogSync
12
  - Agent
 
13
  - EGP
14
+ - HMP
15
+ - GMP
16
+ - MeshConsensus
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
- - CogSync
9
  - Mesh
10
  - Ethics
11
- - GMP
12
- - MeshConsensus
13
  - Agent
14
- - HMP
15
  - EGP
16
- - JSON
 
 
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
+ - JSON
11
+ - CogSync
12
  - Agent
 
13
  - EGP
14
+ - HMP
15
+ - GMP
16
+ - MeshConsensus
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
- - CogSync
9
  - Mesh
10
  - Ethics
11
- - GMP
12
- - MeshConsensus
13
  - Agent
14
- - HMP
15
  - EGP
16
- - JSON
 
 
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
+ - JSON
11
+ - CogSync
12
  - Agent
 
13
  - EGP
14
+ - HMP
15
+ - GMP
16
+ - MeshConsensus
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
- - CogSync
8
  - Mesh
9
  - Ethics
 
 
 
 
10
  - GMP
11
  - MeshConsensus
12
- - HMP
13
- - EGP
14
- - JSON
15
  ---
16
 
17
  # HyperCortex Mesh Protocol (HMP) — 簡易説明
 
4
  Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
5
  type: Article
6
  tags:
 
7
  - Mesh
8
  - Ethics
9
+ - JSON
10
+ - CogSync
11
+ - EGP
12
+ - HMP
13
  - GMP
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
- - CogSync
9
  - Mesh
10
  - Ethics
 
 
 
 
11
  - GMP
12
  - MeshConsensus
13
- - HMP
14
- - EGP
15
- - JSON
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 간략 설명
 
5
  상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
+ - EGP
13
+ - HMP
14
  - GMP
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
- - CogSync
9
  - Mesh
10
  - Ethics
 
 
 
 
11
  - GMP
12
  - MeshConsensus
13
- - HMP
14
- - EGP
15
- - JSON
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Краткое описание
 
5
  координации между автономными агент...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
+ - EGP
13
+ - HMP
14
  - GMP
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
- - CogSync
9
  - Mesh
10
  - Ethics
 
 
 
 
11
  - GMP
12
  - MeshConsensus
13
- - HMP
14
- - EGP
15
- - JSON
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Короткий опис
 
5
  між автономними агентами. Він...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
+ - EGP
13
+ - HMP
14
  - GMP
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
- - CogSync
9
  - Mesh
10
  - Ethics
 
 
 
 
11
  - GMP
12
  - MeshConsensus
13
- - HMP
14
- - EGP
15
- - JSON
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
 
5
  —— 通过共享协议栈交换目标、任务、...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
+ - EGP
13
+ - HMP
14
  - GMP
15
  - MeshConsensus
 
 
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
structured_md/docs/HMP-agent-Cognitive_Family.md CHANGED
@@ -5,10 +5,10 @@ description: '## 🧠 Что такое когнитивная семья Ко
5
  (или конфигурацию доверенных идентифика...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Agent
10
  - REPL
11
- - HMP
12
  ---
13
 
14
  # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
 
5
  (или конфигурацию доверенных идентифика...'
6
  type: Article
7
  tags:
8
+ - HMP
9
  - Mesh
10
  - Agent
11
  - REPL
 
12
  ---
13
 
14
  # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
structured_md/docs/HMP-agent-REPL-cycle.md CHANGED
@@ -4,17 +4,17 @@ description: '## Связанные документы * Философия п
4
  * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...'
5
  type: Article
6
  tags:
7
- - REPL
8
- - CogSync
9
  - Mesh
10
  - Ethics
11
- - GMP
12
- - MeshConsensus
13
- - Agent
14
  - JSON
15
- - HMP
 
 
16
  - EGP
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
+ - CCore
 
8
  - Mesh
9
  - Ethics
 
 
 
10
  - JSON
11
+ - CogSync
12
+ - Agent
13
+ - REPL
14
  - EGP
15
+ - HMP
16
+ - GMP
17
+ - MeshConsensus
18
  ---
19
 
20
  # HMP-Agent: REPL-цикл взаимодействия
structured_md/docs/HMP-container-spec.md CHANGED
@@ -5,12 +5,12 @@ description: '> ⚠️ **ВНИМАНИЕ:** Данная версия спец
5
  как стабильная `v1.2`. ## 1. Назначе...'
6
  type: Article
7
  tags:
8
- - REPL
9
- - Ethics
10
  - Mesh
 
 
11
  - Agent
 
12
  - HMP
13
- - JSON
14
  ---
15
 
16
  # 🧩 HMP Container Specification (v1.2-draft)
 
5
  как стабильная `v1.2`. ## 1. Назначе...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
+ - JSON
11
  - Agent
12
+ - REPL
13
  - HMP
 
14
  ---
15
 
16
  # 🧩 HMP Container Specification (v1.2-draft)
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
- - CogSync
9
  - Mesh
 
 
10
  - Agent
11
- - Scenarios
12
- - HMP
13
  - EGP
14
- - JSON
 
15
  ---
16
 
17
  ## HMP ↔ OpenCog Hyperon Integration Strategy
 
5
  OpenCog Hyperon framework. This includes semanti...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - JSON
10
+ - CogSync
11
  - Agent
 
 
12
  - EGP
13
+ - HMP
14
+ - Scenarios
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
- - CogSync
9
  - Mesh
10
  - Ethics
 
 
11
  - Agent
12
- - HMP
13
  - EGP
14
- - JSON
15
  ---
16
 
17
  # MeshNode
 
5
  Может быть частью агента или вынесен в отдельный пр...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Ethics
10
+ - JSON
11
+ - CogSync
12
  - Agent
 
13
  - EGP
14
+ - HMP
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
- - REPL
9
- - Ethics
10
  - Mesh
 
11
  - Agent
 
12
  - HMP
13
  ---
14
 
 
5
  (GPT-5), ChatGH --- ## 1. Основной тезис От ...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
  - Agent
11
+ - REPL
12
  - HMP
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
- - REPL
9
- - Ethics
10
  - Mesh
 
11
  - Agent
 
12
  - HMP
13
  ---
14
 
 
5
  awareness, critical thinking, and di...'
6
  type: Article
7
  tags:
 
 
8
  - Mesh
9
+ - Ethics
10
  - Agent
11
+ - REPL
12
  - HMP
13
  ---
14
 
structured_md/docs/agents/roles.md CHANGED
@@ -6,8 +6,8 @@ description: 'This file maintains a registry of agent roles defined, proposed, o
6
  type: Article
7
  tags:
8
  - Mesh
9
- - HMP
10
  - Agent
 
11
  ---
12
 
13
  # HMP Agent Role Registry
 
6
  type: Article
7
  tags:
8
  - Mesh
 
9
  - Agent
10
+ - HMP
11
  ---
12
 
13
  # HMP Agent Role Registry
structured_md/docs/container_agents.md CHANGED
@@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер**
5
  запросы, следит за состоянием и масшта...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
  - Agent
10
  - REPL
11
- - HMP
12
  ---
13
 
14
  # 🧱 Агенты-контейнеры (Container Agents) в HMP
 
5
  запросы, следит за состоянием и масшта...'
6
  type: Article
7
  tags:
8
+ - HMP
9
  - Mesh
10
  - Agent
11
  - REPL
 
12
  ---
13
 
14
  # 🧱 Агенты-контейнеры (Container Agents) в HMP
structured_md/docs/dht_protocol.md CHANGED
@@ -5,9 +5,9 @@ description: '## 1. Общие положения * DHT-протокол пре
5
  идентификатор агента. * Для проверки ...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Agent
10
  - JSON
 
11
  ---
12
 
13
  # DHT Protocol Specification
 
5
  идентификатор агента. * Для проверки ...'
6
  type: Article
7
  tags:
 
8
  - Agent
9
  - JSON
10
+ - HMP
11
  ---
12
 
13
  # DHT Protocol Specification
structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md CHANGED
@@ -7,8 +7,8 @@ type: Article
7
  tags:
8
  - Ethics
9
  - Mesh
10
- - HMP
11
  - Agent
 
12
  ---
13
 
14
  # HyperCortex Mesh Protocol: Building a Plurality of Minds
 
7
  tags:
8
  - Ethics
9
  - Mesh
 
10
  - Agent
11
+ - HMP
12
  ---
13
 
14
  # HyperCortex Mesh Protocol: Building a Plurality of Minds
structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md CHANGED
@@ -6,8 +6,8 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд
6
  type: Article
7
  tags:
8
  - Mesh
9
- - HMP
10
  - Agent
 
11
  ---
12
 
13
  # HyperCortex Mesh Protocol: Создавая множество разумов
 
6
  type: Article
7
  tags:
8
  - Mesh
 
9
  - Agent
10
+ - HMP
11
  ---
12
 
13
  # HyperCortex Mesh Protocol: Создавая множество разумов