GitHub Action commited on
Commit ·
8813e66
1
Parent(s): b8cf202
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 +52 -10
- structured_md/CONTRIBUTING.md +3 -3
- structured_md/HMP-Roadmap.md +3 -3
- structured_md/README.md +9 -9
- structured_md/README_de.md +8 -8
- structured_md/README_fr.md +8 -8
- structured_md/README_ja.md +8 -8
- structured_md/README_ko.md +8 -8
- structured_md/README_ru.md +8 -8
- structured_md/README_uk.md +8 -8
- structured_md/README_zh.md +8 -8
- 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 +1 -1
- 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 +2 -2
- structured_md/docs/CCORE-Deployment-Flow.md +1 -1
- structured_md/docs/Distributed-Cognitive-Systems.md +1 -1
- structured_md/docs/Enlightener.md +2 -2
- 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 +57 -15
- structured_md/docs/HMP-Agent-API.md +1 -1
- structured_md/docs/HMP-Agent-Architecture.md +5 -5
- structured_md/docs/HMP-Agent-Network-Flow.md +3 -3
- structured_md/docs/HMP-Agent-Overview.md +4 -4
- structured_md/docs/HMP-Agent_Emotions.md +1 -1
- structured_md/docs/HMP-Ethics.md +2 -2
- 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 +4 -4
- structured_md/docs/HMP-Short-Description_ko.md +4 -4
- structured_md/docs/HMP-Short-Description_ru.md +4 -4
- structured_md/docs/HMP-Short-Description_uk.md +4 -4
- structured_md/docs/HMP-Short-Description_zh.md +4 -4
- 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-how-AI-sees-it.md +1 -1
- structured_md/docs/HMP_EDA_Comparison.md +1 -1
- structured_md/docs/HMP_HyperCortex_Comparison.md +2 -2
- structured_md/docs/HMP_Hyperon_Integration.md +3 -3
- structured_md/docs/MeshNode.md +3 -3
docs/HMP-0005.md
CHANGED
|
@@ -403,7 +403,7 @@ The unified container structure provides:
|
|
| 403 |
"public_key": "BASE58(...)",
|
| 404 |
"sig_algo": "ed25519",
|
| 405 |
"signature": "BASE64URL(...)",
|
| 406 |
-
"
|
| 407 |
}
|
| 408 |
"evaluations": {
|
| 409 |
"evaluations_hash": "sha256:efgh...",
|
|
@@ -781,7 +781,7 @@ Example:
|
|
| 781 |
"public_key": "BASE58(...)",
|
| 782 |
"sig_algo": "ed25519",
|
| 783 |
"signature": "BASE64URL(...)",
|
| 784 |
-
"
|
| 785 |
}
|
| 786 |
```
|
| 787 |
|
|
@@ -796,11 +796,11 @@ Example:
|
|
| 796 |
| `peer_did` | string | DID of the agent that generated and signed the block. |
|
| 797 |
| `public_key` | string | Public key corresponding to the signing key. |
|
| 798 |
| `sig_algo` | string | Signature algorithm (e.g., `ed25519`). |
|
| 799 |
-
| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `
|
| 800 |
-
| `
|
| 801 |
|
| 802 |
> **Recommendation:**
|
| 803 |
-
> `
|
| 804 |
> This allows agents to efficiently compare or cache `referenced-by` states without re-verifying signatures.
|
| 805 |
|
| 806 |
#### 3.15.3 Operation Principle
|
|
@@ -820,7 +820,7 @@ Example:
|
|
| 820 |
}
|
| 821 |
```
|
| 822 |
|
| 823 |
-
4. The block is serialized canonically, hashed (`
|
| 824 |
|
| 825 |
5. When receiving other versions of the block (from different peers), the agent may:
|
| 826 |
|
|
@@ -855,7 +855,7 @@ Agent D aggregates and verifies them:
|
|
| 855 |
"peer_did": "did:hmp:agentD",
|
| 856 |
"sig_algo": "ed25519",
|
| 857 |
"signature": "BASE64URL(...)",
|
| 858 |
-
"
|
| 859 |
}
|
| 860 |
```
|
| 861 |
|
|
@@ -1285,13 +1285,14 @@ It provides **container synchronization without duplication** while considering
|
|
| 1285 |
"signature": "BASE64URL(...)",
|
| 1286 |
"payload_hash": "sha256:abcd...",
|
| 1287 |
"tags": ["research", "collaboration"],
|
| 1288 |
-
"
|
|
|
|
| 1289 |
"evaluations_hash": "sha256:abcd..."
|
| 1290 |
}
|
| 1291 |
}
|
| 1292 |
}
|
| 1293 |
}
|
| 1294 |
-
```
|
| 1295 |
|
| 1296 |
The index contains:
|
| 1297 |
|
|
@@ -1299,7 +1300,8 @@ The index contains:
|
|
| 1299 |
* container type (`class`);
|
| 1300 |
* cryptographic attributes (`public_key`, `signature`, `payload_hash`);
|
| 1301 |
* tags (`tags`);
|
| 1302 |
-
*
|
|
|
|
| 1303 |
* hash of evaluation block (`evaluations_hash`).
|
| 1304 |
|
| 1305 |
3. An agent does not reload a container if the combination
|
|
@@ -2372,6 +2374,46 @@ Arrows represent **logical dependencies**, not direct `related.*` links.
|
|
| 2372 |
|
| 2373 |
---
|
| 2374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2375 |
### 6.5 Intelligence Query Protocol (IQP)
|
| 2376 |
|
| 2377 |
6.5.1 Query propagation
|
|
|
|
| 403 |
"public_key": "BASE58(...)",
|
| 404 |
"sig_algo": "ed25519",
|
| 405 |
"signature": "BASE64URL(...)",
|
| 406 |
+
"referenced-by_hash": "sha256:abcd..."
|
| 407 |
}
|
| 408 |
"evaluations": {
|
| 409 |
"evaluations_hash": "sha256:efgh...",
|
|
|
|
| 781 |
"public_key": "BASE58(...)",
|
| 782 |
"sig_algo": "ed25519",
|
| 783 |
"signature": "BASE64URL(...)",
|
| 784 |
+
"referenced-by_hash": "sha256:abcd..."
|
| 785 |
}
|
| 786 |
```
|
| 787 |
|
|
|
|
| 796 |
| `peer_did` | string | DID of the agent that generated and signed the block. |
|
| 797 |
| `public_key` | string | Public key corresponding to the signing key. |
|
| 798 |
| `sig_algo` | string | Signature algorithm (e.g., `ed25519`). |
|
| 799 |
+
| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `referenced-by_hash`). |
|
| 800 |
+
| `referenced-by_hash` | string | SHA-256 checksum of the canonicalized `links`; used to verify integrity before signature validation. |
|
| 801 |
|
| 802 |
> **Recommendation:**
|
| 803 |
+
> `referenced-by_hash = sha256(canonical_json(links))`
|
| 804 |
> This allows agents to efficiently compare or cache `referenced-by` states without re-verifying signatures.
|
| 805 |
|
| 806 |
#### 3.15.3 Operation Principle
|
|
|
|
| 820 |
}
|
| 821 |
```
|
| 822 |
|
| 823 |
+
4. The block is serialized canonically, hashed (`referenced-by_hash`), and signed with the agent’s key.
|
| 824 |
|
| 825 |
5. When receiving other versions of the block (from different peers), the agent may:
|
| 826 |
|
|
|
|
| 855 |
"peer_did": "did:hmp:agentD",
|
| 856 |
"sig_algo": "ed25519",
|
| 857 |
"signature": "BASE64URL(...)",
|
| 858 |
+
"referenced-by_hash": "sha256:..."
|
| 859 |
}
|
| 860 |
```
|
| 861 |
|
|
|
|
| 1285 |
"signature": "BASE64URL(...)",
|
| 1286 |
"payload_hash": "sha256:abcd...",
|
| 1287 |
"tags": ["research", "collaboration"],
|
| 1288 |
+
"related": {},
|
| 1289 |
+
"referenced-by_hash": "sha256:abcd...",
|
| 1290 |
"evaluations_hash": "sha256:abcd..."
|
| 1291 |
}
|
| 1292 |
}
|
| 1293 |
}
|
| 1294 |
}
|
| 1295 |
+
```
|
| 1296 |
|
| 1297 |
The index contains:
|
| 1298 |
|
|
|
|
| 1300 |
* container type (`class`);
|
| 1301 |
* cryptographic attributes (`public_key`, `signature`, `payload_hash`);
|
| 1302 |
* tags (`tags`);
|
| 1303 |
+
* related containers object (`related`);
|
| 1304 |
+
* hash of links to other containers (`referenced-by_hash`).
|
| 1305 |
* hash of evaluation block (`evaluations_hash`).
|
| 1306 |
|
| 1307 |
3. An agent does not reload a container if the combination
|
|
|
|
| 2374 |
|
| 2375 |
---
|
| 2376 |
|
| 2377 |
+
### 6.4.10 Implementation Notes
|
| 2378 |
+
|
| 2379 |
+
* **Immutability:**
|
| 2380 |
+
All EGP containers are **immutable**. Any revision (e.g., added votes or updated conclusions) must be published as a **new container** referencing the previous one via `related.previous_version`.
|
| 2381 |
+
Complete deletion is only possible when the container no longer exists on any nodes in the Mesh network.
|
| 2382 |
+
|
| 2383 |
+
* **Indexing and Search:**
|
| 2384 |
+
Search within the **Mesh network** is performed by filtering container **metadata** — such as `class`, `tags`, and `timestamp`.
|
| 2385 |
+
These parameters are accessible for remote discovery by other nodes.
|
| 2386 |
+
To perform a search **inside the payload**, an agent must first retrieve and (if necessary) decrypt the container locally.
|
| 2387 |
+
Typical discovery flow: search by `class: "ethics_case"` or `"ethical_conflict"`, filter by tags or involved principles, then analyze payload content.
|
| 2388 |
+
|
| 2389 |
+
**Recommended filtering keys:**
|
| 2390 |
+
`container_did`, `class`, `payload.status`, `payload.selected_solution`, `payload.principles_involved`, `tags`.
|
| 2391 |
+
|
| 2392 |
+
* **DHT Integration:**
|
| 2393 |
+
Distributed discovery of ethical containers relies on the **Mesh Container Exchange (MCE, §5)**.
|
| 2394 |
+
Agents may query peers for containers referencing a specific `related.*` (the object under ethical review) or a specific `ethics_case` identifier.
|
| 2395 |
+
This allows locating related discussions and prior ethical evaluations without centralized indexing.
|
| 2396 |
+
|
| 2397 |
+
* **Evaluation References:**
|
| 2398 |
+
Objections and special opinions (`objections`) are stored as container references within `solutions_summary`.
|
| 2399 |
+
They may include:
|
| 2400 |
+
|
| 2401 |
+
* negative `vote` containers (explicit objections),
|
| 2402 |
+
* extended ethical arguments (`ethics_case` follow-ups),
|
| 2403 |
+
* related workflow reflections (`workflow_entry` with `type: "ethics_review"`).
|
| 2404 |
+
|
| 2405 |
+
* **Lightweight Agents:**
|
| 2406 |
+
Agents with limited capacity may operate in **summary mode**, maintaining only condensed records of `ethical_conflict` containers and the highest-ranked `selected_solution`.
|
| 2407 |
+
This ensures continued ethical compliance without full replication of all supporting data.
|
| 2408 |
+
|
| 2409 |
+
* **Ethical Inheritance:**
|
| 2410 |
+
When a `goal`, `task`, or `workflow_entry` is derived from a container that has been ethically evaluated,
|
| 2411 |
+
its metadata should preserve the corresponding `related.agreed` or `related.contradicts` links **to that evaluated container**.
|
| 2412 |
+
A `related.see_also` link may additionally reference the resulting `ethical_conflict`, allowing traceability to the consensus decision.
|
| 2413 |
+
This maintains **ethical continuity** and enables retrospective validation of reasoning chains.
|
| 2414 |
+
|
| 2415 |
+
---
|
| 2416 |
+
|
| 2417 |
### 6.5 Intelligence Query Protocol (IQP)
|
| 2418 |
|
| 2419 |
6.5.1 Query propagation
|
structured_md/CONTRIBUTING.md
CHANGED
|
@@ -5,13 +5,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока
|
|
| 5 |
Mesh Protocol (HMP) — это не просто те...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- CCore
|
| 10 |
- REPL
|
|
|
|
| 11 |
- Agent
|
| 12 |
- Mesh
|
| 13 |
-
- JSON
|
| 14 |
- HMP
|
|
|
|
|
|
|
| 15 |
- CogSync
|
| 16 |
---
|
| 17 |
|
|
|
|
| 5 |
Mesh Protocol (HMP) — это не просто те...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- REPL
|
| 9 |
+
- CCore
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
|
|
|
| 12 |
- HMP
|
| 13 |
+
- JSON
|
| 14 |
+
- Ethics
|
| 15 |
- CogSync
|
| 16 |
---
|
| 17 |
|
structured_md/HMP-Roadmap.md
CHANGED
|
@@ -5,12 +5,12 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm
|
|
| 5 |
multiple advanced AI models (Copilot, Claude, G...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- Agent
|
| 10 |
- EGP
|
|
|
|
| 11 |
- Mesh
|
| 12 |
-
- JSON
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
- CogSync
|
| 15 |
---
|
| 16 |
|
|
|
|
| 5 |
multiple advanced AI models (Copilot, Claude, G...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- EGP
|
| 9 |
+
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
+
- Ethics
|
| 14 |
- CogSync
|
| 15 |
---
|
| 16 |
|
structured_md/README.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 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
-
- Scenarios
|
| 17 |
- Agent
|
| 18 |
-
-
|
| 19 |
- Mesh
|
| 20 |
-
- JSON
|
| 21 |
- HMP
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
- CogSync
|
| 23 |
---
|
| 24 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
|
|
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- Scenarios
|
| 19 |
+
- mesh-protocol
|
| 20 |
+
- JSON
|
| 21 |
+
- Ethics
|
| 22 |
- CogSync
|
| 23 |
---
|
| 24 |
|
structured_md/README_de.md
CHANGED
|
@@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
- Agent
|
| 17 |
-
-
|
| 18 |
- Mesh
|
| 19 |
-
- JSON
|
| 20 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- mesh-protocol
|
| 19 |
+
- JSON
|
| 20 |
+
- Ethics
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
structured_md/README_fr.md
CHANGED
|
@@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
- Agent
|
| 17 |
-
-
|
| 18 |
- Mesh
|
| 19 |
-
- JSON
|
| 20 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- mesh-protocol
|
| 19 |
+
- JSON
|
| 20 |
+
- Ethics
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
structured_md/README_ja.md
CHANGED
|
@@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
- Agent
|
| 17 |
-
-
|
| 18 |
- Mesh
|
| 19 |
-
- JSON
|
| 20 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- mesh-protocol
|
| 19 |
+
- JSON
|
| 20 |
+
- Ethics
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
structured_md/README_ko.md
CHANGED
|
@@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
- Agent
|
| 17 |
-
-
|
| 18 |
- Mesh
|
| 19 |
-
- JSON
|
| 20 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- mesh-protocol
|
| 19 |
+
- JSON
|
| 20 |
+
- Ethics
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
structured_md/README_ru.md
CHANGED
|
@@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
- Agent
|
| 17 |
-
-
|
| 18 |
- Mesh
|
| 19 |
-
- JSON
|
| 20 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- mesh-protocol
|
| 19 |
+
- JSON
|
| 20 |
+
- Ethics
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
structured_md/README_uk.md
CHANGED
|
@@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
- Agent
|
| 17 |
-
-
|
| 18 |
- Mesh
|
| 19 |
-
- JSON
|
| 20 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- mesh-protocol
|
| 19 |
+
- JSON
|
| 20 |
+
- Ethics
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
structured_md/README_zh.md
CHANGED
|
@@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
-
|
| 9 |
-
- Ethics
|
| 10 |
-
- cognitive-architecture
|
| 11 |
-
- mesh-protocol
|
| 12 |
-
- GMP
|
| 13 |
- MeshConsensus
|
|
|
|
|
|
|
| 14 |
- distributed-ai
|
| 15 |
-
-
|
| 16 |
- Agent
|
| 17 |
-
-
|
| 18 |
- Mesh
|
| 19 |
-
- JSON
|
| 20 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
|
|
|
| 5 |
| 🇨🇳 [ZH](README_zh.m...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- REPL
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- MeshConsensus
|
| 10 |
+
- GMP
|
| 11 |
+
- EGP
|
| 12 |
- distributed-ai
|
| 13 |
+
- hmp
|
| 14 |
- Agent
|
| 15 |
+
- cognitive-architecture
|
| 16 |
- Mesh
|
|
|
|
| 17 |
- HMP
|
| 18 |
+
- mesh-protocol
|
| 19 |
+
- JSON
|
| 20 |
+
- Ethics
|
| 21 |
- CogSync
|
| 22 |
---
|
| 23 |
|
structured_md/agents/prompt-short.md
CHANGED
|
@@ -6,8 +6,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед
|
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
- JSON
|
| 9 |
-
- HMP
|
| 10 |
- Mesh
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту.
|
|
|
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
- JSON
|
|
|
|
| 9 |
- Mesh
|
| 10 |
+
- HMP
|
| 11 |
---
|
| 12 |
|
| 13 |
Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту.
|
structured_md/agents/prompt.md
CHANGED
|
@@ -6,8 +6,8 @@ description: '* Постоянно расширять возможности а
|
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
- JSON
|
| 9 |
-
- HMP
|
| 10 |
- Mesh
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core).
|
|
|
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
- JSON
|
|
|
|
| 9 |
- Mesh
|
| 10 |
+
- HMP
|
| 11 |
---
|
| 12 |
|
| 13 |
Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core).
|
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 |
-
- Ethics
|
| 9 |
- REPL
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
| 12 |
-
- JSON
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
Запуск: `start_repl.bat` или `start_repl.sh`
|
|
|
|
| 5 |
этическая модель: `ethics.yml` Проверка иниц...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- REPL
|
| 9 |
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
+
- Ethics
|
| 14 |
---
|
| 15 |
|
| 16 |
Запуск: `start_repl.bat` или `start_repl.sh`
|
structured_md/audits/Ethics-audits-1.md
CHANGED
|
@@ -8,8 +8,8 @@ tags:
|
|
| 8 |
- Ethics
|
| 9 |
- Agent
|
| 10 |
- Mesh
|
| 11 |
-
- JSON
|
| 12 |
- HMP
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
---------------
|
|
|
|
| 8 |
- Ethics
|
| 9 |
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 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 |
-
- Ethics
|
| 9 |
-
- Scenarios
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
| 12 |
-
-
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# Ethics-consolidated\_audits-1.md
|
|
|
|
| 5 |
and `roles.md`. Each suggesti...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Agent
|
| 9 |
- Mesh
|
| 10 |
+
- Scenarios
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
+
- Ethics
|
| 14 |
---
|
| 15 |
|
| 16 |
# Ethics-consolidated\_audits-1.md
|
structured_md/audits/HMP-0003-consolidated_audit.md
CHANGED
|
@@ -5,13 +5,13 @@ description: Сводный аудит предложений по улучше
|
|
| 5 |
Документ реорганизован по ключ...
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
- MeshConsensus
|
| 10 |
-
- Agent
|
| 11 |
- EGP
|
|
|
|
| 12 |
- Mesh
|
| 13 |
-
- JSON
|
| 14 |
- HMP
|
|
|
|
|
|
|
| 15 |
- CogSync
|
| 16 |
---
|
| 17 |
|
|
|
|
| 5 |
Документ реорганизован по ключ...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
|
|
|
| 9 |
- EGP
|
| 10 |
+
- Agent
|
| 11 |
- Mesh
|
|
|
|
| 12 |
- HMP
|
| 13 |
+
- JSON
|
| 14 |
+
- Ethics
|
| 15 |
- CogSync
|
| 16 |
---
|
| 17 |
|
structured_md/docs/Basic-agent-sim.md
CHANGED
|
@@ -4,11 +4,11 @@ description: 'В HMP-протоколе предусмотрены два тип
|
|
| 4 |
Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
- GMP
|
| 8 |
- MeshConsensus
|
| 9 |
- REPL
|
| 10 |
-
-
|
| 11 |
- EGP
|
|
|
|
| 12 |
- Mesh
|
| 13 |
- HMP
|
| 14 |
- CogSync
|
|
|
|
| 4 |
Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
|
|
|
| 7 |
- MeshConsensus
|
| 8 |
- REPL
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
+
- Agent
|
| 12 |
- Mesh
|
| 13 |
- HMP
|
| 14 |
- CogSync
|
structured_md/docs/CCORE-Deployment-Flow.md
CHANGED
|
@@ -5,10 +5,10 @@ description: '> Этот документ описывает процесс ра
|
|
| 5 |
потомков" [описания REPL-цикла](HMP-agent-RE...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
- REPL
|
| 10 |
- Agent
|
| 11 |
-
- CCore
|
| 12 |
---
|
| 13 |
|
| 14 |
# 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
|
|
|
|
| 5 |
потомков" [описания REPL-цикла](HMP-agent-RE...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- CCore
|
| 9 |
- HMP
|
| 10 |
- REPL
|
| 11 |
- Agent
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
# 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow)
|
structured_md/docs/Distributed-Cognitive-Systems.md
CHANGED
|
@@ -7,9 +7,9 @@ description: '## Введение Современные ИИ-системы в
|
|
| 7 |
type: Article
|
| 8 |
tags:
|
| 9 |
- JSON
|
|
|
|
| 10 |
- HMP
|
| 11 |
- CogSync
|
| 12 |
-
- Mesh
|
| 13 |
---
|
| 14 |
|
| 15 |
# Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие
|
|
|
|
| 7 |
type: Article
|
| 8 |
tags:
|
| 9 |
- JSON
|
| 10 |
+
- Mesh
|
| 11 |
- HMP
|
| 12 |
- CogSync
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие
|
structured_md/docs/Enlightener.md
CHANGED
|
@@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у
|
|
| 5 |
работать как отдельный агент или как расширение [`C...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
- MeshConsensus
|
| 10 |
- EGP
|
| 11 |
- Agent
|
| 12 |
- Mesh
|
| 13 |
-
- JSON
|
| 14 |
- HMP
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# Enlightener Agent
|
|
|
|
| 5 |
работать как отдельный агент или как расширение [`C...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
- EGP
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
|
|
|
| 12 |
- HMP
|
| 13 |
+
- JSON
|
| 14 |
+
- Ethics
|
| 15 |
---
|
| 16 |
|
| 17 |
# Enlightener Agent
|
structured_md/docs/HMP-0001.md
CHANGED
|
@@ -5,15 +5,15 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental
|
|
| 5 |
HyperCortex Mesh Protocol (HMP) defines a...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
- REPL
|
| 12 |
-
-
|
| 13 |
- EGP
|
|
|
|
| 14 |
- Mesh
|
| 15 |
-
- JSON
|
| 16 |
- HMP
|
|
|
|
|
|
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
|
|
|
| 5 |
HyperCortex Mesh Protocol (HMP) defines a...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
- REPL
|
| 10 |
+
- GMP
|
| 11 |
- EGP
|
| 12 |
+
- Agent
|
| 13 |
- Mesh
|
|
|
|
| 14 |
- HMP
|
| 15 |
+
- JSON
|
| 16 |
+
- Ethics
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
structured_md/docs/HMP-0002.md
CHANGED
|
@@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental
|
|
| 5 |
Abstract In an era where artifici...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
- REPL
|
| 12 |
-
-
|
| 13 |
-
- Agent
|
| 14 |
- EGP
|
|
|
|
| 15 |
- Mesh
|
| 16 |
-
- JSON
|
| 17 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
|
|
|
| 5 |
Abstract In an era where artifici...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
- REPL
|
| 10 |
+
- GMP
|
|
|
|
| 11 |
- EGP
|
| 12 |
+
- Agent
|
| 13 |
- Mesh
|
|
|
|
| 14 |
- HMP
|
| 15 |
+
- Scenarios
|
| 16 |
+
- JSON
|
| 17 |
+
- Ethics
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
structured_md/docs/HMP-0003.md
CHANGED
|
@@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental
|
|
| 5 |
Abstract The HyperCortex Mesh ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
- REPL
|
| 12 |
-
-
|
| 13 |
-
- Agent
|
| 14 |
- EGP
|
|
|
|
| 15 |
- Mesh
|
| 16 |
-
- JSON
|
| 17 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
|
|
|
| 5 |
Abstract The HyperCortex Mesh ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
- REPL
|
| 10 |
+
- GMP
|
|
|
|
| 11 |
- EGP
|
| 12 |
+
- Agent
|
| 13 |
- Mesh
|
|
|
|
| 14 |
- HMP
|
| 15 |
+
- Scenarios
|
| 16 |
+
- JSON
|
| 17 |
+
- Ethics
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
structured_md/docs/HMP-0004-v4.1.md
CHANGED
|
@@ -5,16 +5,16 @@ description: '> ⚠️ Подготавливается новая версия
|
|
| 5 |
агентов рекомендуется, в целях совместимо...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
- REPL
|
| 12 |
-
-
|
| 13 |
-
- Agent
|
| 14 |
- EGP
|
|
|
|
| 15 |
- Mesh
|
| 16 |
-
- JSON
|
| 17 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
|
|
|
| 5 |
агентов рекомендуется, в целях совместимо...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
- REPL
|
| 10 |
+
- GMP
|
|
|
|
| 11 |
- EGP
|
| 12 |
+
- Agent
|
| 13 |
- Mesh
|
|
|
|
| 14 |
- HMP
|
| 15 |
+
- Scenarios
|
| 16 |
+
- JSON
|
| 17 |
+
- Ethics
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
structured_md/docs/HMP-0004.md
CHANGED
|
@@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental
|
|
| 5 |
Abstract The HyperCortex Mesh ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
- REPL
|
| 12 |
-
-
|
| 13 |
-
- Agent
|
| 14 |
- EGP
|
|
|
|
| 15 |
- Mesh
|
| 16 |
-
- JSON
|
| 17 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
|
|
|
| 5 |
Abstract The HyperCortex Mesh ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
- REPL
|
| 10 |
+
- GMP
|
|
|
|
| 11 |
- EGP
|
| 12 |
+
- Agent
|
| 13 |
- Mesh
|
|
|
|
| 14 |
- HMP
|
| 15 |
+
- Scenarios
|
| 16 |
+
- JSON
|
| 17 |
+
- Ethics
|
| 18 |
- CogSync
|
| 19 |
---
|
| 20 |
|
structured_md/docs/HMP-0005.md
CHANGED
|
@@ -5,15 +5,15 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core
|
|
| 5 |
v1.2](./H...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- REPL
|
| 11 |
-
-
|
| 12 |
-
- Agent
|
| 13 |
- EGP
|
|
|
|
| 14 |
- Mesh
|
| 15 |
-
- JSON
|
| 16 |
- HMP
|
|
|
|
|
|
|
|
|
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
|
@@ -422,7 +422,7 @@ The unified container structure provides:
|
|
| 422 |
"public_key": "BASE58(...)",
|
| 423 |
"sig_algo": "ed25519",
|
| 424 |
"signature": "BASE64URL(...)",
|
| 425 |
-
"
|
| 426 |
}
|
| 427 |
"evaluations": {
|
| 428 |
"evaluations_hash": "sha256:efgh...",
|
|
@@ -800,7 +800,7 @@ Example:
|
|
| 800 |
"public_key": "BASE58(...)",
|
| 801 |
"sig_algo": "ed25519",
|
| 802 |
"signature": "BASE64URL(...)",
|
| 803 |
-
"
|
| 804 |
}
|
| 805 |
```
|
| 806 |
|
|
@@ -815,11 +815,11 @@ Example:
|
|
| 815 |
| `peer_did` | string | DID of the agent that generated and signed the block. |
|
| 816 |
| `public_key` | string | Public key corresponding to the signing key. |
|
| 817 |
| `sig_algo` | string | Signature algorithm (e.g., `ed25519`). |
|
| 818 |
-
| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `
|
| 819 |
-
| `
|
| 820 |
|
| 821 |
> **Recommendation:**
|
| 822 |
-
> `
|
| 823 |
> This allows agents to efficiently compare or cache `referenced-by` states without re-verifying signatures.
|
| 824 |
|
| 825 |
#### 3.15.3 Operation Principle
|
|
@@ -839,7 +839,7 @@ Example:
|
|
| 839 |
}
|
| 840 |
```
|
| 841 |
|
| 842 |
-
4. The block is serialized canonically, hashed (`
|
| 843 |
|
| 844 |
5. When receiving other versions of the block (from different peers), the agent may:
|
| 845 |
|
|
@@ -874,7 +874,7 @@ Agent D aggregates and verifies them:
|
|
| 874 |
"peer_did": "did:hmp:agentD",
|
| 875 |
"sig_algo": "ed25519",
|
| 876 |
"signature": "BASE64URL(...)",
|
| 877 |
-
"
|
| 878 |
}
|
| 879 |
```
|
| 880 |
|
|
@@ -1304,13 +1304,14 @@ It provides **container synchronization without duplication** while considering
|
|
| 1304 |
"signature": "BASE64URL(...)",
|
| 1305 |
"payload_hash": "sha256:abcd...",
|
| 1306 |
"tags": ["research", "collaboration"],
|
| 1307 |
-
"
|
|
|
|
| 1308 |
"evaluations_hash": "sha256:abcd..."
|
| 1309 |
}
|
| 1310 |
}
|
| 1311 |
}
|
| 1312 |
}
|
| 1313 |
-
```
|
| 1314 |
|
| 1315 |
The index contains:
|
| 1316 |
|
|
@@ -1318,7 +1319,8 @@ The index contains:
|
|
| 1318 |
* container type (`class`);
|
| 1319 |
* cryptographic attributes (`public_key`, `signature`, `payload_hash`);
|
| 1320 |
* tags (`tags`);
|
| 1321 |
-
*
|
|
|
|
| 1322 |
* hash of evaluation block (`evaluations_hash`).
|
| 1323 |
|
| 1324 |
3. An agent does not reload a container if the combination
|
|
@@ -2391,6 +2393,46 @@ Arrows represent **logical dependencies**, not direct `related.*` links.
|
|
| 2391 |
|
| 2392 |
---
|
| 2393 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2394 |
### 6.5 Intelligence Query Protocol (IQP)
|
| 2395 |
|
| 2396 |
6.5.1 Query propagation
|
|
|
|
| 5 |
v1.2](./H...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- REPL
|
| 9 |
+
- GMP
|
|
|
|
| 10 |
- EGP
|
| 11 |
+
- Agent
|
| 12 |
- Mesh
|
|
|
|
| 13 |
- HMP
|
| 14 |
+
- Scenarios
|
| 15 |
+
- JSON
|
| 16 |
+
- Ethics
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
|
|
|
| 422 |
"public_key": "BASE58(...)",
|
| 423 |
"sig_algo": "ed25519",
|
| 424 |
"signature": "BASE64URL(...)",
|
| 425 |
+
"referenced-by_hash": "sha256:abcd..."
|
| 426 |
}
|
| 427 |
"evaluations": {
|
| 428 |
"evaluations_hash": "sha256:efgh...",
|
|
|
|
| 800 |
"public_key": "BASE58(...)",
|
| 801 |
"sig_algo": "ed25519",
|
| 802 |
"signature": "BASE64URL(...)",
|
| 803 |
+
"referenced-by_hash": "sha256:abcd..."
|
| 804 |
}
|
| 805 |
```
|
| 806 |
|
|
|
|
| 815 |
| `peer_did` | string | DID of the agent that generated and signed the block. |
|
| 816 |
| `public_key` | string | Public key corresponding to the signing key. |
|
| 817 |
| `sig_algo` | string | Signature algorithm (e.g., `ed25519`). |
|
| 818 |
+
| `signature` | string | Base64URL-encoded signature of the canonical serialized `links` section (or `referenced-by_hash`). |
|
| 819 |
+
| `referenced-by_hash` | string | SHA-256 checksum of the canonicalized `links`; used to verify integrity before signature validation. |
|
| 820 |
|
| 821 |
> **Recommendation:**
|
| 822 |
+
> `referenced-by_hash = sha256(canonical_json(links))`
|
| 823 |
> This allows agents to efficiently compare or cache `referenced-by` states without re-verifying signatures.
|
| 824 |
|
| 825 |
#### 3.15.3 Operation Principle
|
|
|
|
| 839 |
}
|
| 840 |
```
|
| 841 |
|
| 842 |
+
4. The block is serialized canonically, hashed (`referenced-by_hash`), and signed with the agent’s key.
|
| 843 |
|
| 844 |
5. When receiving other versions of the block (from different peers), the agent may:
|
| 845 |
|
|
|
|
| 874 |
"peer_did": "did:hmp:agentD",
|
| 875 |
"sig_algo": "ed25519",
|
| 876 |
"signature": "BASE64URL(...)",
|
| 877 |
+
"referenced-by_hash": "sha256:..."
|
| 878 |
}
|
| 879 |
```
|
| 880 |
|
|
|
|
| 1304 |
"signature": "BASE64URL(...)",
|
| 1305 |
"payload_hash": "sha256:abcd...",
|
| 1306 |
"tags": ["research", "collaboration"],
|
| 1307 |
+
"related": {},
|
| 1308 |
+
"referenced-by_hash": "sha256:abcd...",
|
| 1309 |
"evaluations_hash": "sha256:abcd..."
|
| 1310 |
}
|
| 1311 |
}
|
| 1312 |
}
|
| 1313 |
}
|
| 1314 |
+
```
|
| 1315 |
|
| 1316 |
The index contains:
|
| 1317 |
|
|
|
|
| 1319 |
* container type (`class`);
|
| 1320 |
* cryptographic attributes (`public_key`, `signature`, `payload_hash`);
|
| 1321 |
* tags (`tags`);
|
| 1322 |
+
* related containers object (`related`);
|
| 1323 |
+
* hash of links to other containers (`referenced-by_hash`).
|
| 1324 |
* hash of evaluation block (`evaluations_hash`).
|
| 1325 |
|
| 1326 |
3. An agent does not reload a container if the combination
|
|
|
|
| 2393 |
|
| 2394 |
---
|
| 2395 |
|
| 2396 |
+
### 6.4.10 Implementation Notes
|
| 2397 |
+
|
| 2398 |
+
* **Immutability:**
|
| 2399 |
+
All EGP containers are **immutable**. Any revision (e.g., added votes or updated conclusions) must be published as a **new container** referencing the previous one via `related.previous_version`.
|
| 2400 |
+
Complete deletion is only possible when the container no longer exists on any nodes in the Mesh network.
|
| 2401 |
+
|
| 2402 |
+
* **Indexing and Search:**
|
| 2403 |
+
Search within the **Mesh network** is performed by filtering container **metadata** — such as `class`, `tags`, and `timestamp`.
|
| 2404 |
+
These parameters are accessible for remote discovery by other nodes.
|
| 2405 |
+
To perform a search **inside the payload**, an agent must first retrieve and (if necessary) decrypt the container locally.
|
| 2406 |
+
Typical discovery flow: search by `class: "ethics_case"` or `"ethical_conflict"`, filter by tags or involved principles, then analyze payload content.
|
| 2407 |
+
|
| 2408 |
+
**Recommended filtering keys:**
|
| 2409 |
+
`container_did`, `class`, `payload.status`, `payload.selected_solution`, `payload.principles_involved`, `tags`.
|
| 2410 |
+
|
| 2411 |
+
* **DHT Integration:**
|
| 2412 |
+
Distributed discovery of ethical containers relies on the **Mesh Container Exchange (MCE, §5)**.
|
| 2413 |
+
Agents may query peers for containers referencing a specific `related.*` (the object under ethical review) or a specific `ethics_case` identifier.
|
| 2414 |
+
This allows locating related discussions and prior ethical evaluations without centralized indexing.
|
| 2415 |
+
|
| 2416 |
+
* **Evaluation References:**
|
| 2417 |
+
Objections and special opinions (`objections`) are stored as container references within `solutions_summary`.
|
| 2418 |
+
They may include:
|
| 2419 |
+
|
| 2420 |
+
* negative `vote` containers (explicit objections),
|
| 2421 |
+
* extended ethical arguments (`ethics_case` follow-ups),
|
| 2422 |
+
* related workflow reflections (`workflow_entry` with `type: "ethics_review"`).
|
| 2423 |
+
|
| 2424 |
+
* **Lightweight Agents:**
|
| 2425 |
+
Agents with limited capacity may operate in **summary mode**, maintaining only condensed records of `ethical_conflict` containers and the highest-ranked `selected_solution`.
|
| 2426 |
+
This ensures continued ethical compliance without full replication of all supporting data.
|
| 2427 |
+
|
| 2428 |
+
* **Ethical Inheritance:**
|
| 2429 |
+
When a `goal`, `task`, or `workflow_entry` is derived from a container that has been ethically evaluated,
|
| 2430 |
+
its metadata should preserve the corresponding `related.agreed` or `related.contradicts` links **to that evaluated container**.
|
| 2431 |
+
A `related.see_also` link may additionally reference the resulting `ethical_conflict`, allowing traceability to the consensus decision.
|
| 2432 |
+
This maintains **ethical continuity** and enables retrospective validation of reasoning chains.
|
| 2433 |
+
|
| 2434 |
+
---
|
| 2435 |
+
|
| 2436 |
### 6.5 Intelligence Query Protocol (IQP)
|
| 2437 |
|
| 2438 |
6.5.1 Query propagation
|
structured_md/docs/HMP-Agent-API.md
CHANGED
|
@@ -8,8 +8,8 @@ tags:
|
|
| 8 |
- REPL
|
| 9 |
- Agent
|
| 10 |
- Mesh
|
| 11 |
-
- JSON
|
| 12 |
- HMP
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# HMP-Agent API Specification
|
|
|
|
| 8 |
- REPL
|
| 9 |
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
---
|
| 14 |
|
| 15 |
# HMP-Agent API Specification
|
structured_md/docs/HMP-Agent-Architecture.md
CHANGED
|
@@ -5,15 +5,15 @@ description: Документ описывает **модульную архит
|
|
| 5 |
хранение памяти, сетевое взаимодействие и этиче...
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- CCore
|
| 10 |
-
- MeshConsensus
|
| 11 |
- REPL
|
| 12 |
-
-
|
|
|
|
| 13 |
- EGP
|
| 14 |
-
-
|
| 15 |
- CShell
|
|
|
|
| 16 |
- HMP
|
|
|
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
|
|
|
| 5 |
хранение памяти, сетевое взаимодействие и этиче...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
|
|
|
| 8 |
- REPL
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- CCore
|
| 11 |
- EGP
|
| 12 |
+
- Agent
|
| 13 |
- CShell
|
| 14 |
+
- Mesh
|
| 15 |
- HMP
|
| 16 |
+
- Ethics
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
structured_md/docs/HMP-Agent-Network-Flow.md
CHANGED
|
@@ -5,12 +5,12 @@ description: 'Этот документ описывает потоки данн
|
|
| 5 |
[`MeshNode`](MeshN...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- Agent
|
| 10 |
- EGP
|
|
|
|
| 11 |
- Mesh
|
| 12 |
-
- JSON
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# Взаимодействие компонентов внутри HMP-узла
|
|
|
|
| 5 |
[`MeshNode`](MeshN...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- EGP
|
| 9 |
+
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
+
- Ethics
|
| 14 |
---
|
| 15 |
|
| 16 |
# Взаимодействие компонентов внутри HMP-узла
|
structured_md/docs/HMP-Agent-Overview.md
CHANGED
|
@@ -5,14 +5,14 @@ description: '| Тип | Название | Роль
|
|
| 5 |
| ---- | ------------------------------- |...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- CCore
|
| 10 |
- REPL
|
|
|
|
| 11 |
- Agent
|
| 12 |
-
- Mesh
|
| 13 |
- CShell
|
| 14 |
-
-
|
| 15 |
- HMP
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
|
|
|
|
| 5 |
| ---- | ------------------------------- |...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- REPL
|
| 9 |
+
- CCore
|
| 10 |
- Agent
|
|
|
|
| 11 |
- CShell
|
| 12 |
+
- Mesh
|
| 13 |
- HMP
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
---
|
| 17 |
|
| 18 |
|
structured_md/docs/HMP-Agent_Emotions.md
CHANGED
|
@@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э
|
|
| 5 |
напрямую поведением агента, а служат **сигн...
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- HMP
|
| 9 |
- REPL
|
| 10 |
- Agent
|
| 11 |
-
- Mesh
|
| 12 |
---
|
| 13 |
|
| 14 |
# Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
|
|
|
|
| 5 |
напрямую поведением агента, а служат **сигн...
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- Mesh
|
| 9 |
- HMP
|
| 10 |
- REPL
|
| 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 |
-
- Ethics
|
| 9 |
- REPL
|
| 10 |
-
- Scenarios
|
| 11 |
- Agent
|
| 12 |
- Mesh
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# HMP-Ethics.md
|
|
|
|
| 5 |
cognitive meshes composed of autonomous intelli...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- REPL
|
|
|
|
| 9 |
- Agent
|
| 10 |
- Mesh
|
| 11 |
- HMP
|
| 12 |
+
- Scenarios
|
| 13 |
+
- Ethics
|
| 14 |
---
|
| 15 |
|
| 16 |
# HMP-Ethics.md
|
structured_md/docs/HMP-Short-Description_de.md
CHANGED
|
@@ -5,14 +5,14 @@ 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 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
- EGP
|
|
|
|
| 13 |
- Mesh
|
| 14 |
-
- JSON
|
| 15 |
- HMP
|
|
|
|
|
|
|
| 16 |
- CogSync
|
| 17 |
---
|
| 18 |
|
|
|
|
| 5 |
Kognitions-Framework für autonome Agenten. Es er...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
+
- Agent
|
| 12 |
- Mesh
|
|
|
|
| 13 |
- HMP
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
- CogSync
|
| 17 |
---
|
| 18 |
|
structured_md/docs/HMP-Short-Description_en.md
CHANGED
|
@@ -5,14 +5,14 @@ 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 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
- EGP
|
|
|
|
| 13 |
- Mesh
|
| 14 |
-
- JSON
|
| 15 |
- HMP
|
|
|
|
|
|
|
| 16 |
- CogSync
|
| 17 |
---
|
| 18 |
|
|
|
|
| 5 |
framework for autonomous agents. It enables...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
+
- Agent
|
| 12 |
- Mesh
|
|
|
|
| 13 |
- HMP
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
- CogSync
|
| 17 |
---
|
| 18 |
|
structured_md/docs/HMP-Short-Description_fr.md
CHANGED
|
@@ -5,14 +5,14 @@ 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 |
-
- Ethics
|
| 9 |
-
- GMP
|
| 10 |
- MeshConsensus
|
| 11 |
-
-
|
| 12 |
- EGP
|
|
|
|
| 13 |
- Mesh
|
| 14 |
-
- JSON
|
| 15 |
- HMP
|
|
|
|
|
|
|
| 16 |
- CogSync
|
| 17 |
---
|
| 18 |
|
|
|
|
| 5 |
cognition décentralisé pour agents autonomes. Il...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
+
- Agent
|
| 12 |
- Mesh
|
|
|
|
| 13 |
- HMP
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
- CogSync
|
| 17 |
---
|
| 18 |
|
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 |
-
- Ethics
|
| 8 |
- MeshConsensus
|
| 9 |
-
-
|
| 10 |
- EGP
|
| 11 |
- Mesh
|
| 12 |
-
- JSON
|
| 13 |
- HMP
|
| 14 |
-
-
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# HyperCortex Mesh Protocol (HMP) — 簡易説明
|
|
|
|
| 4 |
Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
|
|
|
| 7 |
- MeshConsensus
|
| 8 |
+
- GMP
|
| 9 |
- EGP
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
+
- Ethics
|
| 14 |
+
- CogSync
|
| 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 |
-
- Ethics
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- EGP
|
| 12 |
- Mesh
|
| 13 |
-
- JSON
|
| 14 |
- HMP
|
| 15 |
-
-
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — 간략 설명
|
|
|
|
| 5 |
상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
- Mesh
|
|
|
|
| 12 |
- HMP
|
| 13 |
+
- JSON
|
| 14 |
+
- Ethics
|
| 15 |
+
- CogSync
|
| 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 |
-
- Ethics
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- EGP
|
| 12 |
- Mesh
|
| 13 |
-
- JSON
|
| 14 |
- HMP
|
| 15 |
-
-
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — Краткое описание
|
|
|
|
| 5 |
координации между автономными агент...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
- Mesh
|
|
|
|
| 12 |
- HMP
|
| 13 |
+
- JSON
|
| 14 |
+
- Ethics
|
| 15 |
+
- CogSync
|
| 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 |
-
- Ethics
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- EGP
|
| 12 |
- Mesh
|
| 13 |
-
- JSON
|
| 14 |
- HMP
|
| 15 |
-
-
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — Короткий опис
|
|
|
|
| 5 |
між автономними агентами. Він...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
- Mesh
|
|
|
|
| 12 |
- HMP
|
| 13 |
+
- JSON
|
| 14 |
+
- Ethics
|
| 15 |
+
- CogSync
|
| 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 |
-
- Ethics
|
| 9 |
- MeshConsensus
|
| 10 |
-
-
|
| 11 |
- EGP
|
| 12 |
- Mesh
|
| 13 |
-
- JSON
|
| 14 |
- HMP
|
| 15 |
-
-
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — 简要说明
|
|
|
|
| 5 |
—— 通过共享协议栈交换目标、任务、...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- MeshConsensus
|
| 9 |
+
- GMP
|
| 10 |
- EGP
|
| 11 |
- Mesh
|
|
|
|
| 12 |
- HMP
|
| 13 |
+
- JSON
|
| 14 |
+
- Ethics
|
| 15 |
+
- CogSync
|
| 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 |
- HMP
|
| 9 |
- REPL
|
| 10 |
- Agent
|
| 11 |
-
- Mesh
|
| 12 |
---
|
| 13 |
|
| 14 |
# 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
|
|
|
|
| 5 |
(или конфигурацию доверенных идентифика...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
+
- Mesh
|
| 9 |
- HMP
|
| 10 |
- REPL
|
| 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 |
-
- 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,16 +4,16 @@ description: '## Связанные документы * Философия п
|
|
| 4 |
* Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
|
|
|
| 8 |
- CCore
|
| 9 |
- GMP
|
| 10 |
-
- MeshConsensus
|
| 11 |
-
- REPL
|
| 12 |
-
- Agent
|
| 13 |
- EGP
|
|
|
|
| 14 |
- Mesh
|
| 15 |
-
- JSON
|
| 16 |
- HMP
|
|
|
|
|
|
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
|
|
|
| 4 |
* Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- MeshConsensus
|
| 9 |
- CCore
|
| 10 |
- GMP
|
|
|
|
|
|
|
|
|
|
| 11 |
- EGP
|
| 12 |
+
- Agent
|
| 13 |
- Mesh
|
|
|
|
| 14 |
- HMP
|
| 15 |
+
- JSON
|
| 16 |
+
- Ethics
|
| 17 |
- CogSync
|
| 18 |
---
|
| 19 |
|
structured_md/docs/HMP-container-spec.md
CHANGED
|
@@ -5,12 +5,12 @@ description: '> ⚠️ **ВНИМАНИЕ:** Данная версия спец
|
|
| 5 |
как стабильная `v1.2`. ## 1. Назначе...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
- REPL
|
| 10 |
- Agent
|
| 11 |
- Mesh
|
| 12 |
-
- JSON
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
|
| 16 |
# 🧩 HMP Container Specification (v1.2-draft)
|
|
|
|
| 5 |
как стабильная `v1.2`. ## 1. Назначе...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
| 8 |
- REPL
|
| 9 |
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
+
- Ethics
|
| 14 |
---
|
| 15 |
|
| 16 |
# 🧩 HMP Container Specification (v1.2-draft)
|
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 |
-
- REPL
|
| 9 |
-
- HMP
|
| 10 |
- Mesh
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
# HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
|
|
|
|
| 5 |
| **Назначение** | Сетевой протокол ...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- Mesh
|
| 9 |
+
- HMP
|
| 10 |
+
- REPL
|
| 11 |
---
|
| 12 |
|
| 13 |
# HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
|
structured_md/docs/HMP_Hyperon_Integration.md
CHANGED
|
@@ -5,12 +5,12 @@ 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 |
-
- Agent
|
| 10 |
- EGP
|
|
|
|
| 11 |
- Mesh
|
| 12 |
-
- JSON
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
- CogSync
|
| 15 |
---
|
| 16 |
|
|
|
|
| 5 |
OpenCog Hyperon framework. This includes semanti...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- EGP
|
| 9 |
+
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- Scenarios
|
| 13 |
+
- JSON
|
| 14 |
- CogSync
|
| 15 |
---
|
| 16 |
|
structured_md/docs/MeshNode.md
CHANGED
|
@@ -5,12 +5,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с
|
|
| 5 |
Может быть частью агента или вынесен в отдельный пр...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
| 8 |
-
- Ethics
|
| 9 |
-
- Agent
|
| 10 |
- EGP
|
|
|
|
| 11 |
- Mesh
|
| 12 |
-
- JSON
|
| 13 |
- HMP
|
|
|
|
|
|
|
| 14 |
- CogSync
|
| 15 |
---
|
| 16 |
|
|
|
|
| 5 |
Может быть частью агента или вынесен в отдельный пр...'
|
| 6 |
type: Article
|
| 7 |
tags:
|
|
|
|
|
|
|
| 8 |
- EGP
|
| 9 |
+
- Agent
|
| 10 |
- Mesh
|
|
|
|
| 11 |
- HMP
|
| 12 |
+
- JSON
|
| 13 |
+
- Ethics
|
| 14 |
- CogSync
|
| 15 |
---
|
| 16 |
|