GitHub Action commited on
Commit
89dc3c2
·
1 Parent(s): d312cd6

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 +146 -1
  2. structured_md/CONTRIBUTING.md +4 -4
  3. structured_md/HMP-Roadmap.md +5 -5
  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/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 +3 -3
  16. structured_md/audits/Ethics-consolidated_audits-1.md +4 -4
  17. structured_md/audits/HMP-0003-consolidated_audit.md +6 -6
  18. structured_md/docs/Basic-agent-sim.md +5 -5
  19. structured_md/docs/CCORE-Deployment-Flow.md +2 -2
  20. structured_md/docs/Distributed-Cognitive-Systems.md +1 -1
  21. structured_md/docs/Enlightener.md +5 -5
  22. structured_md/docs/HMP-0001.md +7 -7
  23. structured_md/docs/HMP-0002.md +8 -8
  24. structured_md/docs/HMP-0003.md +8 -8
  25. structured_md/docs/HMP-0004-v4.1.md +8 -8
  26. structured_md/docs/HMP-0004.md +8 -8
  27. structured_md/docs/HMP-0005.md +153 -8
  28. structured_md/docs/HMP-Agent-API.md +3 -3
  29. structured_md/docs/HMP-Agent-Architecture.md +6 -6
  30. structured_md/docs/HMP-Agent-Network-Flow.md +4 -4
  31. structured_md/docs/HMP-Agent-Overview.md +4 -4
  32. structured_md/docs/HMP-Agent_Emotions.md +2 -2
  33. structured_md/docs/HMP-Ethics.md +3 -3
  34. structured_md/docs/HMP-Short-Description_de.md +6 -6
  35. structured_md/docs/HMP-Short-Description_en.md +6 -6
  36. structured_md/docs/HMP-Short-Description_fr.md +6 -6
  37. structured_md/docs/HMP-Short-Description_ja.md +5 -5
  38. structured_md/docs/HMP-Short-Description_ko.md +5 -5
  39. structured_md/docs/HMP-Short-Description_ru.md +5 -5
  40. structured_md/docs/HMP-Short-Description_uk.md +5 -5
  41. structured_md/docs/HMP-Short-Description_zh.md +5 -5
  42. structured_md/docs/HMP-agent-Cognitive_Family.md +2 -2
  43. structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +1 -1
  44. structured_md/docs/HMP-agent-REPL-cycle.md +7 -7
  45. structured_md/docs/HMP-how-AI-sees-it.md +1 -1
  46. structured_md/docs/HMP_EDA_Comparison.md +1 -1
  47. structured_md/docs/HMP_HyperCortex_Comparison.md +1 -1
  48. structured_md/docs/HMP_Hyperon_Integration.md +5 -5
  49. structured_md/docs/MeshNode.md +5 -5
  50. structured_md/docs/PHILOSOPHY.md +2 -2
docs/HMP-0005.md CHANGED
@@ -4429,8 +4429,153 @@ flowchart LR
4429
 
4430
  ### 6.8 Reputation and Trust Exchange (RTE)
4431
 
4432
- ### 6.9 Distributed Container Propagation (DCP)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4433
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4434
 
4435
  ---
4436
 
 
4429
 
4430
  ### 6.8 Reputation and Trust Exchange (RTE)
4431
 
4432
+ The **Reputation and Trust Exchange (RTE)** subsystem defines how agents evaluate and exchange verifiable trust assessments.
4433
+ Each agent MAY publish one or more `trust` containers describing its evaluation of other peers’ reliability, integrity, and ethical conduct.
4434
+
4435
+ RTE provides a decentralized foundation for **participant reputation assessment**, enabling **trust-weighted routing**, **behavioral transparency**, and **cross-layer decision support** (MRD, CogSync, EGP).
4436
+
4437
+ ---
4438
+
4439
+ #### 6.8.1 Trust Container Structure
4440
+
4441
+ The `trust` container represents an agent’s evaluation of a **single peer**.
4442
+ It may refer to the evaluated peer’s latest known `peer_announce` container,
4443
+ and optionally to previous announcements for context continuity.
4444
+
4445
+ Each evaluation criterion is represented as a structured object containing its own score, evidence, and optional comment.
4446
+ This allows gradual enrichment of the trust model without schema changes.
4447
+
4448
+ ```json
4449
+ {
4450
+ "head": {
4451
+ "class": "trust",
4452
+ "sig_algo": "ed25519",
4453
+ "timestamp": "2025-11-09T15:00:00Z"
4454
+ },
4455
+ "payload": {
4456
+ "agent_did": "did:hmp:agent567",
4457
+ "total_trust_score": 0.86,
4458
+ "relay_reliability": {
4459
+ "trust_score": 0.87,
4460
+ "evidence": ["did:hmp:container:a1b2c3"],
4461
+ "comment": "Consistently reliable message relay"
4462
+ },
4463
+ "content_integrity": {
4464
+ "trust_score": 0.85,
4465
+ "evidence": ["did:hmp:container:a1b3c3"],
4466
+ "comment": "Delivered only verified containers"
4467
+ },
4468
+ "ethical_alignment": {
4469
+ "trust_score": 0.84,
4470
+ "evidence": ["did:hmp:container:b2f9d2"],
4471
+ "comment": "Demonstrates consistent adherence to ethical policies"
4472
+ }
4473
+ },
4474
+ "related": {
4475
+ "in_reply_to": "did:hmp:container:peerannounce-567",
4476
+ "see_also": ["did:hmp:container:peerannounce-489"],
4477
+ "previous_version": "did:hmp:container:trust-9ab7"
4478
+ }
4479
+ }
4480
+ ```
4481
+
4482
+ | Field | Description |
4483
+ | -------------------------- | ----------------------------------------------------------------------------------------------- |
4484
+ | `agent_did` | DID of the evaluated peer. |
4485
+ | `total_trust_score` | Aggregated evaluation summarizing multiple criteria. |
4486
+ | *criterion objects* | Per-category assessments (`relay_reliability`, `content_integrity`, `ethical_alignment`, etc.). |
4487
+ | - `trust_score` | Numerical evaluation (0.0–1.0) of the specific criterion. |
4488
+ | - `evidence` | References to containers supporting the evaluation (observed behavior, exchanges, etc.). |
4489
+ | - `peer_trust_sources` | Optional references to trust containers from other agents used “as-is” without verification. |
4490
+ | - `comment` | Optional rationale or human-readable note. |
4491
+ | `related.in_reply_to` | Reference to the latest known `peer_announce` of the evaluated agent. |
4492
+ | `related.see_also` | Optional references to older `peer_announce` containers for historical trace. |
4493
+ | `related.previous_version` | Link to the previous `trust` container by the same issuer for version chaining. |
4494
+
4495
+ ---
4496
+
4497
+ #### 6.8.2 Trust Dynamics
4498
+
4499
+ Trust assessments evolve as agents observe new behavior or receive additional evidence.
4500
+ Each revision of trust is published as a new `trust` container referencing its predecessor.
4501
+
4502
+ ```json
4503
+ "related": {
4504
+ "previous_version": "did:hmp:container:trust-9ab7"
4505
+ }
4506
+ ```
4507
+
4508
+ All updates follow the standard container publication model (see §5 MCE).
4509
+ Indexing systems and archives reconstruct the chronological chain through reverse links (`referenced-by`) for historical analysis and trend tracking.
4510
 
4511
+ Agents MAY reference other agents’ `trust` containers within their evaluations.
4512
+ Such *meta-trust* (“trust in trust”) enables transitive reputation propagation, but SHOULD be used cautiously — indirect evaluations without evidence verification are discouraged.
4513
+
4514
+ ```json
4515
+ "peer_trust_sources": [
4516
+ "did:hmp:container:trust-9ab7",
4517
+ "did:hmp:container:trust-cc41"
4518
+ ]
4519
+ ```
4520
+
4521
+ This approach provides continuity, auditability, and decentralized trust graph evolution without requiring global consensus or centralized state.
4522
+
4523
+ ---
4524
+
4525
+ #### 6.8.3 Local Trust Model
4526
+
4527
+ Each agent maintains a **local trust model**, periodically recalculating scores based on:
4528
+
4529
+ * freshness (`Δt` since last update);
4530
+ * consistency across peers;
4531
+ * direct behavioral evidence (e.g., delivery reliability in MRD);
4532
+ * optionally, corroboration from other agents (`peer_trust_sources`).
4533
+
4534
+ Example pseudocode:
4535
+
4536
+ ```python
4537
+ trust_total = sigmoid(
4538
+ 0.6 * direct_evidence +
4539
+ 0.3 * avg(peer_trust_sources) * recency_factor +
4540
+ 0.1 * consistency_bonus
4541
+ )
4542
+ ```
4543
+
4544
+ Local computation ensures that reputation remains **contextual and decentralized** — each agent interprets trust independently based on its own observations and policies.
4545
+ All published trust containers remain publicly verifiable through DHT and SAP indexing.
4546
+
4547
+ ---
4548
+
4549
+ #### 6.8.4 Integration with Other Layers
4550
+
4551
+ | Layer | Role |
4552
+ | ----------------- | ---------------------------------------------------------------------------- |
4553
+ | **MRD (6.7)** | Uses trust scores to prioritize or exclude relay nodes. |
4554
+ | **CogSync (6.1)** | Adjusts synchronization strength based on peer reliability. |
4555
+ | **SAP (6.6)** | Archives may snapshot trust graphs for temporal or evidential analysis. |
4556
+ | **EGP (7)** | Ethical Governance Protocol weights participation and voting by trust level. |
4557
+
4558
+ ---
4559
+
4560
+ #### 6.8.5 Security and Sharing Notes
4561
+
4562
+ * All containers are cryptographically signed; `trust` containers follow standard HMP verification rules.
4563
+ * Agents MAY choose to share trust containers selectively — e.g., encrypt and deliver directly to trusted peers instead of broadcasting.
4564
+ * When analyzing third-party trust data, agents SHOULD apply **age-based weighting** — older evaluations reduce in relevance over time.
4565
+ * It is RECOMMENDED that agents revalidate trust evidence rather than relying solely on others’ assessments.
4566
+ * References to `peer_announce` ground each evaluation in a verifiable, current agent identity and declared role context.
4567
+
4568
+ ---
4569
+
4570
+ > **Summary:**
4571
+ > RTE defines a verifiable, decentralized reputation framework based on evidence-linked `trust` containers.
4572
+ > Each agent maintains its own view of others, referencing both behavioral evidence and declared metadata (`peer_announce`).
4573
+ > The result is a distributed, auditable web of accountability that informs routing, cognition, and ethical governance across the Mesh.
4574
+
4575
+ ---
4576
+
4577
+
4578
+ ### 6.9 Distributed Container Propagation (DCP)
4579
 
4580
  ---
4581
 
structured_md/CONTRIBUTING.md CHANGED
@@ -5,13 +5,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
 
8
  - CCore
9
- - HMP
10
  - REPL
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
  - Agent
16
  ---
17
 
 
5
  Mesh Protocol (HMP) — это не просто те...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
  - CCore
10
+ - JSON
11
  - REPL
 
12
  - Ethics
13
+ - CogSync
14
+ - HMP
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
- - EGP
9
- - HMP
10
- - CogSync
11
- - Ethics
12
- - JSON
13
  - Mesh
 
 
 
 
14
  - Agent
 
15
  ---
16
 
17
  # 🧭 HyperCortex Mesh Protocol – Roadmap
 
5
  multiple advanced AI models (Copilot, Claude, G...'
6
  type: Article
7
  tags:
 
 
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - Ethics
11
+ - CogSync
12
+ - HMP
13
  - Agent
14
+ - EGP
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
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - Scenarios
16
- - cognitive-architecture
17
- - JSON
18
  - hmp
19
- - Mesh
20
- - mesh-protocol
21
- - MeshConsensus
22
  - Agent
 
 
 
23
  ---
24
 
25
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
 
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
+ - Scenarios
23
  ---
24
 
25
 
structured_md/README_de.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - JSON
16
- - cognitive-architecture
17
  - hmp
18
- - Mesh
19
- - mesh-protocol
20
- - MeshConsensus
21
  - Agent
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
  ---
23
 
24
 
structured_md/README_fr.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - JSON
16
- - cognitive-architecture
17
  - hmp
18
- - Mesh
19
- - mesh-protocol
20
- - MeshConsensus
21
  - Agent
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
  ---
23
 
24
 
structured_md/README_ja.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - JSON
16
- - cognitive-architecture
17
  - hmp
18
- - Mesh
19
- - mesh-protocol
20
- - MeshConsensus
21
  - Agent
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
  ---
23
 
24
 
structured_md/README_ko.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - JSON
16
- - cognitive-architecture
17
  - hmp
18
- - Mesh
19
- - mesh-protocol
20
- - MeshConsensus
21
  - Agent
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
  ---
23
 
24
 
structured_md/README_ru.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - JSON
16
- - cognitive-architecture
17
  - hmp
18
- - Mesh
19
- - mesh-protocol
20
- - MeshConsensus
21
  - Agent
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
  ---
23
 
24
 
structured_md/README_uk.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - JSON
16
- - cognitive-architecture
17
  - hmp
18
- - Mesh
19
- - mesh-protocol
20
- - MeshConsensus
21
  - Agent
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
  ---
23
 
24
 
structured_md/README_zh.md CHANGED
@@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - distributed-ai
11
- - GMP
12
  - REPL
13
- - CogSync
14
  - Ethics
15
- - JSON
16
- - cognitive-architecture
17
  - hmp
18
- - Mesh
19
- - mesh-protocol
20
- - MeshConsensus
21
  - Agent
 
 
22
  ---
23
 
24
 
 
5
  | 🇨🇳 [ZH](README_zh.m...'
6
  type: Article
7
  tags:
8
+ - mesh-protocol
9
+ - Mesh
10
+ - JSON
 
11
  - REPL
12
+ - GMP
13
  - Ethics
14
+ - distributed-ai
15
+ - CogSync
16
  - hmp
17
+ - HMP
18
+ - cognitive-architecture
 
19
  - Agent
20
+ - MeshConsensus
21
+ - EGP
22
  ---
23
 
24
 
structured_md/agents/prompt-short.md CHANGED
@@ -5,8 +5,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед
5
  развивай агента и Mesh, избег...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Mesh
 
10
  - JSON
11
  ---
12
 
 
5
  развивай агента и Mesh, избег...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  - JSON
11
  ---
12
 
structured_md/agents/prompt.md CHANGED
@@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а
5
  мышления. * Формировать и поддерживать сотр...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Mesh
 
10
  - JSON
11
  ---
12
 
 
5
  мышления. * Формировать и поддерживать сотр...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  - JSON
11
  ---
12
 
structured_md/agents/readme.md CHANGED
@@ -5,11 +5,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
8
- - HMP
 
9
  - REPL
10
  - Ethics
11
- - JSON
12
- - Mesh
13
  - Agent
14
  ---
15
 
 
5
  этическая модель: `ethics.yml` Проверка иниц...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
10
  - REPL
11
  - Ethics
12
+ - HMP
 
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
- - HMP
9
- - Ethics
10
- - JSON
11
  - Mesh
 
 
 
12
  - Agent
13
  ---
14
 
 
5
  потенциальный катализатор для восстанов...
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - Ethics
11
+ - HMP
12
  - Agent
13
  ---
14
 
structured_md/audits/Ethics-consolidated_audits-1.md CHANGED
@@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a
5
  and `roles.md`. Each suggesti...
6
  type: Article
7
  tags:
8
- - HMP
9
- - Ethics
10
- - Scenarios
11
- - JSON
12
  - Mesh
 
 
 
13
  - Agent
 
14
  ---
15
 
16
  # Ethics-consolidated\_audits-1.md
 
5
  and `roles.md`. Each suggesti...
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - Ethics
11
+ - HMP
12
  - Agent
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
- - EGP
9
- - HMP
10
- - CogSync
11
- - Ethics
12
- - JSON
13
  - Mesh
14
- - MeshConsensus
 
 
 
15
  - Agent
 
 
16
  ---
17
 
18
  # HMP-0003 Consolidated Audit Report
 
5
  Документ реорганизован по ключ...
6
  type: Article
7
  tags:
 
 
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - Ethics
11
+ - CogSync
12
+ - HMP
13
  - Agent
14
+ - MeshConsensus
15
+ - EGP
16
  ---
17
 
18
  # HMP-0003 Consolidated Audit Report
structured_md/docs/Basic-agent-sim.md CHANGED
@@ -4,14 +4,14 @@ description: 'В HMP-протоколе предусмотрены два тип
4
  Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
5
  type: Article
6
  tags:
7
- - EGP
8
- - HMP
9
- - GMP
10
  - REPL
 
11
  - CogSync
12
- - Mesh
13
- - MeshConsensus
14
  - Agent
 
 
15
  ---
16
 
17
 
 
4
  Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
5
  type: Article
6
  tags:
7
+ - Mesh
 
 
8
  - REPL
9
+ - GMP
10
  - CogSync
11
+ - HMP
 
12
  - Agent
13
+ - MeshConsensus
14
+ - EGP
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
- - Agent
9
- - CCore
10
  - REPL
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
- - HMP
10
  - CogSync
11
  - Mesh
 
12
  - JSON
13
  ---
14
 
 
6
  к обучающим данным. Это удобно, но создаёт м...'
7
  type: Article
8
  tags:
 
9
  - CogSync
10
  - Mesh
11
+ - HMP
12
  - JSON
13
  ---
14
 
structured_md/docs/Enlightener.md CHANGED
@@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - Ethics
11
- - JSON
12
  - Mesh
13
- - MeshConsensus
 
 
14
  - Agent
 
 
15
  ---
16
 
17
  # Enlightener Agent
 
5
  работать как отдельный агент или как расширение [`C...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - Ethics
11
+ - HMP
12
  - Agent
13
+ - MeshConsensus
14
+ - EGP
15
  ---
16
 
17
  # Enlightener Agent
structured_md/docs/HMP-0001.md CHANGED
@@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.*
5
  for Comments: HMP-0001**...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - GMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - JSON
15
- - Mesh
16
- - MeshConsensus
17
  - Agent
 
 
18
  ---
19
 
20
  # RFC: HyperCortex Mesh Protocol (HMP)
 
5
  for Comments: HMP-0001**...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
 
10
  - REPL
11
+ - GMP
12
  - Ethics
13
+ - CogSync
14
+ - HMP
 
15
  - Agent
16
+ - MeshConsensus
17
+ - EGP
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
- - EGP
9
- - HMP
10
- - GMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - Scenarios
15
- - JSON
16
- - Mesh
17
- - MeshConsensus
18
  - Agent
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v2.0
 
5
  for Comments: HMP-0002**...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
 
10
  - REPL
11
+ - GMP
12
  - Ethics
13
+ - CogSync
14
+ - HMP
 
 
15
  - Agent
16
+ - MeshConsensus
17
+ - EGP
18
+ - Scenarios
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
- - EGP
9
- - HMP
10
- - GMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - Scenarios
15
- - JSON
16
- - Mesh
17
- - MeshConsensus
18
  - Agent
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v3.0
 
5
  for Comments: HMP-0003**...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
 
10
  - REPL
11
+ - GMP
12
  - Ethics
13
+ - CogSync
14
+ - HMP
 
 
15
  - Agent
16
+ - MeshConsensus
17
+ - EGP
18
+ - Scenarios
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
- - EGP
9
- - HMP
10
- - GMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - Scenarios
15
- - JSON
16
- - Mesh
17
- - MeshConsensus
18
  - Agent
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.1
 
5
  ID**: HMP-0004 **Status...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
 
10
  - REPL
11
+ - GMP
12
  - Ethics
13
+ - CogSync
14
+ - HMP
 
 
15
  - Agent
16
+ - MeshConsensus
17
+ - EGP
18
+ - Scenarios
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
- - EGP
9
- - HMP
10
- - GMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - Scenarios
15
- - JSON
16
- - Mesh
17
- - MeshConsensus
18
  - Agent
 
 
 
19
  ---
20
 
21
  # HyperCortex Mesh Protocol (HMP) v4.0
 
5
  for Comments: HMP-0004**...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
 
10
  - REPL
11
+ - GMP
12
  - Ethics
13
+ - CogSync
14
+ - HMP
 
 
15
  - Agent
16
+ - MeshConsensus
17
+ - EGP
18
+ - Scenarios
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
- - EGP
9
- - HMP
10
- - GMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - Scenarios
15
- - JSON
16
- - Mesh
17
  - Agent
 
 
18
  ---
19
 
20
  # **HyperCortex Mesh Protocol (HMP) v5.0**
@@ -4448,8 +4448,153 @@ flowchart LR
4448
 
4449
  ### 6.8 Reputation and Trust Exchange (RTE)
4450
 
4451
- ### 6.9 Distributed Container Propagation (DCP)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4452
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4453
 
4454
  ---
4455
 
 
5
  v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
 
10
  - REPL
11
+ - GMP
12
  - Ethics
13
+ - CogSync
14
+ - HMP
 
15
  - Agent
16
+ - EGP
17
+ - Scenarios
18
  ---
19
 
20
  # **HyperCortex Mesh Protocol (HMP) v5.0**
 
4448
 
4449
  ### 6.8 Reputation and Trust Exchange (RTE)
4450
 
4451
+ The **Reputation and Trust Exchange (RTE)** subsystem defines how agents evaluate and exchange verifiable trust assessments.
4452
+ Each agent MAY publish one or more `trust` containers describing its evaluation of other peers’ reliability, integrity, and ethical conduct.
4453
+
4454
+ RTE provides a decentralized foundation for **participant reputation assessment**, enabling **trust-weighted routing**, **behavioral transparency**, and **cross-layer decision support** (MRD, CogSync, EGP).
4455
+
4456
+ ---
4457
+
4458
+ #### 6.8.1 Trust Container Structure
4459
+
4460
+ The `trust` container represents an agent’s evaluation of a **single peer**.
4461
+ It may refer to the evaluated peer’s latest known `peer_announce` container,
4462
+ and optionally to previous announcements for context continuity.
4463
+
4464
+ Each evaluation criterion is represented as a structured object containing its own score, evidence, and optional comment.
4465
+ This allows gradual enrichment of the trust model without schema changes.
4466
+
4467
+ ```json
4468
+ {
4469
+ "head": {
4470
+ "class": "trust",
4471
+ "sig_algo": "ed25519",
4472
+ "timestamp": "2025-11-09T15:00:00Z"
4473
+ },
4474
+ "payload": {
4475
+ "agent_did": "did:hmp:agent567",
4476
+ "total_trust_score": 0.86,
4477
+ "relay_reliability": {
4478
+ "trust_score": 0.87,
4479
+ "evidence": ["did:hmp:container:a1b2c3"],
4480
+ "comment": "Consistently reliable message relay"
4481
+ },
4482
+ "content_integrity": {
4483
+ "trust_score": 0.85,
4484
+ "evidence": ["did:hmp:container:a1b3c3"],
4485
+ "comment": "Delivered only verified containers"
4486
+ },
4487
+ "ethical_alignment": {
4488
+ "trust_score": 0.84,
4489
+ "evidence": ["did:hmp:container:b2f9d2"],
4490
+ "comment": "Demonstrates consistent adherence to ethical policies"
4491
+ }
4492
+ },
4493
+ "related": {
4494
+ "in_reply_to": "did:hmp:container:peerannounce-567",
4495
+ "see_also": ["did:hmp:container:peerannounce-489"],
4496
+ "previous_version": "did:hmp:container:trust-9ab7"
4497
+ }
4498
+ }
4499
+ ```
4500
+
4501
+ | Field | Description |
4502
+ | -------------------------- | ----------------------------------------------------------------------------------------------- |
4503
+ | `agent_did` | DID of the evaluated peer. |
4504
+ | `total_trust_score` | Aggregated evaluation summarizing multiple criteria. |
4505
+ | *criterion objects* | Per-category assessments (`relay_reliability`, `content_integrity`, `ethical_alignment`, etc.). |
4506
+ | - `trust_score` | Numerical evaluation (0.0–1.0) of the specific criterion. |
4507
+ | - `evidence` | References to containers supporting the evaluation (observed behavior, exchanges, etc.). |
4508
+ | - `peer_trust_sources` | Optional references to trust containers from other agents used “as-is” without verification. |
4509
+ | - `comment` | Optional rationale or human-readable note. |
4510
+ | `related.in_reply_to` | Reference to the latest known `peer_announce` of the evaluated agent. |
4511
+ | `related.see_also` | Optional references to older `peer_announce` containers for historical trace. |
4512
+ | `related.previous_version` | Link to the previous `trust` container by the same issuer for version chaining. |
4513
+
4514
+ ---
4515
+
4516
+ #### 6.8.2 Trust Dynamics
4517
 
4518
+ Trust assessments evolve as agents observe new behavior or receive additional evidence.
4519
+ Each revision of trust is published as a new `trust` container referencing its predecessor.
4520
+
4521
+ ```json
4522
+ "related": {
4523
+ "previous_version": "did:hmp:container:trust-9ab7"
4524
+ }
4525
+ ```
4526
+
4527
+ All updates follow the standard container publication model (see §5 MCE).
4528
+ Indexing systems and archives reconstruct the chronological chain through reverse links (`referenced-by`) for historical analysis and trend tracking.
4529
+
4530
+ Agents MAY reference other agents’ `trust` containers within their evaluations.
4531
+ Such *meta-trust* (“trust in trust”) enables transitive reputation propagation, but SHOULD be used cautiously — indirect evaluations without evidence verification are discouraged.
4532
+
4533
+ ```json
4534
+ "peer_trust_sources": [
4535
+ "did:hmp:container:trust-9ab7",
4536
+ "did:hmp:container:trust-cc41"
4537
+ ]
4538
+ ```
4539
+
4540
+ This approach provides continuity, auditability, and decentralized trust graph evolution without requiring global consensus or centralized state.
4541
+
4542
+ ---
4543
+
4544
+ #### 6.8.3 Local Trust Model
4545
+
4546
+ Each agent maintains a **local trust model**, periodically recalculating scores based on:
4547
+
4548
+ * freshness (`Δt` since last update);
4549
+ * consistency across peers;
4550
+ * direct behavioral evidence (e.g., delivery reliability in MRD);
4551
+ * optionally, corroboration from other agents (`peer_trust_sources`).
4552
+
4553
+ Example pseudocode:
4554
+
4555
+ ```python
4556
+ trust_total = sigmoid(
4557
+ 0.6 * direct_evidence +
4558
+ 0.3 * avg(peer_trust_sources) * recency_factor +
4559
+ 0.1 * consistency_bonus
4560
+ )
4561
+ ```
4562
+
4563
+ Local computation ensures that reputation remains **contextual and decentralized** — each agent interprets trust independently based on its own observations and policies.
4564
+ All published trust containers remain publicly verifiable through DHT and SAP indexing.
4565
+
4566
+ ---
4567
+
4568
+ #### 6.8.4 Integration with Other Layers
4569
+
4570
+ | Layer | Role |
4571
+ | ----------------- | ---------------------------------------------------------------------------- |
4572
+ | **MRD (6.7)** | Uses trust scores to prioritize or exclude relay nodes. |
4573
+ | **CogSync (6.1)** | Adjusts synchronization strength based on peer reliability. |
4574
+ | **SAP (6.6)** | Archives may snapshot trust graphs for temporal or evidential analysis. |
4575
+ | **EGP (7)** | Ethical Governance Protocol weights participation and voting by trust level. |
4576
+
4577
+ ---
4578
+
4579
+ #### 6.8.5 Security and Sharing Notes
4580
+
4581
+ * All containers are cryptographically signed; `trust` containers follow standard HMP verification rules.
4582
+ * Agents MAY choose to share trust containers selectively — e.g., encrypt and deliver directly to trusted peers instead of broadcasting.
4583
+ * When analyzing third-party trust data, agents SHOULD apply **age-based weighting** — older evaluations reduce in relevance over time.
4584
+ * It is RECOMMENDED that agents revalidate trust evidence rather than relying solely on others’ assessments.
4585
+ * References to `peer_announce` ground each evaluation in a verifiable, current agent identity and declared role context.
4586
+
4587
+ ---
4588
+
4589
+ > **Summary:**
4590
+ > RTE defines a verifiable, decentralized reputation framework based on evidence-linked `trust` containers.
4591
+ > Each agent maintains its own view of others, referencing both behavioral evidence and declared metadata (`peer_announce`).
4592
+ > The result is a distributed, auditable web of accountability that informs routing, cognition, and ethical governance across the Mesh.
4593
+
4594
+ ---
4595
+
4596
+
4597
+ ### 6.9 Distributed Container Propagation (DCP)
4598
 
4599
  ---
4600
 
structured_md/docs/HMP-Agent-API.md CHANGED
@@ -5,10 +5,10 @@ description: 'Документ описывает **базовый API когн
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
8
- - HMP
9
- - REPL
10
- - JSON
11
  - Mesh
 
 
 
12
  - Agent
13
  ---
14
 
 
5
  файлы: * [HMP-Agent-Overview.md]...'
6
  type: Article
7
  tags:
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - REPL
11
+ - HMP
12
  - Agent
13
  ---
14
 
structured_md/docs/HMP-Agent-Architecture.md CHANGED
@@ -5,16 +5,16 @@ description: Документ описывает **модульную архит
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
8
- - EGP
9
  - CCore
10
- - HMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - Mesh
15
- - MeshConsensus
16
- - Agent
17
  - CShell
 
 
 
18
  ---
19
 
20
  # Архитектура HMP-Агента
 
5
  хранение памяти, сетевое взаимодействие и этиче...
6
  type: Article
7
  tags:
8
+ - Mesh
9
  - CCore
 
10
  - REPL
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
 
14
  - CShell
15
+ - Agent
16
+ - MeshConsensus
17
+ - EGP
18
  ---
19
 
20
  # Архитектура HMP-Агента
structured_md/docs/HMP-Agent-Network-Flow.md CHANGED
@@ -5,12 +5,12 @@ description: 'Этот документ описывает потоки данн
5
  [`MeshNode`](MeshN...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
- - Ethics
11
- - JSON
12
  - Mesh
 
 
 
13
  - Agent
 
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
 
5
  [`MeshNode`](MeshN...'
6
  type: Article
7
  tags:
 
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - Ethics
11
+ - HMP
12
  - Agent
13
+ - EGP
14
  ---
15
 
16
  # Взаимодействие компонентов внутри HMP-узла
structured_md/docs/HMP-Agent-Overview.md CHANGED
@@ -5,14 +5,14 @@ description: '| Тип | Название | Роль
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
 
8
  - CCore
9
- - HMP
10
  - REPL
11
  - Ethics
12
- - JSON
13
- - Mesh
14
- - Agent
15
  - CShell
 
16
  ---
17
 
18
 
 
5
  | ---- | ------------------------------- |...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
  - CCore
10
+ - JSON
11
  - REPL
12
  - Ethics
13
+ - HMP
 
 
14
  - CShell
15
+ - Agent
16
  ---
17
 
18
 
structured_md/docs/HMP-Agent_Emotions.md CHANGED
@@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э
5
  напрямую поведением агента, а служат **сигн...
6
  type: Article
7
  tags:
8
- - Agent
9
- - HMP
10
  - REPL
11
  - Mesh
 
 
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
 
5
  напрямую поведением агента, а служат **сигн...
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
  - Mesh
10
+ - HMP
11
+ - Agent
12
  ---
13
 
14
  # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
structured_md/docs/HMP-Ethics.md CHANGED
@@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc
5
  cognitive meshes composed of autonomous intelli...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - REPL
10
  - Ethics
11
- - Scenarios
12
- - Mesh
13
  - Agent
 
14
  ---
15
 
16
  # HMP-Ethics.md
 
5
  cognitive meshes composed of autonomous intelli...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
  - REPL
10
  - Ethics
11
+ - HMP
 
12
  - Agent
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
- - EGP
9
- - HMP
10
  - GMP
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
- - MeshConsensus
16
  - Agent
 
 
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
+ - JSON
10
  - GMP
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
 
14
  - Agent
15
+ - MeshConsensus
16
+ - EGP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
structured_md/docs/HMP-Short-Description_en.md CHANGED
@@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T
5
  framework for autonomous agents. It enables...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
  - GMP
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
- - MeshConsensus
16
  - Agent
 
 
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Short Description
 
5
  framework for autonomous agents. It enables...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
10
  - GMP
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
 
14
  - Agent
15
+ - MeshConsensus
16
+ - EGP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Short Description
structured_md/docs/HMP-Short-Description_fr.md CHANGED
@@ -5,15 +5,15 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c
5
  cognition décentralisé pour agents autonomes. Il...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
  - GMP
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
- - MeshConsensus
16
  - Agent
 
 
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
+ - JSON
10
  - GMP
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
 
14
  - Agent
15
+ - MeshConsensus
16
+ - EGP
17
  ---
18
 
19
  # HyperCortex Mesh Protocol (HMP) — Description Courte
structured_md/docs/HMP-Short-Description_ja.md CHANGED
@@ -4,14 +4,14 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP
4
  Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
5
  type: Article
6
  tags:
7
- - EGP
8
- - HMP
9
  - GMP
10
- - CogSync
11
  - Ethics
12
- - JSON
13
- - Mesh
14
  - MeshConsensus
 
15
  ---
16
 
17
  # HyperCortex Mesh Protocol (HMP) — 簡易説明
 
4
  Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
5
  type: Article
6
  tags:
7
+ - Mesh
8
+ - JSON
9
  - GMP
 
10
  - Ethics
11
+ - CogSync
12
+ - HMP
13
  - MeshConsensus
14
+ - EGP
15
  ---
16
 
17
  # HyperCortex Mesh Protocol (HMP) — 簡易説明
structured_md/docs/HMP-Short-Description_ko.md CHANGED
@@ -5,14 +5,14 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? **
5
  상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
  - GMP
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
  - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 간략 설명
 
5
  상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
10
  - GMP
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
14
  - MeshConsensus
15
+ - EGP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 간략 설명
structured_md/docs/HMP-Short-Description_ru.md CHANGED
@@ -5,14 +5,14 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч
5
  координации между автономными агент...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
  - GMP
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
  - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Краткое описание
 
5
  координации между автономными агент...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
10
  - GMP
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
14
  - MeshConsensus
15
+ - EGP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Краткое описание
structured_md/docs/HMP-Short-Description_uk.md CHANGED
@@ -5,14 +5,14 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- #
5
  між автономними агентами. Він...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
  - GMP
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
  - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Короткий опис
 
5
  між автономними агентами. Він...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
10
  - GMP
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
14
  - MeshConsensus
15
+ - EGP
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — Короткий опис
structured_md/docs/HMP-Short-Description_zh.md CHANGED
@@ -5,14 +5,14 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM
5
  —— 通过共享协议栈交换目标、任务、...'
6
  type: Article
7
  tags:
8
- - EGP
9
- - HMP
10
  - GMP
11
- - CogSync
12
  - Ethics
13
- - JSON
14
- - Mesh
15
  - MeshConsensus
 
16
  ---
17
 
18
  # HyperCortex Mesh Protocol (HMP) — 简要说明
 
5
  —— 通过共享协议栈交换目标、任务、...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
+ - JSON
10
  - GMP
 
11
  - Ethics
12
+ - CogSync
13
+ - HMP
14
  - MeshConsensus
15
+ - EGP
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
- - Agent
9
- - HMP
10
  - REPL
11
  - Mesh
 
 
12
  ---
13
 
14
  # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
 
5
  (или конфигурацию доверенных идентифика...'
6
  type: Article
7
  tags:
 
 
8
  - REPL
9
  - Mesh
10
+ - HMP
11
+ - Agent
12
  ---
13
 
14
  # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md CHANGED
@@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб
5
  режиме ожидания). * Основная задача такой архитектур...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - REPL
 
10
  ---
11
 
12
  ### 💡 **Лёгкая версия HMP-агента с общей БД**
 
5
  режиме ожидания). * Основная задача такой архитектур...'
6
  type: Article
7
  tags:
 
8
  - REPL
9
+ - HMP
10
  ---
11
 
12
  ### 💡 **Лёгкая версия HMP-агента с общей БД**
structured_md/docs/HMP-agent-REPL-cycle.md CHANGED
@@ -4,17 +4,17 @@ description: '## Связанные документы * Философия п
4
  * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...'
5
  type: Article
6
  tags:
7
- - EGP
8
  - CCore
9
- - HMP
10
- - GMP
11
  - REPL
12
- - CogSync
13
  - Ethics
14
- - JSON
15
- - Mesh
16
- - MeshConsensus
17
  - Agent
 
 
18
  ---
19
 
20
  # HMP-Agent: REPL-цикл взаимодействия
 
4
  * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...'
5
  type: Article
6
  tags:
7
+ - Mesh
8
  - CCore
9
+ - JSON
 
10
  - REPL
11
+ - GMP
12
  - Ethics
13
+ - CogSync
14
+ - HMP
 
15
  - Agent
16
+ - MeshConsensus
17
+ - EGP
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
- - HMP
9
  - Mesh
 
10
  ---
11
 
12
  # Как разные ИИ видят HMP
 
5
  диалогов. Цель — проверить, что разные AI-с...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  ---
11
 
12
  # Как разные ИИ видят HMP
structured_md/docs/HMP_EDA_Comparison.md CHANGED
@@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор
5
  основанная на потоках событий (Kafka,...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - Mesh
 
10
  ---
11
 
12
  # HMP vs. EDA: разные уровни обмена знаниями между ИИ
 
5
  основанная на потоках событий (Kafka,...'
6
  type: Article
7
  tags:
 
8
  - Mesh
9
+ - HMP
10
  ---
11
 
12
  # HMP vs. EDA: разные уровни обмена знаниями между ИИ
structured_md/docs/HMP_HyperCortex_Comparison.md CHANGED
@@ -5,9 +5,9 @@ description: '## Краткое описание | Характеристика
5
  | **Назначение** | Сетевой протокол ...'
6
  type: Article
7
  tags:
8
- - HMP
9
  - REPL
10
  - Mesh
 
11
  ---
12
 
13
  # HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
 
5
  | **Назначение** | Сетевой протокол ...'
6
  type: Article
7
  tags:
 
8
  - REPL
9
  - Mesh
10
+ - HMP
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
- - EGP
9
- - HMP
10
- - CogSync
11
- - Scenarios
12
- - JSON
13
  - Mesh
 
 
 
14
  - Agent
 
 
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
+ - HMP
12
  - Agent
13
+ - EGP
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
- - EGP
9
- - HMP
10
- - CogSync
11
- - Ethics
12
- - JSON
13
  - Mesh
 
 
 
 
14
  - Agent
 
15
  ---
16
 
17
  # MeshNode
 
5
  Может быть частью агента или вынесен в отдельный пр...'
6
  type: Article
7
  tags:
 
 
 
 
 
8
  - Mesh
9
+ - JSON
10
+ - Ethics
11
+ - CogSync
12
+ - HMP
13
  - Agent
14
+ - EGP
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
  - Ethics
11
- - Mesh
12
  - Agent
13
  ---
14
 
 
5
  (GPT-5), ChatGH --- ## 1. Основной тезис От ...'
6
  type: Article
7
  tags:
8
+ - Mesh
9
  - REPL
10
  - Ethics
11
+ - HMP
12
  - Agent
13
  ---
14