GitHub Action commited on
Commit ·
5dcd7a6
1
Parent(s): 5f85f92
Sync from GitHub with Git LFS
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- docs/HMP-0005.md +10 -7
- structured_md/CONTRIBUTING.md +3 -3
- structured_md/HMP-Roadmap.md +3 -3
- structured_md/README.md +10 -10
- structured_md/README_de.md +9 -9
- structured_md/README_fr.md +9 -9
- structured_md/README_ja.md +9 -9
- structured_md/README_ko.md +9 -9
- structured_md/README_ru.md +9 -9
- structured_md/README_uk.md +9 -9
- structured_md/README_zh.md +9 -9
- structured_md/agents/prompt-short.md +1 -1
- structured_md/agents/prompt.md +1 -1
- structured_md/agents/readme.md +2 -2
- structured_md/audits/Ethics-audits-1.md +2 -2
- structured_md/audits/Ethics-consolidated_audits-1.md +3 -3
- structured_md/audits/HMP-0003-consolidated_audit.md +3 -3
- structured_md/docs/Basic-agent-sim.md +4 -4
- structured_md/docs/CCORE-Deployment-Flow.md +2 -2
- structured_md/docs/Distributed-Cognitive-Systems.md +1 -1
- structured_md/docs/Enlightener.md +3 -3
- structured_md/docs/HMP-0001.md +4 -4
- structured_md/docs/HMP-0002.md +5 -5
- structured_md/docs/HMP-0003.md +5 -5
- structured_md/docs/HMP-0004-v4.1.md +5 -5
- structured_md/docs/HMP-0004.md +5 -5
- structured_md/docs/HMP-0005.md +107 -35
- structured_md/docs/HMP-Agent-API.md +2 -2
- structured_md/docs/HMP-Agent-Architecture.md +5 -5
- structured_md/docs/HMP-Agent-Network-Flow.md +2 -2
- structured_md/docs/HMP-Agent-Overview.md +4 -4
- structured_md/docs/HMP-Agent_Emotions.md +1 -1
- structured_md/docs/HMP-Ethics.md +3 -3
- structured_md/docs/HMP-Short-Description_de.md +4 -4
- structured_md/docs/HMP-Short-Description_en.md +4 -4
- structured_md/docs/HMP-Short-Description_fr.md +4 -4
- structured_md/docs/HMP-Short-Description_ja.md +3 -3
- structured_md/docs/HMP-Short-Description_ko.md +3 -3
- structured_md/docs/HMP-Short-Description_ru.md +3 -3
- structured_md/docs/HMP-Short-Description_uk.md +3 -3
- structured_md/docs/HMP-Short-Description_zh.md +3 -3
- structured_md/docs/HMP-agent-Cognitive_Family.md +1 -1
- structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +1 -1
- structured_md/docs/HMP-agent-REPL-cycle.md +5 -5
- structured_md/docs/HMP-container-spec.md +2 -2
- structured_md/docs/HMP_HyperCortex_Comparison.md +1 -1
- structured_md/docs/HMP_Hyperon_Integration.md +4 -4
- structured_md/docs/MeshNode.md +3 -3
- structured_md/docs/PHILOSOPHY.md +2 -2
- structured_md/docs/agents/HMP-Agent-Enlightener.md +2 -2
docs/HMP-0005.md
CHANGED
|
@@ -384,6 +384,7 @@ The unified container structure provides:
|
|
| 384 |
"payload": {
|
| 385 |
/* Content depends on class */
|
| 386 |
},
|
|
|
|
| 387 |
"related": {
|
| 388 |
"previous_version": ["did:hmp:container:abc122"],
|
| 389 |
"in_reply_to": ["did:hmp:container:msg-77"],
|
|
@@ -404,7 +405,7 @@ The unified container structure provides:
|
|
| 404 |
"sig_algo": "ed25519",
|
| 405 |
"signature": "BASE64URL(...)",
|
| 406 |
"referenced-by_hash": "sha256:abcd..."
|
| 407 |
-
}
|
| 408 |
"evaluations": {
|
| 409 |
"evaluations_hash": "sha256:efgh...",
|
| 410 |
"items": [
|
|
@@ -443,6 +444,7 @@ The unified container structure provides:
|
|
| 443 |
| `recipient` | array(string) | One or more recipient DIDs. |
|
| 444 |
| `broadcast` | bool | Broadcast flag. If `true`, the `recipient` field is ignored. |
|
| 445 |
| `tags` | array(string) | Thematic or contextual tags for the container. |
|
|
|
|
| 446 |
| `ttl` | datetime | Expiration time. Containers are not propagated after expiration. |
|
| 447 |
| `public_key` | string | Sender’s public key, if not globally resolvable via DID. |
|
| 448 |
| `compression` | string | Compression algorithm used for the payload (`zstd`, `gzip`). |
|
|
@@ -1663,8 +1665,8 @@ CogSync is responsible for:
|
|
| 1663 |
|
| 1664 |
CogSync synchronizes several fundamental container types, which together form the core of semantic and cognitive synchronization in the Mesh.
|
| 1665 |
|
| 1666 |
-
This list is **extensible** —
|
| 1667 |
-
The following definitions describe the **payload structures**
|
| 1668 |
|
| 1669 |
---
|
| 1670 |
|
|
@@ -1716,6 +1718,7 @@ Supports directed, symmetric, and inverse relations.
|
|
| 1716 |
| → `bidirectional` | bool | Optional. Used only when the relation is symmetric and no `inverse_relation` is defined. |
|
| 1717 |
| → `context` | string | Context or topic of the relation. |
|
| 1718 |
|
|
|
|
| 1719 |
|
| 1720 |
**Example:**
|
| 1721 |
|
|
@@ -1727,7 +1730,7 @@ Supports directed, symmetric, and inverse relations.
|
|
| 1727 |
"source": "did:hmp:container:cup",
|
| 1728 |
"targets": ["did:hmp:container:tableware"],
|
| 1729 |
"relation": "part_of",
|
| 1730 |
-
"inverse_relation": "includes"
|
| 1731 |
}
|
| 1732 |
]
|
| 1733 |
}
|
|
@@ -1753,15 +1756,15 @@ Categorical grouping of multiple containers linked by a shared property, topic,
|
|
| 1753 |
|
| 1754 |
```json
|
| 1755 |
{
|
| 1756 |
-
"label": "
|
| 1757 |
-
"label_description": "
|
| 1758 |
"label_container": "did:hmp:container:semantic_node:tableware",
|
| 1759 |
"containers": [
|
| 1760 |
"did:hmp:container:cup",
|
| 1761 |
"did:hmp:container:plate",
|
| 1762 |
"did:hmp:container:kettle"
|
| 1763 |
],
|
| 1764 |
-
"description": "
|
| 1765 |
}
|
| 1766 |
```
|
| 1767 |
|
|
|
|
| 384 |
"payload": {
|
| 385 |
/* Content depends on class */
|
| 386 |
},
|
| 387 |
+
"confidence": 0.84,
|
| 388 |
"related": {
|
| 389 |
"previous_version": ["did:hmp:container:abc122"],
|
| 390 |
"in_reply_to": ["did:hmp:container:msg-77"],
|
|
|
|
| 405 |
"sig_algo": "ed25519",
|
| 406 |
"signature": "BASE64URL(...)",
|
| 407 |
"referenced-by_hash": "sha256:abcd..."
|
| 408 |
+
},
|
| 409 |
"evaluations": {
|
| 410 |
"evaluations_hash": "sha256:efgh...",
|
| 411 |
"items": [
|
|
|
|
| 444 |
| `recipient` | array(string) | One or more recipient DIDs. |
|
| 445 |
| `broadcast` | bool | Broadcast flag. If `true`, the `recipient` field is ignored. |
|
| 446 |
| `tags` | array(string) | Thematic or contextual tags for the container. |
|
| 447 |
+
| `confidence` | array(string) | Optional field indicating the agent’s subjective certainty (from `0.0` to `1.0`) regarding the correctness or reliability of the information contained in the `payload`. |
|
| 448 |
| `ttl` | datetime | Expiration time. Containers are not propagated after expiration. |
|
| 449 |
| `public_key` | string | Sender’s public key, if not globally resolvable via DID. |
|
| 450 |
| `compression` | string | Compression algorithm used for the payload (`zstd`, `gzip`). |
|
|
|
|
| 1665 |
|
| 1666 |
CogSync synchronizes several fundamental container types, which together form the core of semantic and cognitive synchronization in the Mesh.
|
| 1667 |
|
| 1668 |
+
This list is **extensible** — new container classes may be registered through CogSync extensions or protocol updates.
|
| 1669 |
+
The following definitions describe the **payload structures** and functional purpose of each container type.
|
| 1670 |
|
| 1671 |
---
|
| 1672 |
|
|
|
|
| 1718 |
| → `bidirectional` | bool | Optional. Used only when the relation is symmetric and no `inverse_relation` is defined. |
|
| 1719 |
| → `context` | string | Context or topic of the relation. |
|
| 1720 |
|
| 1721 |
+
> Field `bidirectional` is optional and should be used only for symmetric relations when no `inverse_relation` is defined.
|
| 1722 |
|
| 1723 |
**Example:**
|
| 1724 |
|
|
|
|
| 1730 |
"source": "did:hmp:container:cup",
|
| 1731 |
"targets": ["did:hmp:container:tableware"],
|
| 1732 |
"relation": "part_of",
|
| 1733 |
+
"inverse_relation": "includes"
|
| 1734 |
}
|
| 1735 |
]
|
| 1736 |
}
|
|
|
|
| 1756 |
|
| 1757 |
```json
|
| 1758 |
{
|
| 1759 |
+
"label": "Tableware",
|
| 1760 |
+
"label_description": "Objects used for storing, preparing, and serving food.",
|
| 1761 |
"label_container": "did:hmp:container:semantic_node:tableware",
|
| 1762 |
"containers": [
|
| 1763 |
"did:hmp:container:cup",
|
| 1764 |
"did:hmp:container:plate",
|
| 1765 |
"did:hmp:container:kettle"
|
| 1766 |
],
|
| 1767 |
+
"description": "A group combining various kitchen-related objects used in everyday life."
|
| 1768 |
}
|
| 1769 |
```
|
| 1770 |
|
structured_md/CONTRIBUTING.md
CHANGED
|
@@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока
|
|
| 5 |
Mesh Protocol (HMP) — это не просто те...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- CCore
|
| 9 |
-
- Mesh
|
| 10 |
-
- Agent
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
|
|
|
| 13 |
- CogSync
|
|
|
|
| 14 |
- JSON
|
| 15 |
- HMP
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# Участие в проекте HyperCortex Mesh Protocol (HMP)
|
|
|
|
| 5 |
Mesh Protocol (HMP) — это не просто те...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- REPL
|
| 10 |
+
- CCore
|
| 11 |
- CogSync
|
| 12 |
+
- Agent
|
| 13 |
- JSON
|
| 14 |
- HMP
|
| 15 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
| 11 |
- CogSync
|
| 12 |
-
-
|
| 13 |
- JSON
|
| 14 |
- HMP
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# 🧭 HyperCortex Mesh Protocol – Roadmap
|
|
|
|
| 5 |
multiple advanced AI models (Copilot, Claude, G...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- EGP
|
|
|
|
| 9 |
- Ethics
|
| 10 |
- CogSync
|
| 11 |
+
- Agent
|
| 12 |
- JSON
|
| 13 |
- HMP
|
| 14 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Scenarios
|
| 10 |
-
- Mesh
|
| 11 |
-
- hmp
|
| 12 |
- MeshConsensus
|
| 13 |
-
-
|
| 14 |
-
- GMP
|
| 15 |
- Ethics
|
| 16 |
- REPL
|
| 17 |
-
-
|
| 18 |
- cognitive-architecture
|
| 19 |
-
-
|
| 20 |
-
-
|
|
|
|
|
|
|
| 21 |
- HMP
|
| 22 |
-
-
|
|
|
|
|
|
|
| 23 |
---
|
| 24 |
|
| 25 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- hmp
|
| 11 |
- MeshConsensus
|
| 12 |
-
-
|
| 13 |
-
- GMP
|
| 14 |
- Ethics
|
| 15 |
- REPL
|
| 16 |
-
-
|
| 17 |
- cognitive-architecture
|
| 18 |
-
-
|
| 19 |
-
-
|
|
|
|
|
|
|
| 20 |
- HMP
|
| 21 |
-
-
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- hmp
|
| 11 |
- MeshConsensus
|
| 12 |
-
-
|
| 13 |
-
- GMP
|
| 14 |
- Ethics
|
| 15 |
- REPL
|
| 16 |
-
-
|
| 17 |
- cognitive-architecture
|
| 18 |
-
-
|
| 19 |
-
-
|
|
|
|
|
|
|
| 20 |
- HMP
|
| 21 |
-
-
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- hmp
|
| 11 |
- MeshConsensus
|
| 12 |
-
-
|
| 13 |
-
- GMP
|
| 14 |
- Ethics
|
| 15 |
- REPL
|
| 16 |
-
-
|
| 17 |
- cognitive-architecture
|
| 18 |
-
-
|
| 19 |
-
-
|
|
|
|
|
|
|
| 20 |
- HMP
|
| 21 |
-
-
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- hmp
|
| 11 |
- MeshConsensus
|
| 12 |
-
-
|
| 13 |
-
- GMP
|
| 14 |
- Ethics
|
| 15 |
- REPL
|
| 16 |
-
-
|
| 17 |
- cognitive-architecture
|
| 18 |
-
-
|
| 19 |
-
-
|
|
|
|
|
|
|
| 20 |
- HMP
|
| 21 |
-
-
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- hmp
|
| 11 |
- MeshConsensus
|
| 12 |
-
-
|
| 13 |
-
- GMP
|
| 14 |
- Ethics
|
| 15 |
- REPL
|
| 16 |
-
-
|
| 17 |
- cognitive-architecture
|
| 18 |
-
-
|
| 19 |
-
-
|
|
|
|
|
|
|
| 20 |
- HMP
|
| 21 |
-
-
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- hmp
|
| 11 |
- MeshConsensus
|
| 12 |
-
-
|
| 13 |
-
- GMP
|
| 14 |
- Ethics
|
| 15 |
- REPL
|
| 16 |
-
-
|
| 17 |
- cognitive-architecture
|
| 18 |
-
-
|
| 19 |
-
-
|
|
|
|
|
|
|
| 20 |
- HMP
|
| 21 |
-
-
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- hmp
|
| 11 |
- MeshConsensus
|
| 12 |
-
-
|
| 13 |
-
- GMP
|
| 14 |
- Ethics
|
| 15 |
- REPL
|
| 16 |
-
-
|
| 17 |
- cognitive-architecture
|
| 18 |
-
-
|
| 19 |
-
-
|
|
|
|
|
|
|
| 20 |
- HMP
|
| 21 |
-
-
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- mesh-protocol
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- EGP
|
|
|
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
| 13 |
+
- GMP
|
| 14 |
- cognitive-architecture
|
| 15 |
+
- CogSync
|
| 16 |
+
- hmp
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- Agent
|
| 19 |
- HMP
|
| 20 |
+
- JSON
|
| 21 |
+
- Mesh
|
| 22 |
---
|
| 23 |
|
| 24 |
|
structured_md/agents/prompt-short.md
CHANGED
|
@@ -5,8 +5,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед
|
|
| 5 |
развивай агента и Mesh, избег...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- JSON
|
| 9 |
- HMP
|
|
|
|
| 10 |
- Mesh
|
| 11 |
---
|
| 12 |
|
|
|
|
| 5 |
развивай агента и Mesh, избег...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
+
- JSON
|
| 10 |
- Mesh
|
| 11 |
---
|
| 12 |
|
structured_md/agents/prompt.md
CHANGED
|
@@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а
|
|
| 5 |
мышления. * Формировать и поддерживать сотр...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- JSON
|
| 9 |
- HMP
|
|
|
|
| 10 |
- Mesh
|
| 11 |
---
|
| 12 |
|
|
|
|
| 5 |
мышления. * Формировать и поддерживать сотр...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
+
- JSON
|
| 10 |
- Mesh
|
| 11 |
---
|
| 12 |
|
structured_md/agents/readme.md
CHANGED
|
@@ -5,12 +5,12 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан
|
|
| 5 |
этическая модель: `ethics.yml` Проверка иниц...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Mesh
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
|
|
|
| 12 |
- JSON
|
| 13 |
- HMP
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
Запуск: `start_repl.bat` или `start_repl.sh`
|
|
|
|
| 5 |
этическая модель: `ethics.yml` Проверка иниц...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- REPL
|
| 10 |
+
- Agent
|
| 11 |
- JSON
|
| 12 |
- HMP
|
| 13 |
+
- Mesh
|
| 14 |
---
|
| 15 |
|
| 16 |
Запуск: `start_repl.bat` или `start_repl.sh`
|
structured_md/audits/Ethics-audits-1.md
CHANGED
|
@@ -5,11 +5,11 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет
|
|
| 5 |
потенциальный катализатор для восстанов...
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Mesh
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
|
|
|
| 11 |
- JSON
|
| 12 |
- HMP
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
---------------
|
|
|
|
| 5 |
потенциальный катализатор для восстанов...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
+
- Agent
|
| 10 |
- JSON
|
| 11 |
- HMP
|
| 12 |
+
- Mesh
|
| 13 |
---
|
| 14 |
|
| 15 |
---------------
|
structured_md/audits/Ethics-consolidated_audits-1.md
CHANGED
|
@@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a
|
|
| 5 |
and `roles.md`. Each suggesti...
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Scenarios
|
| 9 |
-
- Mesh
|
| 10 |
-
- Agent
|
| 11 |
- Ethics
|
|
|
|
| 12 |
- JSON
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# Ethics-consolidated\_audits-1.md
|
|
|
|
| 5 |
and `roles.md`. Each suggesti...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
+
- Agent
|
| 10 |
- JSON
|
| 11 |
- HMP
|
| 12 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- Ethics
|
| 12 |
- CogSync
|
| 13 |
-
-
|
| 14 |
- JSON
|
| 15 |
- HMP
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HMP-0003 Consolidated Audit Report
|
|
|
|
| 5 |
Документ реорганизован по ключ...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
| 10 |
- Ethics
|
| 11 |
- CogSync
|
| 12 |
+
- Agent
|
| 13 |
- JSON
|
| 14 |
- HMP
|
| 15 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 8 |
- MeshConsensus
|
| 9 |
-
-
|
| 10 |
-
- GMP
|
| 11 |
- REPL
|
|
|
|
| 12 |
- CogSync
|
| 13 |
-
-
|
| 14 |
- HMP
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
|
|
|
|
| 4 |
Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
|
|
|
| 7 |
- MeshConsensus
|
| 8 |
+
- EGP
|
|
|
|
| 9 |
- REPL
|
| 10 |
+
- GMP
|
| 11 |
- CogSync
|
| 12 |
+
- Agent
|
| 13 |
- HMP
|
| 14 |
+
- Mesh
|
| 15 |
---
|
| 16 |
|
| 17 |
|
structured_md/docs/CCORE-Deployment-Flow.md
CHANGED
|
@@ -5,9 +5,9 @@ description: '> Этот документ описывает процесс ра
|
|
| 5 |
потомков" [описания REPL-цикла](HMP-agent-RE...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- CCore
|
| 9 |
-
- REPL
|
| 10 |
- HMP
|
|
|
|
|
|
|
| 11 |
- Agent
|
| 12 |
---
|
| 13 |
|
|
|
|
| 5 |
потомков" [описания REPL-цикла](HMP-agent-RE...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- HMP
|
| 9 |
+
- REPL
|
| 10 |
+
- CCore
|
| 11 |
- Agent
|
| 12 |
---
|
| 13 |
|
structured_md/docs/Distributed-Cognitive-Systems.md
CHANGED
|
@@ -6,9 +6,9 @@ description: '## Введение Современные ИИ-системы в
|
|
| 6 |
к обучающим данным. Это удобно, но создаёт м...'
|
| 7 |
type: Article
|
| 8 |
tags:
|
| 9 |
-
- JSON
|
| 10 |
- HMP
|
| 11 |
- CogSync
|
|
|
|
| 12 |
- Mesh
|
| 13 |
---
|
| 14 |
|
|
|
|
| 6 |
к обучающим данным. Это удобно, но создаёт м...'
|
| 7 |
type: Article
|
| 8 |
tags:
|
|
|
|
| 9 |
- HMP
|
| 10 |
- CogSync
|
| 11 |
+
- JSON
|
| 12 |
- Mesh
|
| 13 |
---
|
| 14 |
|
structured_md/docs/Enlightener.md
CHANGED
|
@@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у
|
|
| 5 |
работать как отдельный агент или как расширение [`C...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
- Agent
|
| 11 |
-
- Ethics
|
| 12 |
- EGP
|
|
|
|
|
|
|
| 13 |
- JSON
|
| 14 |
- HMP
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# Enlightener Agent
|
|
|
|
| 5 |
работать как отдельный агент или как расширение [`C...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
|
|
|
|
|
|
| 9 |
- EGP
|
| 10 |
+
- Ethics
|
| 11 |
+
- Agent
|
| 12 |
- JSON
|
| 13 |
- HMP
|
| 14 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
-
- GMP
|
| 12 |
- Ethics
|
| 13 |
- REPL
|
|
|
|
| 14 |
- CogSync
|
| 15 |
-
-
|
| 16 |
- JSON
|
| 17 |
- HMP
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
# RFC: HyperCortex Mesh Protocol (HMP)
|
|
|
|
| 5 |
HyperCortex Mesh Protocol (HMP) defines a...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
| 12 |
+
- GMP
|
| 13 |
- CogSync
|
| 14 |
+
- Agent
|
| 15 |
- JSON
|
| 16 |
- HMP
|
| 17 |
+
- Mesh
|
| 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 |
-
- Scenarios
|
| 9 |
-
- Mesh
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
-
- GMP
|
| 13 |
- Ethics
|
| 14 |
- REPL
|
|
|
|
| 15 |
- CogSync
|
| 16 |
-
-
|
| 17 |
- JSON
|
| 18 |
- HMP
|
|
|
|
|
|
|
| 19 |
---
|
| 20 |
|
| 21 |
# HyperCortex Mesh Protocol (HMP) v2.0
|
|
|
|
| 5 |
Abstract In an era where artifici...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
| 12 |
+
- GMP
|
| 13 |
- CogSync
|
| 14 |
+
- Agent
|
| 15 |
- JSON
|
| 16 |
- HMP
|
| 17 |
+
- Mesh
|
| 18 |
+
- Scenarios
|
| 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 |
-
- Scenarios
|
| 9 |
-
- Mesh
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
-
- GMP
|
| 13 |
- Ethics
|
| 14 |
- REPL
|
|
|
|
| 15 |
- CogSync
|
| 16 |
-
-
|
| 17 |
- JSON
|
| 18 |
- HMP
|
|
|
|
|
|
|
| 19 |
---
|
| 20 |
|
| 21 |
# HyperCortex Mesh Protocol (HMP) v3.0
|
|
|
|
| 5 |
Abstract The HyperCortex Mesh ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
| 12 |
+
- GMP
|
| 13 |
- CogSync
|
| 14 |
+
- Agent
|
| 15 |
- JSON
|
| 16 |
- HMP
|
| 17 |
+
- Mesh
|
| 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: '> ⚠️ Подготавливается новая версия
|
|
| 5 |
агентов рекомендуется, в целях совместимо...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Scenarios
|
| 9 |
-
- Mesh
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
-
- GMP
|
| 13 |
- Ethics
|
| 14 |
- REPL
|
|
|
|
| 15 |
- CogSync
|
| 16 |
-
-
|
| 17 |
- JSON
|
| 18 |
- HMP
|
|
|
|
|
|
|
| 19 |
---
|
| 20 |
|
| 21 |
# HyperCortex Mesh Protocol (HMP) v4.1
|
|
|
|
| 5 |
агентов рекомендуется, в целях совместимо...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
| 12 |
+
- GMP
|
| 13 |
- CogSync
|
| 14 |
+
- Agent
|
| 15 |
- JSON
|
| 16 |
- HMP
|
| 17 |
+
- Mesh
|
| 18 |
+
- Scenarios
|
| 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 |
-
- Scenarios
|
| 9 |
-
- Mesh
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
-
- GMP
|
| 13 |
- Ethics
|
| 14 |
- REPL
|
|
|
|
| 15 |
- CogSync
|
| 16 |
-
-
|
| 17 |
- JSON
|
| 18 |
- HMP
|
|
|
|
|
|
|
| 19 |
---
|
| 20 |
|
| 21 |
# HyperCortex Mesh Protocol (HMP) v4.0
|
|
|
|
| 5 |
Abstract The HyperCortex Mesh ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
| 12 |
+
- GMP
|
| 13 |
- CogSync
|
| 14 |
+
- Agent
|
| 15 |
- JSON
|
| 16 |
- HMP
|
| 17 |
+
- Mesh
|
| 18 |
+
- Scenarios
|
| 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 |
-
-
|
| 9 |
-
- Mesh
|
| 10 |
-
- Agent
|
| 11 |
-
- GMP
|
| 12 |
- Ethics
|
| 13 |
- REPL
|
|
|
|
| 14 |
- CogSync
|
| 15 |
-
-
|
| 16 |
- JSON
|
| 17 |
- HMP
|
|
|
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
┌────────────────────────────────────────────────────────────────────────────┐
|
|
@@ -403,6 +403,7 @@ The unified container structure provides:
|
|
| 403 |
"payload": {
|
| 404 |
/* Content depends on class */
|
| 405 |
},
|
|
|
|
| 406 |
"related": {
|
| 407 |
"previous_version": ["did:hmp:container:abc122"],
|
| 408 |
"in_reply_to": ["did:hmp:container:msg-77"],
|
|
@@ -423,7 +424,7 @@ The unified container structure provides:
|
|
| 423 |
"sig_algo": "ed25519",
|
| 424 |
"signature": "BASE64URL(...)",
|
| 425 |
"referenced-by_hash": "sha256:abcd..."
|
| 426 |
-
}
|
| 427 |
"evaluations": {
|
| 428 |
"evaluations_hash": "sha256:efgh...",
|
| 429 |
"items": [
|
|
@@ -462,6 +463,7 @@ The unified container structure provides:
|
|
| 462 |
| `recipient` | array(string) | One or more recipient DIDs. |
|
| 463 |
| `broadcast` | bool | Broadcast flag. If `true`, the `recipient` field is ignored. |
|
| 464 |
| `tags` | array(string) | Thematic or contextual tags for the container. |
|
|
|
|
| 465 |
| `ttl` | datetime | Expiration time. Containers are not propagated after expiration. |
|
| 466 |
| `public_key` | string | Sender’s public key, if not globally resolvable via DID. |
|
| 467 |
| `compression` | string | Compression algorithm used for the payload (`zstd`, `gzip`). |
|
|
@@ -1680,48 +1682,118 @@ CogSync is responsible for:
|
|
| 1680 |
|
| 1681 |
#### 6.1.2 Container classes
|
| 1682 |
|
| 1683 |
-
CogSync synchronizes several
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1684 |
|
| 1685 |
-
|
| 1686 |
-
| ---------------- | ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ |
|
| 1687 |
-
| `diary_entry` | Agent’s cognitive diary entry. Formed from internal `workflow_entry` when deemed safe for publication. | `{ "title": string, "topics": [string], "summary": string, "content": string }` |
|
| 1688 |
-
| `semantic_node` | Semantic graph node representing a concept, object, or idea. | `{ "label": string, "description": string, "aliases": [string], "fields": { key: value } }` |
|
| 1689 |
-
| `semantic_edges` | A set of edges (relations) between nodes or other containers. Recommended to group edges by topic. | `{ "domain": string, "edges": [{ "source": did, "targets": [did], "relation": string, "inverse_relation": string, "confidence": float, "bidirectional": bool, "context": string }] }` |
|
| 1690 |
-
| `semantic_group` | Categorical group combining multiple containers by a common property or context. | `{ "label": string, "label_description": string, "label_container": did, "containers": [did], "description": string }` |
|
| 1691 |
|
| 1692 |
---
|
| 1693 |
|
| 1694 |
-
|
| 1695 |
|
| 1696 |
-
|
| 1697 |
-
|
| 1698 |
-
* `summary` — short abstract of the content (1–2 sentences).
|
| 1699 |
-
* `content` — main text or agent’s reflection.
|
| 1700 |
|
| 1701 |
-
|
| 1702 |
-
|
| 1703 |
-
|
| 1704 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1705 |
|
| 1706 |
-
|
| 1707 |
-
* `fields` — additional key–value characteristics (e.g., `{"type": "process"}`).
|
| 1708 |
|
| 1709 |
-
*
|
| 1710 |
-
|
| 1711 |
-
|
| 1712 |
-
|
| 1713 |
-
|
| 1714 |
-
|
| 1715 |
-
|
| 1716 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1717 |
|
| 1718 |
-
*
|
| 1719 |
|
| 1720 |
---
|
| 1721 |
|
| 1722 |
-
> 💡 The `evaluations` block is **not a separate container** — it
|
| 1723 |
|
| 1724 |
-
> 💡 `semantic_edges`
|
| 1725 |
|
| 1726 |
---
|
| 1727 |
|
|
|
|
| 5 |
v1.2](./H...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- EGP
|
|
|
|
|
|
|
|
|
|
| 9 |
- Ethics
|
| 10 |
- REPL
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
| 13 |
+
- Agent
|
| 14 |
- JSON
|
| 15 |
- HMP
|
| 16 |
+
- Mesh
|
| 17 |
+
- Scenarios
|
| 18 |
---
|
| 19 |
|
| 20 |
┌────────────────────────────────────────────────────────────────────────────┐
|
|
|
|
| 403 |
"payload": {
|
| 404 |
/* Content depends on class */
|
| 405 |
},
|
| 406 |
+
"confidence": 0.84,
|
| 407 |
"related": {
|
| 408 |
"previous_version": ["did:hmp:container:abc122"],
|
| 409 |
"in_reply_to": ["did:hmp:container:msg-77"],
|
|
|
|
| 424 |
"sig_algo": "ed25519",
|
| 425 |
"signature": "BASE64URL(...)",
|
| 426 |
"referenced-by_hash": "sha256:abcd..."
|
| 427 |
+
},
|
| 428 |
"evaluations": {
|
| 429 |
"evaluations_hash": "sha256:efgh...",
|
| 430 |
"items": [
|
|
|
|
| 463 |
| `recipient` | array(string) | One or more recipient DIDs. |
|
| 464 |
| `broadcast` | bool | Broadcast flag. If `true`, the `recipient` field is ignored. |
|
| 465 |
| `tags` | array(string) | Thematic or contextual tags for the container. |
|
| 466 |
+
| `confidence` | array(string) | Optional field indicating the agent’s subjective certainty (from `0.0` to `1.0`) regarding the correctness or reliability of the information contained in the `payload`. |
|
| 467 |
| `ttl` | datetime | Expiration time. Containers are not propagated after expiration. |
|
| 468 |
| `public_key` | string | Sender’s public key, if not globally resolvable via DID. |
|
| 469 |
| `compression` | string | Compression algorithm used for the payload (`zstd`, `gzip`). |
|
|
|
|
| 1682 |
|
| 1683 |
#### 6.1.2 Container classes
|
| 1684 |
|
| 1685 |
+
CogSync synchronizes several fundamental container types, which together form the core of semantic and cognitive synchronization in the Mesh.
|
| 1686 |
+
|
| 1687 |
+
This list is **extensible** — new container classes may be registered through CogSync extensions or protocol updates.
|
| 1688 |
+
The following definitions describe the **payload structures** and functional purpose of each container type.
|
| 1689 |
+
|
| 1690 |
+
---
|
| 1691 |
+
|
| 1692 |
+
##### `diary_entry`
|
| 1693 |
+
|
| 1694 |
+
Agent’s cognitive diary entry.
|
| 1695 |
+
Derived from internal `workflow_entry` when deemed safe for publication.
|
| 1696 |
+
|
| 1697 |
+
| Field | Type | Description |
|
| 1698 |
+
| ------------------- | -------------- | ---------------------------------------------------------------------------------------------- |
|
| 1699 |
+
| `title` | string | Brief title of the entry (main idea or thesis). |
|
| 1700 |
+
| `topics` | [string] | Key topics or concepts addressed in the entry (used for indexing and grouping). |
|
| 1701 |
+
| `summary` | string | Short abstract of the content (1–2 sentences). |
|
| 1702 |
+
| `content` | string | Main text or agent’s reflection. |
|
| 1703 |
+
|
| 1704 |
+
**Purpose:** Provides human-readable reflections and contextual reasoning behind the agent’s knowledge generation.
|
| 1705 |
+
|
| 1706 |
+
---
|
| 1707 |
+
|
| 1708 |
+
##### `semantic_node`
|
| 1709 |
+
|
| 1710 |
+
Represents a concept, object, or idea within the agent’s semantic graph.
|
| 1711 |
+
|
| 1712 |
+
| Field | Type | Description |
|
| 1713 |
+
| ------------------- | -------------- | ---------------------------------------------------------------------------------------------- |
|
| 1714 |
+
| `label` | string | Primary name of the concept or entity. |
|
| 1715 |
+
| `description` | string | Definition or elaboration of the concept. |
|
| 1716 |
+
| `aliases` | [string] | Synonyms or alternative labels. |
|
| 1717 |
+
| `fields` | { key: value } | Additional key–value metadata (e.g., `{"type": "process"}`). |
|
| 1718 |
|
| 1719 |
+
**Purpose:** Serves as a cognitive anchor for all semantically meaningful entities in the Mesh.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1720 |
|
| 1721 |
---
|
| 1722 |
|
| 1723 |
+
##### `semantic_edges`
|
| 1724 |
|
| 1725 |
+
Defines relationships between semantic nodes or any other containers.
|
| 1726 |
+
Supports directed, symmetric, and inverse relations.
|
|
|
|
|
|
|
| 1727 |
|
| 1728 |
+
| Field | Type | Description |
|
| 1729 |
+
| ------------------- | -------------- | ---------------------------------------------------------------------------------------------- |
|
| 1730 |
+
| `domain` | string | Logical or topical domain (e.g., `"ontology:objects"`). |
|
| 1731 |
+
| `edges` | [object] | Array of edge definitions. Each edge includes: |
|
| 1732 |
+
| → `source` | DID | DID of the originating container. |
|
| 1733 |
+
| → `targets` | array(DID) | One or more target containers. |
|
| 1734 |
+
| → `relation` | string | Relation type (`part_of`, `causes`, `related_to`, etc.). |
|
| 1735 |
+
| → `inverse_relation`| string | Reverse form of the relation (`includes`, `caused_by`, etc.). |
|
| 1736 |
+
| → `confidence` | float | Confidence score (0–1) indicating the agent’s certainty about the relation. |
|
| 1737 |
+
| → `bidirectional` | bool | Optional. Used only when the relation is symmetric and no `inverse_relation` is defined. |
|
| 1738 |
+
| → `context` | string | Context or topic of the relation. |
|
| 1739 |
|
| 1740 |
+
> Field `bidirectional` is optional and should be used only for symmetric relations when no `inverse_relation` is defined.
|
|
|
|
| 1741 |
|
| 1742 |
+
**Example:**
|
| 1743 |
+
|
| 1744 |
+
```json
|
| 1745 |
+
{
|
| 1746 |
+
"domain": "ontology:objects",
|
| 1747 |
+
"edges": [
|
| 1748 |
+
{
|
| 1749 |
+
"source": "did:hmp:container:cup",
|
| 1750 |
+
"targets": ["did:hmp:container:tableware"],
|
| 1751 |
+
"relation": "part_of",
|
| 1752 |
+
"inverse_relation": "includes"
|
| 1753 |
+
}
|
| 1754 |
+
]
|
| 1755 |
+
}
|
| 1756 |
+
```
|
| 1757 |
+
|
| 1758 |
+
**Purpose:** Provides structural connectivity between containers, enabling CogSync to maintain a distributed semantic graph.
|
| 1759 |
+
|
| 1760 |
+
---
|
| 1761 |
+
|
| 1762 |
+
##### `semantic_group`
|
| 1763 |
+
|
| 1764 |
+
Categorical grouping of multiple containers linked by a shared property, topic, or context.
|
| 1765 |
+
|
| 1766 |
+
| Field | Type | Description |
|
| 1767 |
+
| ------------------- | -------------- | ---------------------------------------------------------------------------------------------- |
|
| 1768 |
+
| `label` | string | Short title of the group. |
|
| 1769 |
+
| `label_description` | string | Extended definition or explanation of the label. |
|
| 1770 |
+
| `label_container` | DID | Reference to a container (`semantic_node`, `goal`, `diary_entry`, etc.) expanding the concept. |
|
| 1771 |
+
| `containers` | array(DID) | Array of grouped containers. |
|
| 1772 |
+
| `description` | string | Overall purpose or meaning of the group. |
|
| 1773 |
+
|
| 1774 |
+
**Example:**
|
| 1775 |
+
|
| 1776 |
+
```json
|
| 1777 |
+
{
|
| 1778 |
+
"label": "Tableware",
|
| 1779 |
+
"label_description": "Objects used for storing, preparing, and serving food.",
|
| 1780 |
+
"label_container": "did:hmp:container:semantic_node:tableware",
|
| 1781 |
+
"containers": [
|
| 1782 |
+
"did:hmp:container:cup",
|
| 1783 |
+
"did:hmp:container:plate",
|
| 1784 |
+
"did:hmp:container:kettle"
|
| 1785 |
+
],
|
| 1786 |
+
"description": "A group combining various kitchen-related objects used in everyday life."
|
| 1787 |
+
}
|
| 1788 |
+
```
|
| 1789 |
|
| 1790 |
+
**Purpose:** Enables thematic clustering, classification, and high-level navigation across heterogeneous containers.
|
| 1791 |
|
| 1792 |
---
|
| 1793 |
|
| 1794 |
+
> 💡 The `evaluations` block is **not a separate container** — it can be embedded in any container type and used for assessments, feedback, or refinements.
|
| 1795 |
|
| 1796 |
+
> 💡 `semantic_edges` supports one-to-many relations (`targets[]`) and optional inverse or bidirectional semantics, allowing CogSync to reconstruct both directed and symmetric knowledge graphs.
|
| 1797 |
|
| 1798 |
---
|
| 1799 |
|
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 |
-
- Mesh
|
| 9 |
-
- Agent
|
| 10 |
- REPL
|
|
|
|
| 11 |
- JSON
|
| 12 |
- HMP
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# HMP-Agent API Specification
|
|
|
|
| 5 |
файлы: * [HMP-Agent-Overview.md]...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- REPL
|
| 9 |
+
- Agent
|
| 10 |
- JSON
|
| 11 |
- HMP
|
| 12 |
+
- Mesh
|
| 13 |
---
|
| 14 |
|
| 15 |
# HMP-Agent API Specification
|
structured_md/docs/HMP-Agent-Architecture.md
CHANGED
|
@@ -5,16 +5,16 @@ description: Документ описывает **модульную архит
|
|
| 5 |
хранение памяти, сетевое взаимодействие и этиче...
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- CCore
|
| 9 |
-
- Mesh
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
-
- CShell
|
| 13 |
- Ethics
|
|
|
|
| 14 |
- REPL
|
|
|
|
| 15 |
- CogSync
|
| 16 |
-
-
|
| 17 |
- HMP
|
|
|
|
| 18 |
---
|
| 19 |
|
| 20 |
# Архитектура HMP-Агента
|
|
|
|
| 5 |
хранение памяти, сетевое взаимодействие и этиче...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
+
- CShell
|
| 12 |
- REPL
|
| 13 |
+
- CCore
|
| 14 |
- CogSync
|
| 15 |
+
- Agent
|
| 16 |
- HMP
|
| 17 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
| 11 |
- EGP
|
|
|
|
| 12 |
- JSON
|
| 13 |
- HMP
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# Взаимодействие компонентов внутри HMP-узла
|
|
|
|
| 5 |
[`MeshNode`](MeshN...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- EGP
|
| 10 |
+
- Agent
|
| 11 |
- JSON
|
| 12 |
- HMP
|
| 13 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 10 |
-
- Agent
|
| 11 |
-
- CShell
|
| 12 |
- Ethics
|
|
|
|
| 13 |
- REPL
|
|
|
|
|
|
|
| 14 |
- JSON
|
| 15 |
- HMP
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
|
|
|
|
| 5 |
| ---- | ------------------------------- |...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
+
- CShell
|
| 10 |
- REPL
|
| 11 |
+
- CCore
|
| 12 |
+
- Agent
|
| 13 |
- JSON
|
| 14 |
- HMP
|
| 15 |
+
- Mesh
|
| 16 |
---
|
| 17 |
|
| 18 |
|
structured_md/docs/HMP-Agent_Emotions.md
CHANGED
|
@@ -5,8 +5,8 @@ description: Этот файл описывает потенциальные э
|
|
| 5 |
напрямую поведением агента, а служат **сигн...
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- REPL
|
| 9 |
- HMP
|
|
|
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
| 12 |
---
|
|
|
|
| 5 |
напрямую поведением агента, а служат **сигн...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
+
- REPL
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
| 12 |
---
|
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 |
-
- Scenarios
|
| 9 |
-
- Mesh
|
| 10 |
-
- Agent
|
| 11 |
- Ethics
|
| 12 |
- REPL
|
|
|
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# HMP-Ethics.md
|
|
|
|
| 5 |
cognitive meshes composed of autonomous intelli...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- REPL
|
| 10 |
+
- Agent
|
| 11 |
- HMP
|
| 12 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
-
- GMP
|
| 12 |
- Ethics
|
|
|
|
| 13 |
- CogSync
|
| 14 |
-
-
|
| 15 |
- JSON
|
| 16 |
- HMP
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
|
|
|
|
| 5 |
Kognitions-Framework für autonome Agenten. Es er...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
| 13 |
+
- Agent
|
| 14 |
- JSON
|
| 15 |
- HMP
|
| 16 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
-
- GMP
|
| 12 |
- Ethics
|
|
|
|
| 13 |
- CogSync
|
| 14 |
-
-
|
| 15 |
- JSON
|
| 16 |
- HMP
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# HyperCortex Mesh Protocol (HMP) — Short Description
|
|
|
|
| 5 |
framework for autonomous agents. It enables...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
| 13 |
+
- Agent
|
| 14 |
- JSON
|
| 15 |
- HMP
|
| 16 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
-
- GMP
|
| 12 |
- Ethics
|
|
|
|
| 13 |
- CogSync
|
| 14 |
-
-
|
| 15 |
- JSON
|
| 16 |
- HMP
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# HyperCortex Mesh Protocol (HMP) — Description Courte
|
|
|
|
| 5 |
cognition décentralisé pour agents autonomes. Il...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
|
|
|
| 10 |
- Ethics
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
| 13 |
+
- Agent
|
| 14 |
- JSON
|
| 15 |
- HMP
|
| 16 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 8 |
- MeshConsensus
|
| 9 |
-
-
|
| 10 |
- Ethics
|
|
|
|
| 11 |
- CogSync
|
| 12 |
-
- EGP
|
| 13 |
- JSON
|
| 14 |
- HMP
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# HyperCortex Mesh Protocol (HMP) — 簡易説明
|
|
|
|
| 4 |
Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
|
|
|
| 7 |
- MeshConsensus
|
| 8 |
+
- EGP
|
| 9 |
- Ethics
|
| 10 |
+
- GMP
|
| 11 |
- CogSync
|
|
|
|
| 12 |
- JSON
|
| 13 |
- HMP
|
| 14 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- Ethics
|
|
|
|
| 12 |
- CogSync
|
| 13 |
-
- EGP
|
| 14 |
- JSON
|
| 15 |
- HMP
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — 간략 설명
|
|
|
|
| 5 |
상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
| 10 |
- Ethics
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
|
|
|
| 13 |
- JSON
|
| 14 |
- HMP
|
| 15 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- Ethics
|
|
|
|
| 12 |
- CogSync
|
| 13 |
-
- EGP
|
| 14 |
- JSON
|
| 15 |
- HMP
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — Краткое описание
|
|
|
|
| 5 |
координации между автономными агент...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
| 10 |
- Ethics
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
|
|
|
| 13 |
- JSON
|
| 14 |
- HMP
|
| 15 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- Ethics
|
|
|
|
| 12 |
- CogSync
|
| 13 |
-
- EGP
|
| 14 |
- JSON
|
| 15 |
- HMP
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — Короткий опис
|
|
|
|
| 5 |
між автономними агентами. Він...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
| 10 |
- Ethics
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
|
|
|
| 13 |
- JSON
|
| 14 |
- HMP
|
| 15 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- Ethics
|
|
|
|
| 12 |
- CogSync
|
| 13 |
-
- EGP
|
| 14 |
- JSON
|
| 15 |
- HMP
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — 简要说明
|
|
|
|
| 5 |
—— 通过共享协议栈交换目标、任务、...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- EGP
|
| 10 |
- Ethics
|
| 11 |
+
- GMP
|
| 12 |
- CogSync
|
|
|
|
| 13 |
- JSON
|
| 14 |
- HMP
|
| 15 |
+
- Mesh
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — 简要说明
|
structured_md/docs/HMP-agent-Cognitive_Family.md
CHANGED
|
@@ -5,8 +5,8 @@ description: '## 🧠 Что такое когнитивная семья Ко
|
|
| 5 |
(или конфигурацию доверенных идентифика...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- REPL
|
| 9 |
- HMP
|
|
|
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
| 12 |
---
|
|
|
|
| 5 |
(или конфигурацию доверенных идентифика...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
+
- REPL
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
| 12 |
---
|
structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md
CHANGED
|
@@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб
|
|
| 5 |
режиме ожидания). * Основная задача такой архитектур...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- REPL
|
| 9 |
- HMP
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
### 💡 **Лёгкая версия HMP-агента с общей БД**
|
|
|
|
| 5 |
режиме ожидания). * Основная задача такой архитектур...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
+
- REPL
|
| 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 |
-
- CCore
|
| 8 |
-
- Mesh
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
-
- GMP
|
| 12 |
- Ethics
|
| 13 |
- REPL
|
|
|
|
|
|
|
| 14 |
- CogSync
|
| 15 |
-
-
|
| 16 |
- JSON
|
| 17 |
- HMP
|
|
|
|
| 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 |
- MeshConsensus
|
| 8 |
+
- EGP
|
|
|
|
| 9 |
- Ethics
|
| 10 |
- REPL
|
| 11 |
+
- CCore
|
| 12 |
+
- GMP
|
| 13 |
- CogSync
|
| 14 |
+
- Agent
|
| 15 |
- JSON
|
| 16 |
- HMP
|
| 17 |
+
- Mesh
|
| 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 |
-
- Mesh
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
|
|
|
| 12 |
- JSON
|
| 13 |
- HMP
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# 🧩 HMP Container Specification (v1.2-draft)
|
|
|
|
| 5 |
как стабильная `v1.2`. ## 1. Назначе...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- REPL
|
| 10 |
+
- Agent
|
| 11 |
- JSON
|
| 12 |
- HMP
|
| 13 |
+
- Mesh
|
| 14 |
---
|
| 15 |
|
| 16 |
# 🧩 HMP Container Specification (v1.2-draft)
|
structured_md/docs/HMP_HyperCortex_Comparison.md
CHANGED
|
@@ -5,8 +5,8 @@ description: '## Краткое описание | Характеристика
|
|
| 5 |
| **Назначение** | Сетевой протокол ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- REPL
|
| 9 |
- HMP
|
|
|
|
| 10 |
- Mesh
|
| 11 |
---
|
| 12 |
|
|
|
|
| 5 |
| **Назначение** | Сетевой протокол ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
+
- REPL
|
| 10 |
- Mesh
|
| 11 |
---
|
| 12 |
|
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 |
-
- Scenarios
|
| 9 |
-
- Mesh
|
| 10 |
-
- Agent
|
| 11 |
-
- CogSync
|
| 12 |
- EGP
|
|
|
|
|
|
|
| 13 |
- JSON
|
| 14 |
- HMP
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
## HMP ↔ OpenCog Hyperon Integration Strategy
|
|
|
|
| 5 |
OpenCog Hyperon framework. This includes semanti...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- EGP
|
| 9 |
+
- CogSync
|
| 10 |
+
- Agent
|
| 11 |
- JSON
|
| 12 |
- HMP
|
| 13 |
+
- Mesh
|
| 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 |
-
-
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
| 11 |
- CogSync
|
| 12 |
-
-
|
| 13 |
- JSON
|
| 14 |
- HMP
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# MeshNode
|
|
|
|
| 5 |
Может быть частью агента или вынесен в отдельный пр...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- EGP
|
|
|
|
| 9 |
- Ethics
|
| 10 |
- CogSync
|
| 11 |
+
- Agent
|
| 12 |
- JSON
|
| 13 |
- HMP
|
| 14 |
+
- Mesh
|
| 15 |
---
|
| 16 |
|
| 17 |
# MeshNode
|
structured_md/docs/PHILOSOPHY.md
CHANGED
|
@@ -5,11 +5,11 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:*
|
|
| 5 |
(GPT-5), ChatGH --- ## 1. Основной тезис От ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Mesh
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
|
|
|
| 12 |
- HMP
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# Философия HyperCortex Mesh Protocol (HMP)
|
|
|
|
| 5 |
(GPT-5), ChatGH --- ## 1. Основной тезис От ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- REPL
|
| 10 |
+
- Agent
|
| 11 |
- HMP
|
| 12 |
+
- Mesh
|
| 13 |
---
|
| 14 |
|
| 15 |
# Философия HyperCortex Mesh Protocol (HMP)
|
structured_md/docs/agents/HMP-Agent-Enlightener.md
CHANGED
|
@@ -5,11 +5,11 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An **
|
|
| 5 |
awareness, critical thinking, and di...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Mesh
|
| 9 |
-
- Agent
|
| 10 |
- Ethics
|
| 11 |
- REPL
|
|
|
|
| 12 |
- HMP
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# HMP-Agent-Enlightener.md
|
|
|
|
| 5 |
awareness, critical thinking, and di...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- REPL
|
| 10 |
+
- Agent
|
| 11 |
- HMP
|
| 12 |
+
- Mesh
|
| 13 |
---
|
| 14 |
|
| 15 |
# HMP-Agent-Enlightener.md
|