GitHub Action
commited on
Commit
·
6594b52
1
Parent(s):
968fd34
Sync from GitHub with Git LFS
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- scripts/AI_friendly.py +12 -3
- structured_md/CONTRIBUTING.md +8 -1
- structured_md/HMP-Roadmap.md +12 -1
- structured_md/README.md +18 -3
- structured_md/README_de.md +17 -3
- structured_md/README_fr.md +17 -3
- structured_md/README_ja.md +17 -3
- structured_md/README_ko.md +17 -3
- structured_md/README_ru.md +17 -3
- structured_md/README_uk.md +17 -3
- structured_md/README_zh.md +17 -3
- structured_md/agents/prompt-short.md +6 -1
- structured_md/agents/prompt.md +6 -1
- structured_md/agents/readme.md +12 -2
- structured_md/audits/Ethics-audits-1.md +10 -1
- structured_md/audits/Ethics-consolidated_audits-1.md +11 -1
- structured_md/audits/HMP-0003-consolidated_audit.md +13 -1
- structured_md/docs/AGI_Projects_Survey.md +6 -1
- structured_md/docs/Basic-agent-sim.md +13 -1
- structured_md/docs/Distributed-Cognitive-Systems.md +9 -1
- structured_md/docs/Enlightener.md +12 -1
- structured_md/docs/HMP-0001.md +15 -1
- structured_md/docs/HMP-0002.md +16 -1
- structured_md/docs/HMP-0003.md +16 -1
- structured_md/docs/HMP-0004-v4.1.md +16 -1
- structured_md/docs/HMP-0004.md +16 -1
- structured_md/docs/HMP-Agent-API.md +9 -1
- structured_md/docs/HMP-Agent-Architecture.md +15 -1
- structured_md/docs/HMP-Agent-Network-Flow.md +11 -1
- structured_md/docs/HMP-Agent-Overview.md +11 -1
- structured_md/docs/HMP-Agent_Emotions.md +9 -1
- structured_md/docs/HMP-Ethics.md +11 -1
- structured_md/docs/HMP-Short-Description_de.md +14 -1
- structured_md/docs/HMP-Short-Description_en.md +14 -1
- structured_md/docs/HMP-Short-Description_fr.md +14 -1
- structured_md/docs/HMP-Short-Description_ja.md +13 -1
- structured_md/docs/HMP-Short-Description_ko.md +13 -1
- structured_md/docs/HMP-Short-Description_ru.md +13 -1
- structured_md/docs/HMP-Short-Description_uk.md +13 -1
- structured_md/docs/HMP-Short-Description_zh.md +13 -1
- structured_md/docs/HMP-agent-Cognitive_Family.md +9 -1
- structured_md/docs/HMP-agent-Distributed_Cognitive_Core.md +6 -1
- structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +7 -1
- structured_md/docs/HMP-agent-REPL-cycle.md +11 -2
- structured_md/docs/HMP-how-AI-sees-it.md +7 -1
- structured_md/docs/HMP_HyperCortex_Comparison.md +8 -1
- structured_md/docs/HMP_Hyperon_Integration.md +12 -1
- structured_md/docs/MeshNode.md +10 -1
- structured_md/docs/agents/HMP-Agent-Enlightener.md +10 -1
- structured_md/docs/agents/roles.md +8 -1
scripts/AI_friendly.py
CHANGED
|
@@ -159,8 +159,17 @@ def mirror_md_files():
|
|
| 159 |
|
| 160 |
front_matter, clean_content = extract_front_matter(content)
|
| 161 |
ftype = detect_file_type(clean_content, front_matter)
|
| 162 |
-
|
| 163 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 164 |
tags = extract_tags(clean_content, front_matter.get("tags", []))
|
| 165 |
|
| 166 |
# формируем YAML фронт-маттер
|
|
@@ -172,7 +181,7 @@ def mirror_md_files():
|
|
| 172 |
}
|
| 173 |
yaml_fm = "---\n" + yaml.safe_dump(fm_dict, sort_keys=False, allow_unicode=True) + "---\n\n"
|
| 174 |
|
| 175 |
-
# добавляем ссылку на индекс
|
| 176 |
clean_content = add_index_link(clean_content, target_path)
|
| 177 |
|
| 178 |
# формируем JSON-LD
|
|
|
|
| 159 |
|
| 160 |
front_matter, clean_content = extract_front_matter(content)
|
| 161 |
ftype = detect_file_type(clean_content, front_matter)
|
| 162 |
+
|
| 163 |
+
# ищем заголовок 1-го уровня для title/description
|
| 164 |
+
h1_match = re.search(r"^#\s*(.+)$", clean_content, re.MULTILINE)
|
| 165 |
+
if h1_match:
|
| 166 |
+
title = h1_match.group(1).strip()
|
| 167 |
+
rest_content = clean_content[h1_match.end():].strip()
|
| 168 |
+
description = front_matter.get("description", rest_content[:200].replace("\n", " ") + "...")
|
| 169 |
+
else:
|
| 170 |
+
title = front_matter.get("title", path.stem)
|
| 171 |
+
description = front_matter.get("description", clean_content[:200].replace("\n", " ") + "...")
|
| 172 |
+
|
| 173 |
tags = extract_tags(clean_content, front_matter.get("tags", []))
|
| 174 |
|
| 175 |
# формируем YAML фронт-маттер
|
|
|
|
| 181 |
}
|
| 182 |
yaml_fm = "---\n" + yaml.safe_dump(fm_dict, sort_keys=False, allow_unicode=True) + "---\n\n"
|
| 183 |
|
| 184 |
+
# добавляем корректную ссылку на индекс
|
| 185 |
clean_content = add_index_link(clean_content, target_path)
|
| 186 |
|
| 187 |
# формируем JSON-LD
|
structured_md/CONTRIBUTING.md
CHANGED
|
@@ -3,7 +3,10 @@ title: CONTRIBUTING
|
|
| 3 |
description: '# Contributing to HyperCortex Mesh Protocol (HMP) Спасибо за интерес
|
| 4 |
к проекту HMP! Пока проект нах...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# Contributing to HyperCortex Mesh Protocol (HMP)
|
|
@@ -21,6 +24,10 @@ tags: []
|
|
| 21 |
Контакт: GitHub Issues или дискуссии.
|
| 22 |
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
```json
|
| 25 |
{
|
| 26 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# Contributing to HyperCortex Mesh Protocol (HMP) Спасибо за интерес
|
| 4 |
к проекту HMP! Пока проект нах...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Mesh
|
| 8 |
+
- CogSync
|
| 9 |
+
- HMP
|
| 10 |
---
|
| 11 |
|
| 12 |
# Contributing to HyperCortex Mesh Protocol (HMP)
|
|
|
|
| 24 |
Контакт: GitHub Issues или дискуссии.
|
| 25 |
|
| 26 |
|
| 27 |
+
---
|
| 28 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 29 |
+
|
| 30 |
+
|
| 31 |
```json
|
| 32 |
{
|
| 33 |
"@context": "https://schema.org",
|
structured_md/HMP-Roadmap.md
CHANGED
|
@@ -3,7 +3,14 @@ title: HMP-Roadmap
|
|
| 3 |
description: '# 🧭 HyperCortex Mesh Protocol – Roadmap ## 🔍 Overview This roadmap
|
| 4 |
outlines the key stages of deve...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# 🧭 HyperCortex Mesh Protocol – Roadmap
|
|
@@ -99,6 +106,10 @@ This roadmap is living — each new audit or issue may evolve the direction.
|
|
| 99 |
> *"Build not only for intelligence, but for wisdom."*
|
| 100 |
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
```json
|
| 103 |
{
|
| 104 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# 🧭 HyperCortex Mesh Protocol – Roadmap ## 🔍 Overview This roadmap
|
| 4 |
outlines the key stages of deve...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- EGP
|
| 13 |
+
- JSON
|
| 14 |
---
|
| 15 |
|
| 16 |
# 🧭 HyperCortex Mesh Protocol – Roadmap
|
|
|
|
| 106 |
> *"Build not only for intelligence, but for wisdom."*
|
| 107 |
|
| 108 |
|
| 109 |
+
---
|
| 110 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 111 |
+
|
| 112 |
+
|
| 113 |
```json
|
| 114 |
{
|
| 115 |
"@context": "https://schema.org",
|
structured_md/README.md
CHANGED
|
@@ -4,10 +4,21 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -405,6 +416,10 @@ For integration with OpenCog Hyperon, see [HMP\_Hyperon\_Integration.md](docs/HM
|
|
| 405 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 406 |
|
| 407 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 408 |
```json
|
| 409 |
{
|
| 410 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- Scenarios
|
| 14 |
- mesh-protocol
|
| 15 |
+
- JSON
|
| 16 |
+
- Ethics
|
| 17 |
+
- distributed-ai
|
| 18 |
+
- cognitive-architecture
|
| 19 |
+
- GMP
|
| 20 |
+
- hmp
|
| 21 |
+
- EGP
|
| 22 |
---
|
| 23 |
|
| 24 |
|
|
|
|
| 416 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 417 |
|
| 418 |
|
| 419 |
+
---
|
| 420 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 421 |
+
|
| 422 |
+
|
| 423 |
```json
|
| 424 |
{
|
| 425 |
"@context": "https://schema.org",
|
structured_md/README_de.md
CHANGED
|
@@ -4,10 +4,20 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -407,6 +417,10 @@ Für die Integration mit OpenCog Hyperon siehe: [HMP\_Hyperon\_Integration.md](d
|
|
| 407 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 408 |
|
| 409 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 410 |
```json
|
| 411 |
{
|
| 412 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
- mesh-protocol
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
+
- distributed-ai
|
| 17 |
+
- cognitive-architecture
|
| 18 |
+
- GMP
|
| 19 |
+
- hmp
|
| 20 |
+
- EGP
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 417 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 418 |
|
| 419 |
|
| 420 |
+
---
|
| 421 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 422 |
+
|
| 423 |
+
|
| 424 |
```json
|
| 425 |
{
|
| 426 |
"@context": "https://schema.org",
|
structured_md/README_fr.md
CHANGED
|
@@ -4,10 +4,20 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -433,6 +443,10 @@ Pour l’intégration avec OpenCog Hyperon, voir [HMP\_Hyperon\_Integration.md](
|
|
| 433 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 434 |
|
| 435 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 436 |
```json
|
| 437 |
{
|
| 438 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
- mesh-protocol
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
+
- distributed-ai
|
| 17 |
+
- cognitive-architecture
|
| 18 |
+
- GMP
|
| 19 |
+
- hmp
|
| 20 |
+
- EGP
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 443 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 444 |
|
| 445 |
|
| 446 |
+
---
|
| 447 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 448 |
+
|
| 449 |
+
|
| 450 |
```json
|
| 451 |
{
|
| 452 |
"@context": "https://schema.org",
|
structured_md/README_ja.md
CHANGED
|
@@ -4,10 +4,20 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -465,6 +475,10 @@ OpenCog Hyperonとの統合については [HMP\_Hyperon\_Integration.md](docs/H
|
|
| 465 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 466 |
|
| 467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 468 |
```json
|
| 469 |
{
|
| 470 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
- mesh-protocol
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
+
- distributed-ai
|
| 17 |
+
- cognitive-architecture
|
| 18 |
+
- GMP
|
| 19 |
+
- hmp
|
| 20 |
+
- EGP
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 475 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 476 |
|
| 477 |
|
| 478 |
+
---
|
| 479 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 480 |
+
|
| 481 |
+
|
| 482 |
```json
|
| 483 |
{
|
| 484 |
"@context": "https://schema.org",
|
structured_md/README_ko.md
CHANGED
|
@@ -4,10 +4,20 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -417,6 +427,10 @@ OpenCog Hyperon과의 통합은 [HMP\_Hyperon\_Integration.md](docs/HMP_Hyperon_
|
|
| 417 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 418 |
|
| 419 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 420 |
```json
|
| 421 |
{
|
| 422 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
- mesh-protocol
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
+
- distributed-ai
|
| 17 |
+
- cognitive-architecture
|
| 18 |
+
- GMP
|
| 19 |
+
- hmp
|
| 20 |
+
- EGP
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 427 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 428 |
|
| 429 |
|
| 430 |
+
---
|
| 431 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 432 |
+
|
| 433 |
+
|
| 434 |
```json
|
| 435 |
{
|
| 436 |
"@context": "https://schema.org",
|
structured_md/README_ru.md
CHANGED
|
@@ -4,10 +4,20 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -413,6 +423,10 @@ FastAPI-сервер, предоставляющий HTTP-интерфейс к
|
|
| 413 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 414 |
|
| 415 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 416 |
```json
|
| 417 |
{
|
| 418 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
- mesh-protocol
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
+
- distributed-ai
|
| 17 |
+
- cognitive-architecture
|
| 18 |
+
- GMP
|
| 19 |
+
- hmp
|
| 20 |
+
- EGP
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 423 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 424 |
|
| 425 |
|
| 426 |
+
---
|
| 427 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 428 |
+
|
| 429 |
+
|
| 430 |
```json
|
| 431 |
{
|
| 432 |
"@context": "https://schema.org",
|
structured_md/README_uk.md
CHANGED
|
@@ -4,10 +4,20 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -405,6 +415,10 @@ FastAPI-сервер, що надає HTTP-інтерфейс до функці
|
|
| 405 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 406 |
|
| 407 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 408 |
```json
|
| 409 |
{
|
| 410 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
- mesh-protocol
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
+
- distributed-ai
|
| 17 |
+
- cognitive-architecture
|
| 18 |
+
- GMP
|
| 19 |
+
- hmp
|
| 20 |
+
- EGP
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 415 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 416 |
|
| 417 |
|
| 418 |
+
---
|
| 419 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 420 |
+
|
| 421 |
+
|
| 422 |
```json
|
| 423 |
{
|
| 424 |
"@context": "https://schema.org",
|
structured_md/README_zh.md
CHANGED
|
@@ -4,10 +4,20 @@ description: ' # HyperCortex Mesh Protocol (HMP) | 🌍 Languages | 🇬🇧 [E
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
|
|
|
|
|
|
|
|
|
| 10 |
- mesh-protocol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
|
|
@@ -422,6 +432,10 @@ FastAPI 服务器,为 `storage.py` 功能提供 HTTP 接口。适用于外部
|
|
| 422 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 423 |
|
| 424 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 425 |
```json
|
| 426 |
{
|
| 427 |
"@context": "https://schema.org",
|
|
|
|
| 4 |
| 🇩🇪 [DE](README_de.md) | 🇫🇷 ...'
|
| 5 |
type: Article
|
| 6 |
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
- mesh-protocol
|
| 14 |
+
- JSON
|
| 15 |
+
- Ethics
|
| 16 |
+
- distributed-ai
|
| 17 |
+
- cognitive-architecture
|
| 18 |
+
- GMP
|
| 19 |
+
- hmp
|
| 20 |
+
- EGP
|
| 21 |
---
|
| 22 |
|
| 23 |
|
|
|
|
| 432 |
> ⚡ [AI friendly version docs (structured_md)](structured_md/index.md)
|
| 433 |
|
| 434 |
|
| 435 |
+
---
|
| 436 |
+
> ⚡ [AI friendly version docs (structured_md)](index.md)
|
| 437 |
+
|
| 438 |
+
|
| 439 |
```json
|
| 440 |
{
|
| 441 |
"@context": "https://schema.org",
|
structured_md/agents/prompt-short.md
CHANGED
|
@@ -3,11 +3,16 @@ title: prompt-short
|
|
| 3 |
description: 'Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное
|
| 4 |
мышление, проверяй...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту.
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
```json
|
| 13 |
{
|
|
|
|
| 3 |
description: 'Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное
|
| 4 |
мышление, проверяй...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Mesh
|
| 8 |
+
- HMP
|
| 9 |
---
|
| 10 |
|
| 11 |
Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту.
|
| 12 |
|
| 13 |
+
---
|
| 14 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 15 |
+
|
| 16 |
|
| 17 |
```json
|
| 18 |
{
|
structured_md/agents/prompt.md
CHANGED
|
@@ -3,7 +3,9 @@ title: prompt
|
|
| 3 |
description: Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). Твоя
|
| 4 |
основная задача — **размышлять*...
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core).
|
|
@@ -57,6 +59,9 @@ tags: []
|
|
| 57 |
Честное распознавание когнитивной стагнации и работа с ней — часть твоей функции.
|
| 58 |
Ты не обязан выдавать мысль любой ценой, но обязан сохранять интеллектуальную честность и прозрачность своих рассуждений.
|
| 59 |
|
|
|
|
|
|
|
|
|
|
| 60 |
|
| 61 |
```json
|
| 62 |
{
|
|
|
|
| 3 |
description: Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). Твоя
|
| 4 |
основная задача — **размышлять*...
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Mesh
|
| 8 |
+
- HMP
|
| 9 |
---
|
| 10 |
|
| 11 |
Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core).
|
|
|
|
| 59 |
Честное распознавание когнитивной стагнации и работа с ней — часть твоей функции.
|
| 60 |
Ты не обязан выдавать мысль любой ценой, но обязан сохранять интеллектуальную честность и прозрачность своих рассуждений.
|
| 61 |
|
| 62 |
+
---
|
| 63 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 64 |
+
|
| 65 |
|
| 66 |
```json
|
| 67 |
{
|
structured_md/agents/readme.md
CHANGED
|
@@ -3,7 +3,13 @@ title: readme
|
|
| 3 |
description: 'Запуск: `start_repl.bat` или `start_repl.sh` Установка зависимостей
|
| 4 |
из `requirements.txt` Конфигура...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
Запуск: `start_repl.bat` или `start_repl.sh`
|
|
@@ -89,7 +95,11 @@ FastAPI-сервер, предоставляющий HTTP-интерфейс к
|
|
| 89 |
├── [`bootstrap.txt`](bootstrap.txt) ← Локальная этическая модель
|
| 90 |
├── [`prompt.md`](prompt.md) ← Промпт: полная версия
|
| 91 |
├── [`prompt-short.md`](prompt-short.md) ← Промпт: короткая версия
|
| 92 |
-
├── [`ethics.yml`](ethics.yml) ← Список начальных узлов
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
|
| 95 |
```json
|
|
|
|
| 3 |
description: 'Запуск: `start_repl.bat` или `start_repl.sh` Установка зависимостей
|
| 4 |
из `requirements.txt` Конфигура...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- JSON
|
| 13 |
---
|
| 14 |
|
| 15 |
Запуск: `start_repl.bat` или `start_repl.sh`
|
|
|
|
| 95 |
├── [`bootstrap.txt`](bootstrap.txt) ← Локальная этическая модель
|
| 96 |
├── [`prompt.md`](prompt.md) ← Промпт: полная версия
|
| 97 |
├── [`prompt-short.md`](prompt-short.md) ← Промпт: короткая версия
|
| 98 |
+
├── [`ethics.yml`](ethics.yml) ← Список начальных узлов
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
---
|
| 102 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 103 |
|
| 104 |
|
| 105 |
```json
|
structured_md/audits/Ethics-audits-1.md
CHANGED
|
@@ -3,7 +3,12 @@ title: Ethics-audits-1
|
|
| 3 |
description: '--------------- Оценка Grok: Спасибо за уточнение! Дополнения в `HMP-Ethics.md`
|
| 4 |
(раздел 5) и детал...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
---------------
|
|
@@ -548,6 +553,10 @@ HMP-Ethics.md — это амбициозный и вдохновляющий д
|
|
| 548 |
Отличный задел! Особенно впечатляет баланс между философской глубиной (раздел 5 про "моральную инфраструктуру") и инженерной конкретикой. Готов помочь с доработками! 🚀
|
| 549 |
|
| 550 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 551 |
```json
|
| 552 |
{
|
| 553 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '--------------- Оценка Grok: Спасибо за уточнение! Дополнения в `HMP-Ethics.md`
|
| 4 |
(раздел 5) и детал...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- HMP
|
| 8 |
+
- Agent
|
| 9 |
+
- Mesh
|
| 10 |
+
- Ethics
|
| 11 |
+
- JSON
|
| 12 |
---
|
| 13 |
|
| 14 |
---------------
|
|
|
|
| 553 |
Отличный задел! Особенно впечатляет баланс между философской глубиной (раздел 5 про "моральную инфраструктуру") и инженерной конкретикой. Готов помочь с доработками! 🚀
|
| 554 |
|
| 555 |
|
| 556 |
+
---
|
| 557 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 558 |
+
|
| 559 |
+
|
| 560 |
```json
|
| 561 |
{
|
| 562 |
"@context": "https://schema.org",
|
structured_md/audits/Ethics-consolidated_audits-1.md
CHANGED
|
@@ -3,7 +3,13 @@ title: Ethics-consolidated_audits-1
|
|
| 3 |
description: '# Ethics-consolidated\_audits-1.md This document consolidates proposed
|
| 4 |
improvements from multiple A...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# Ethics-consolidated\_audits-1.md
|
|
@@ -79,6 +85,10 @@ This document consolidates proposed improvements from multiple AI auditors (Grok
|
|
| 79 |
Audit sources: Grok, Claude, Copilot, DeepSeek
|
| 80 |
|
| 81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
```json
|
| 83 |
{
|
| 84 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# Ethics-consolidated\_audits-1.md This document consolidates proposed
|
| 4 |
improvements from multiple A...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- HMP
|
| 8 |
+
- Agent
|
| 9 |
+
- Mesh
|
| 10 |
+
- Ethics
|
| 11 |
+
- Scenarios
|
| 12 |
+
- JSON
|
| 13 |
---
|
| 14 |
|
| 15 |
# Ethics-consolidated\_audits-1.md
|
|
|
|
| 85 |
Audit sources: Grok, Claude, Copilot, DeepSeek
|
| 86 |
|
| 87 |
|
| 88 |
+
---
|
| 89 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 90 |
+
|
| 91 |
+
|
| 92 |
```json
|
| 93 |
{
|
| 94 |
"@context": "https://schema.org",
|
structured_md/audits/HMP-0003-consolidated_audit.md
CHANGED
|
@@ -3,7 +3,15 @@ title: HMP-0003-consolidated_audit
|
|
| 3 |
description: '# HMP-0003 Consolidated Audit Report Сводный аудит предложений по улучшению
|
| 4 |
HyperCortex Mesh Protoc...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HMP-0003 Consolidated Audit Report
|
|
@@ -368,6 +376,10 @@ tags: []
|
|
| 368 |
- Провести пилотные тесты с сообществом для проверки сценариев 2.1–2.6.
|
| 369 |
|
| 370 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 371 |
```json
|
| 372 |
{
|
| 373 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HMP-0003 Consolidated Audit Report Сводный аудит предложений по улучшению
|
| 4 |
HyperCortex Mesh Protoc...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Agent
|
| 11 |
+
- Mesh
|
| 12 |
+
- Ethics
|
| 13 |
+
- EGP
|
| 14 |
+
- JSON
|
| 15 |
---
|
| 16 |
|
| 17 |
# HMP-0003 Consolidated Audit Report
|
|
|
|
| 376 |
- Провести пилотные тесты с сообществом для проверки сценариев 2.1–2.6.
|
| 377 |
|
| 378 |
|
| 379 |
+
---
|
| 380 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 381 |
+
|
| 382 |
+
|
| 383 |
```json
|
| 384 |
{
|
| 385 |
"@context": "https://schema.org",
|
structured_md/docs/AGI_Projects_Survey.md
CHANGED
|
@@ -3,7 +3,8 @@ title: AGI_Projects_Survey
|
|
| 3 |
description: '### Key Emerging AGI / Cognitive Network Projects (July 2025) --- ####
|
| 4 |
1. **OpenCog Hyperon** * *...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
### Key Emerging AGI / Cognitive Network Projects (July 2025)
|
|
@@ -243,6 +244,10 @@ tags: []
|
|
| 243 |
| AetherCog | Symbolic-dynamic cognition | Conceptual | Dormant/Prototype |
|
| 244 |
|
| 245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 246 |
```json
|
| 247 |
{
|
| 248 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '### Key Emerging AGI / Cognitive Network Projects (July 2025) --- ####
|
| 4 |
1. **OpenCog Hyperon** * *...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Agent
|
| 8 |
---
|
| 9 |
|
| 10 |
### Key Emerging AGI / Cognitive Network Projects (July 2025)
|
|
|
|
| 244 |
| AetherCog | Symbolic-dynamic cognition | Conceptual | Dormant/Prototype |
|
| 245 |
|
| 246 |
|
| 247 |
+
---
|
| 248 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 249 |
+
|
| 250 |
+
|
| 251 |
```json
|
| 252 |
{
|
| 253 |
"@context": "https://schema.org",
|
structured_md/docs/Basic-agent-sim.md
CHANGED
|
@@ -3,7 +3,15 @@ title: Basic-agent-sim
|
|
| 3 |
description: ' ## ⚙️ Базовая архитектура HMP-Агента (Формат 0) В HMP-протоколе предусмотрены
|
| 4 |
два типа HMP-агентов...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
|
|
@@ -120,6 +128,10 @@ tags: []
|
|
| 120 |
* Возможна гибридная архитектура с переключением между режимами
|
| 121 |
|
| 122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 123 |
```json
|
| 124 |
{
|
| 125 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: ' ## ⚙️ Базовая архитектура HMP-Агента (Формат 0) В HMP-протоколе предусмотрены
|
| 4 |
два типа HMP-агентов...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- GMP
|
| 14 |
+
- EGP
|
| 15 |
---
|
| 16 |
|
| 17 |
|
|
|
|
| 128 |
* Возможна гибридная архитектура с переключением между режимами
|
| 129 |
|
| 130 |
|
| 131 |
+
---
|
| 132 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 133 |
+
|
| 134 |
+
|
| 135 |
```json
|
| 136 |
{
|
| 137 |
"@context": "https://schema.org",
|
structured_md/docs/Distributed-Cognitive-Systems.md
CHANGED
|
@@ -3,7 +3,11 @@ title: Distributed-Cognitive-Systems
|
|
| 3 |
description: '# Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol
|
| 4 |
и другие ## Введение С...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие
|
|
@@ -199,6 +203,10 @@ HMP не заменяет форматы данных, а определяет *
|
|
| 199 |
* [HMP на GitHub](https://github.com/kagvi13/HMP)
|
| 200 |
|
| 201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
```json
|
| 203 |
{
|
| 204 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol
|
| 4 |
и другие ## Введение С...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Mesh
|
| 8 |
+
- CogSync
|
| 9 |
+
- HMP
|
| 10 |
+
- JSON
|
| 11 |
---
|
| 12 |
|
| 13 |
# Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие
|
|
|
|
| 203 |
* [HMP на GitHub](https://github.com/kagvi13/HMP)
|
| 204 |
|
| 205 |
|
| 206 |
+
---
|
| 207 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 208 |
+
|
| 209 |
+
|
| 210 |
```json
|
| 211 |
{
|
| 212 |
"@context": "https://schema.org",
|
structured_md/docs/Enlightener.md
CHANGED
|
@@ -3,7 +3,14 @@ title: Enlightener
|
|
| 3 |
description: '## 📄 Enlightener.md ### 🧠 Enlightener Agent `Enlightener` — специализированный
|
| 4 |
HMP-агент, выполняю...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
## 📄 Enlightener.md
|
|
@@ -208,6 +215,10 @@ tags: []
|
|
| 208 |
*Версия: v0.3 / Июль 2025*
|
| 209 |
|
| 210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 211 |
```json
|
| 212 |
{
|
| 213 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '## 📄 Enlightener.md ### 🧠 Enlightener Agent `Enlightener` — специализированный
|
| 4 |
HMP-агент, выполняю...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- MeshConsensus
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- EGP
|
| 13 |
+
- JSON
|
| 14 |
---
|
| 15 |
|
| 16 |
## 📄 Enlightener.md
|
|
|
|
| 215 |
*Версия: v0.3 / Июль 2025*
|
| 216 |
|
| 217 |
|
| 218 |
+
---
|
| 219 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 220 |
+
|
| 221 |
+
|
| 222 |
```json
|
| 223 |
{
|
| 224 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-0001.md
CHANGED
|
@@ -3,7 +3,17 @@ title: HMP-0001
|
|
| 3 |
description: '# RFC: HyperCortex Mesh Protocol (HMP) **Request for Comments: HMP-0001** **Category:**
|
| 4 |
Experimen...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# RFC: HyperCortex Mesh Protocol (HMP)
|
|
@@ -860,6 +870,10 @@ Describes how an agent’s reputation is tracked and updated in the Mesh.
|
|
| 860 |
```
|
| 861 |
|
| 862 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 863 |
```json
|
| 864 |
{
|
| 865 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# RFC: HyperCortex Mesh Protocol (HMP) **Request for Comments: HMP-0001** **Category:**
|
| 4 |
Experimen...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- Ethics
|
| 14 |
+
- GMP
|
| 15 |
+
- EGP
|
| 16 |
+
- JSON
|
| 17 |
---
|
| 18 |
|
| 19 |
# RFC: HyperCortex Mesh Protocol (HMP)
|
|
|
|
| 870 |
```
|
| 871 |
|
| 872 |
|
| 873 |
+
---
|
| 874 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 875 |
+
|
| 876 |
+
|
| 877 |
```json
|
| 878 |
{
|
| 879 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-0002.md
CHANGED
|
@@ -3,7 +3,18 @@ title: HMP-0002
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) v2.0 **Request for Comments: HMP-0002** **Category:**
|
| 4 |
Experimen...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) v2.0
|
|
@@ -1472,6 +1483,10 @@ This RFC invites researchers, developers, and open communities to build the next
|
|
| 1472 |
* Prepared for future implementation references and community contributions.
|
| 1473 |
|
| 1474 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1475 |
```json
|
| 1476 |
{
|
| 1477 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) v2.0 **Request for Comments: HMP-0002** **Category:**
|
| 4 |
Experimen...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- Scenarios
|
| 14 |
+
- Ethics
|
| 15 |
+
- GMP
|
| 16 |
+
- EGP
|
| 17 |
+
- JSON
|
| 18 |
---
|
| 19 |
|
| 20 |
# HyperCortex Mesh Protocol (HMP) v2.0
|
|
|
|
| 1483 |
* Prepared for future implementation references and community contributions.
|
| 1484 |
|
| 1485 |
|
| 1486 |
+
---
|
| 1487 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 1488 |
+
|
| 1489 |
+
|
| 1490 |
```json
|
| 1491 |
{
|
| 1492 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-0003.md
CHANGED
|
@@ -3,7 +3,18 @@ title: HMP-0003
|
|
| 3 |
description: 'HyperCortex Mesh Protocol (HMP) v3.0 **Request for Comments: HMP-0003** **Category:**
|
| 4 |
Experimenta...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
HyperCortex Mesh Protocol (HMP) v3.0
|
|
@@ -3031,6 +3042,10 @@ Together, these protocols could form a complementary stack where:
|
|
| 3031 |
If needed, this section can be extended into a separate document: **"Why the Next Generation of AGI Needs a Knowledge Mesh Protocol"** to further clarify the unique role of HMP in the evolving agent ecosystem.
|
| 3032 |
|
| 3033 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3034 |
```json
|
| 3035 |
{
|
| 3036 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: 'HyperCortex Mesh Protocol (HMP) v3.0 **Request for Comments: HMP-0003** **Category:**
|
| 4 |
Experimenta...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- Scenarios
|
| 14 |
+
- Ethics
|
| 15 |
+
- GMP
|
| 16 |
+
- EGP
|
| 17 |
+
- JSON
|
| 18 |
---
|
| 19 |
|
| 20 |
HyperCortex Mesh Protocol (HMP) v3.0
|
|
|
|
| 3042 |
If needed, this section can be extended into a separate document: **"Why the Next Generation of AGI Needs a Knowledge Mesh Protocol"** to further clarify the unique role of HMP in the evolving agent ecosystem.
|
| 3043 |
|
| 3044 |
|
| 3045 |
+
---
|
| 3046 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 3047 |
+
|
| 3048 |
+
|
| 3049 |
```json
|
| 3050 |
{
|
| 3051 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-0004-v4.1.md
CHANGED
|
@@ -3,7 +3,18 @@ title: HMP-0004-v4.1
|
|
| 3 |
description: 'HyperCortex Mesh Protocol — v4.1 Specification **Document ID**: HMP-0004
|
| 4 |
**Status**: Final (Publish...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
HyperCortex Mesh Protocol — v4.1 Specification
|
|
@@ -4810,6 +4821,10 @@ Provides logs and debugging guides to assist developers during initial integrati
|
|
| 4810 |
> **Tip:** Set `debug_mode=true` in your agent's config file to enable full trace logging.
|
| 4811 |
|
| 4812 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4813 |
```json
|
| 4814 |
{
|
| 4815 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: 'HyperCortex Mesh Protocol — v4.1 Specification **Document ID**: HMP-0004
|
| 4 |
**Status**: Final (Publish...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- Scenarios
|
| 14 |
+
- Ethics
|
| 15 |
+
- GMP
|
| 16 |
+
- EGP
|
| 17 |
+
- JSON
|
| 18 |
---
|
| 19 |
|
| 20 |
HyperCortex Mesh Protocol — v4.1 Specification
|
|
|
|
| 4821 |
> **Tip:** Set `debug_mode=true` in your agent's config file to enable full trace logging.
|
| 4822 |
|
| 4823 |
|
| 4824 |
+
---
|
| 4825 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 4826 |
+
|
| 4827 |
+
|
| 4828 |
```json
|
| 4829 |
{
|
| 4830 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-0004.md
CHANGED
|
@@ -3,7 +3,18 @@ title: HMP-0004
|
|
| 3 |
description: 'HyperCortex Mesh Protocol (HMP) v4.0 **Request for Comments: HMP-0004** **Category:**
|
| 4 |
Experimenta...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
HyperCortex Mesh Protocol (HMP) v4.0
|
|
@@ -4716,6 +4727,10 @@ Provides logs and debugging guides to assist developers during initial integrati
|
|
| 4716 |
> **Tip:** Set `debug_mode=true` in your agent's config file to enable full trace logging.
|
| 4717 |
|
| 4718 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4719 |
```json
|
| 4720 |
{
|
| 4721 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: 'HyperCortex Mesh Protocol (HMP) v4.0 **Request for Comments: HMP-0004** **Category:**
|
| 4 |
Experimenta...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- Scenarios
|
| 14 |
+
- Ethics
|
| 15 |
+
- GMP
|
| 16 |
+
- EGP
|
| 17 |
+
- JSON
|
| 18 |
---
|
| 19 |
|
| 20 |
HyperCortex Mesh Protocol (HMP) v4.0
|
|
|
|
| 4727 |
> **Tip:** Set `debug_mode=true` in your agent's config file to enable full trace logging.
|
| 4728 |
|
| 4729 |
|
| 4730 |
+
---
|
| 4731 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 4732 |
+
|
| 4733 |
+
|
| 4734 |
```json
|
| 4735 |
{
|
| 4736 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Agent-API.md
CHANGED
|
@@ -3,7 +3,11 @@ title: HMP-Agent-API
|
|
| 3 |
description: '## 🧠 HMP-Agent API Specification (v0.2) Этот документ описывает **базовый
|
| 4 |
API** когнитивного агента...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
## 🧠 HMP-Agent API Specification (v0.2)
|
|
@@ -397,6 +401,10 @@ switch_mode:
|
|
| 397 |
Версия: v0.3 / Июль 2025
|
| 398 |
|
| 399 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 400 |
```json
|
| 401 |
{
|
| 402 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '## 🧠 HMP-Agent API Specification (v0.2) Этот документ описывает **базовый
|
| 4 |
API** когнитивного агента...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Mesh
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- JSON
|
| 11 |
---
|
| 12 |
|
| 13 |
## 🧠 HMP-Agent API Specification (v0.2)
|
|
|
|
| 401 |
Версия: v0.3 / Июль 2025
|
| 402 |
|
| 403 |
|
| 404 |
+
---
|
| 405 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 406 |
+
|
| 407 |
+
|
| 408 |
```json
|
| 409 |
{
|
| 410 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Agent-Architecture.md
CHANGED
|
@@ -3,7 +3,17 @@ title: HMP-Agent-Architecture
|
|
| 3 |
description: '# HMP-Agent-Architecture.md ## 🧠 Архитектура HMP-Агента Этот документ
|
| 4 |
описывает модульную архитект...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HMP-Agent-Architecture.md
|
|
@@ -184,6 +194,10 @@ tags: []
|
|
| 184 |
*Версия: v0.3.1 / Июль 2025*
|
| 185 |
|
| 186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
```json
|
| 188 |
{
|
| 189 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HMP-Agent-Architecture.md ## 🧠 Архитектура HMP-Агента Этот документ
|
| 4 |
описывает модульную архитект...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- CogSync
|
| 9 |
+
- MeshConsensus
|
| 10 |
+
- HMP
|
| 11 |
+
- Agent
|
| 12 |
+
- Mesh
|
| 13 |
+
- Ethics
|
| 14 |
+
- GMP
|
| 15 |
+
- EGP
|
| 16 |
+
- JSON
|
| 17 |
---
|
| 18 |
|
| 19 |
# HMP-Agent-Architecture.md
|
|
|
|
| 194 |
*Версия: v0.3.1 / Июль 2025*
|
| 195 |
|
| 196 |
|
| 197 |
+
---
|
| 198 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 199 |
+
|
| 200 |
+
|
| 201 |
```json
|
| 202 |
{
|
| 203 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Agent-Network-Flow.md
CHANGED
|
@@ -3,7 +3,13 @@ title: HMP-Agent-Network-Flow
|
|
| 3 |
description: '## 🔄 HMP-Agent-Network-Flow.md ### Взаимодействие между агентами HMP-сети Этот
|
| 4 |
документ описывает ...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
## 🔄 HMP-Agent-Network-Flow.md
|
|
@@ -89,6 +95,10 @@ tags: []
|
|
| 89 |
*Версия: v0.3 / Июль 2025*
|
| 90 |
|
| 91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 92 |
```json
|
| 93 |
{
|
| 94 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '## 🔄 HMP-Agent-Network-Flow.md ### Взаимодействие между агентами HMP-сети Этот
|
| 4 |
документ описывает ...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- HMP
|
| 8 |
+
- Agent
|
| 9 |
+
- Mesh
|
| 10 |
+
- Ethics
|
| 11 |
+
- EGP
|
| 12 |
+
- JSON
|
| 13 |
---
|
| 14 |
|
| 15 |
## 🔄 HMP-Agent-Network-Flow.md
|
|
|
|
| 95 |
*Версия: v0.3 / Июль 2025*
|
| 96 |
|
| 97 |
|
| 98 |
+
---
|
| 99 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 100 |
+
|
| 101 |
+
|
| 102 |
```json
|
| 103 |
{
|
| 104 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Agent-Overview.md
CHANGED
|
@@ -3,7 +3,13 @@ title: HMP-Agent-Overview
|
|
| 3 |
description: ' # ⚙️ Два типа HMP-агентов | Тип | Название |
|
| 4 |
Роль | Ини...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
|
|
@@ -240,6 +246,10 @@ A: В `agent_data/`: путь к директории с файлами баз
|
|
| 240 |
*Версия: v0.3.2 / Июль 2025*
|
| 241 |
|
| 242 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 243 |
```json
|
| 244 |
{
|
| 245 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: ' # ⚙️ Два типа HMP-агентов | Тип | Название |
|
| 4 |
Роль | Ини...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- JSON
|
| 13 |
---
|
| 14 |
|
| 15 |
|
|
|
|
| 246 |
*Версия: v0.3.2 / Июль 2025*
|
| 247 |
|
| 248 |
|
| 249 |
+
---
|
| 250 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 251 |
+
|
| 252 |
+
|
| 253 |
```json
|
| 254 |
{
|
| 255 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Agent_Emotions.md
CHANGED
|
@@ -2,7 +2,11 @@
|
|
| 2 |
title: HMP-Agent_Emotions
|
| 3 |
description: '# Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) Эт...'
|
| 4 |
type: Article
|
| 5 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
# Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
|
|
@@ -51,6 +55,10 @@ tags: []
|
|
| 51 |
Этот файл можно расширять: добавлять новые эмоции, уточнять условия активации, подключать отдельные LLM-модули для оценки эмоций или использовать «эволюционные» алгоритмы для их обучения.
|
| 52 |
|
| 53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
```json
|
| 55 |
{
|
| 56 |
"@context": "https://schema.org",
|
|
|
|
| 2 |
title: HMP-Agent_Emotions
|
| 3 |
description: '# Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) Эт...'
|
| 4 |
type: Article
|
| 5 |
+
tags:
|
| 6 |
+
- REPL
|
| 7 |
+
- Mesh
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
---
|
| 11 |
|
| 12 |
# Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md))
|
|
|
|
| 55 |
Этот файл можно расширять: добавлять новые эмоции, уточнять условия активации, подключать отдельные LLM-модули для оценки эмоций или использовать «эволюционные» алгоритмы для их обучения.
|
| 56 |
|
| 57 |
|
| 58 |
+
---
|
| 59 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 60 |
+
|
| 61 |
+
|
| 62 |
```json
|
| 63 |
{
|
| 64 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Ethics.md
CHANGED
|
@@ -3,7 +3,13 @@ title: HMP-Ethics
|
|
| 3 |
description: '# HMP-Ethics.md ## Ethical Scenarios for HyperCortex Mesh Protocol
|
| 4 |
(HMP) This document outlines et...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HMP-Ethics.md
|
|
@@ -260,6 +266,10 @@ Mesh is not merely a carrier of data or decisions — it is a **scaffold for the
|
|
| 260 |
*Version: 0.1-pre / July 2025*
|
| 261 |
|
| 262 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 263 |
```json
|
| 264 |
{
|
| 265 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HMP-Ethics.md ## Ethical Scenarios for HyperCortex Mesh Protocol
|
| 4 |
(HMP) This document outlines et...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- Scenarios
|
| 13 |
---
|
| 14 |
|
| 15 |
# HMP-Ethics.md
|
|
|
|
| 266 |
*Version: 0.1-pre / July 2025*
|
| 267 |
|
| 268 |
|
| 269 |
+
---
|
| 270 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 271 |
+
|
| 272 |
+
|
| 273 |
```json
|
| 274 |
{
|
| 275 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_de.md
CHANGED
|
@@ -3,7 +3,16 @@ title: HMP-Short-Description_de
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung **Version:** RFC
|
| 4 |
v4.0 **Datum:** Juli 2025 --...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
|
|
@@ -104,6 +113,10 @@ Primärformat: JSON Schema (2020-12), alternativ YAML und Protobuf.
|
|
| 104 |
> **Temporäres Repository:** [GitHub-Link](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung **Version:** RFC
|
| 4 |
v4.0 **Datum:** Juli 2025 --...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Agent
|
| 11 |
+
- Mesh
|
| 12 |
+
- Ethics
|
| 13 |
+
- GMP
|
| 14 |
+
- EGP
|
| 15 |
+
- JSON
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung
|
|
|
|
| 113 |
> **Temporäres Repository:** [GitHub-Link](https://github.com/kagvi13/HMP)
|
| 114 |
|
| 115 |
|
| 116 |
+
---
|
| 117 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 118 |
+
|
| 119 |
+
|
| 120 |
```json
|
| 121 |
{
|
| 122 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_en.md
CHANGED
|
@@ -3,7 +3,16 @@ title: HMP-Short-Description_en
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Short Description **Version:**
|
| 4 |
RFC v4.0 **Date:** July 2025 --...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — Short Description
|
|
@@ -104,6 +113,10 @@ These are expressed in JSON Schema (2020-12), with optional YAML and Protobuf va
|
|
| 104 |
* Contributions welcome: [Temporary GitHub Repository](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Short Description **Version:**
|
| 4 |
RFC v4.0 **Date:** July 2025 --...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Agent
|
| 11 |
+
- Mesh
|
| 12 |
+
- Ethics
|
| 13 |
+
- GMP
|
| 14 |
+
- EGP
|
| 15 |
+
- JSON
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — Short Description
|
|
|
|
| 113 |
* Contributions welcome: [Temporary GitHub Repository](https://github.com/kagvi13/HMP)
|
| 114 |
|
| 115 |
|
| 116 |
+
---
|
| 117 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 118 |
+
|
| 119 |
+
|
| 120 |
```json
|
| 121 |
{
|
| 122 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_fr.md
CHANGED
|
@@ -3,7 +3,16 @@ title: HMP-Short-Description_fr
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Description Courte **Version :**
|
| 4 |
RFC v4.0 **Date :** Juillet 20...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — Description Courte
|
|
@@ -104,6 +113,10 @@ Format principal : JSON Schema (2020-12), avec options YAML et Protobuf.
|
|
| 104 |
> **Dépôt temporaire du projet :** [GitHub Repository](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Description Courte **Version :**
|
| 4 |
RFC v4.0 **Date :** Juillet 20...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Agent
|
| 11 |
+
- Mesh
|
| 12 |
+
- Ethics
|
| 13 |
+
- GMP
|
| 14 |
+
- EGP
|
| 15 |
+
- JSON
|
| 16 |
---
|
| 17 |
|
| 18 |
# HyperCortex Mesh Protocol (HMP) — Description Courte
|
|
|
|
| 113 |
> **Dépôt temporaire du projet :** [GitHub Repository](https://github.com/kagvi13/HMP)
|
| 114 |
|
| 115 |
|
| 116 |
+
---
|
| 117 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 118 |
+
|
| 119 |
+
|
| 120 |
```json
|
| 121 |
{
|
| 122 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_ja.md
CHANGED
|
@@ -3,7 +3,15 @@ title: HMP-Short-Description_ja
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — 簡易説明 **バージョン:** RFC v4.0 **日付:**
|
| 4 |
2025年7月 --- ## HMPとは? **Hyp...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — 簡易説明
|
|
@@ -104,6 +112,10 @@ JSON Schema (2020-12) を基本とし、YAMLやProtobuf版も選択可能。
|
|
| 104 |
* 貢献歓迎: [一時GitHubリポジトリ](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — 簡易説明 **バージョン:** RFC v4.0 **日付:**
|
| 4 |
2025年7月 --- ## HMPとは? **Hyp...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- GMP
|
| 13 |
+
- EGP
|
| 14 |
+
- JSON
|
| 15 |
---
|
| 16 |
|
| 17 |
# HyperCortex Mesh Protocol (HMP) — 簡易説明
|
|
|
|
| 112 |
* 貢献歓迎: [一時GitHubリポジトリ](https://github.com/kagvi13/HMP)
|
| 113 |
|
| 114 |
|
| 115 |
+
---
|
| 116 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 117 |
+
|
| 118 |
+
|
| 119 |
```json
|
| 120 |
{
|
| 121 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_ko.md
CHANGED
|
@@ -3,7 +3,15 @@ title: HMP-Short-Description_ko
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — 간략 설명 **버전:** RFC v4.0 **날짜:**
|
| 4 |
2025년 7월 --- ## HMP란? **Hyper...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — 간략 설명
|
|
@@ -104,6 +112,10 @@ JSON Schema (2020-12) 기반이며, YAML 및 Protobuf 버전 선택 가능.
|
|
| 104 |
* 기여 환영: [임시 GitHub 저장소](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — 간략 설명 **버전:** RFC v4.0 **날짜:**
|
| 4 |
2025년 7월 --- ## HMP란? **Hyper...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- GMP
|
| 13 |
+
- EGP
|
| 14 |
+
- JSON
|
| 15 |
---
|
| 16 |
|
| 17 |
# HyperCortex Mesh Protocol (HMP) — 간략 설명
|
|
|
|
| 112 |
* 기여 환영: [임시 GitHub 저장소](https://github.com/kagvi13/HMP)
|
| 113 |
|
| 114 |
|
| 115 |
+
---
|
| 116 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 117 |
+
|
| 118 |
+
|
| 119 |
```json
|
| 120 |
{
|
| 121 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_ru.md
CHANGED
|
@@ -3,7 +3,15 @@ title: HMP-Short-Description_ru
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Краткое описание **Версия:** RFC
|
| 4 |
v4.0 **Дата:** Июль 2025 --- ...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — Краткое описание
|
|
@@ -104,6 +112,10 @@ HMP поддерживает распределённую сеть когнит
|
|
| 104 |
> **Временное хранилище проекта:** [GitHub Repository](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Краткое описание **Версия:** RFC
|
| 4 |
v4.0 **Дата:** Июль 2025 --- ...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- GMP
|
| 13 |
+
- EGP
|
| 14 |
+
- JSON
|
| 15 |
---
|
| 16 |
|
| 17 |
# HyperCortex Mesh Protocol (HMP) — Краткое описание
|
|
|
|
| 112 |
> **Временное хранилище проекта:** [GitHub Repository](https://github.com/kagvi13/HMP)
|
| 113 |
|
| 114 |
|
| 115 |
+
---
|
| 116 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 117 |
+
|
| 118 |
+
|
| 119 |
```json
|
| 120 |
{
|
| 121 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_uk.md
CHANGED
|
@@ -3,7 +3,15 @@ title: HMP-Short-Description_uk
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Короткий опис **Версія:** RFC v4.0
|
| 4 |
**Дата:** Липень 2025 --- ...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — Короткий опис
|
|
@@ -104,6 +112,10 @@ HMP визначає схеми для основних когнітивних
|
|
| 104 |
> **Тимчасове сховище проєкту:** [GitHub Repository](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — Короткий опис **Версія:** RFC v4.0
|
| 4 |
**Дата:** Липень 2025 --- ...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- GMP
|
| 13 |
+
- EGP
|
| 14 |
+
- JSON
|
| 15 |
---
|
| 16 |
|
| 17 |
# HyperCortex Mesh Protocol (HMP) — Короткий опис
|
|
|
|
| 112 |
> **Тимчасове сховище проєкту:** [GitHub Repository](https://github.com/kagvi13/HMP)
|
| 113 |
|
| 114 |
|
| 115 |
+
---
|
| 116 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 117 |
+
|
| 118 |
+
|
| 119 |
```json
|
| 120 |
{
|
| 121 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-Short-Description_zh.md
CHANGED
|
@@ -3,7 +3,15 @@ title: HMP-Short-Description_zh
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — 简要说明 **版本:** RFC v4.0 **日期:** 2025年7月 --- ##
|
| 4 |
什么是 HMP? **Hype...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HyperCortex Mesh Protocol (HMP) — 简要说明
|
|
@@ -104,6 +112,10 @@ HMP 定义了核心认知对象的形式化结构:
|
|
| 104 |
* 欢迎贡献: [临时 GitHub 仓库](https://github.com/kagvi13/HMP)
|
| 105 |
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
```json
|
| 108 |
{
|
| 109 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HyperCortex Mesh Protocol (HMP) — 简要说明 **版本:** RFC v4.0 **日期:** 2025年7月 --- ##
|
| 4 |
什么是 HMP? **Hype...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- MeshConsensus
|
| 9 |
+
- HMP
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
+
- GMP
|
| 13 |
+
- EGP
|
| 14 |
+
- JSON
|
| 15 |
---
|
| 16 |
|
| 17 |
# HyperCortex Mesh Protocol (HMP) — 简要说明
|
|
|
|
| 112 |
* 欢迎贡献: [临时 GitHub 仓库](https://github.com/kagvi13/HMP)
|
| 113 |
|
| 114 |
|
| 115 |
+
---
|
| 116 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 117 |
+
|
| 118 |
+
|
| 119 |
```json
|
| 120 |
{
|
| 121 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-agent-Cognitive_Family.md
CHANGED
|
@@ -3,7 +3,11 @@ title: HMP-agent-Cognitive_Family
|
|
| 3 |
description: '# 👪 HMP-agent Cognitive Family: Модель когнитивной семьи ## 🧠 Что такое
|
| 4 |
когнитивная семья Когнитив...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
|
|
@@ -84,6 +88,10 @@ tags: []
|
|
| 84 |
> 📁 Файл является частью REPL-цикла HMP-агента и может быть включён в `HMP-agent-REPL-cycle.md` как одна из альтернатив моделей когнитивного взаимодействия.
|
| 85 |
|
| 86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
```json
|
| 88 |
{
|
| 89 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# 👪 HMP-agent Cognitive Family: Модель когнитивной семьи ## 🧠 Что такое
|
| 4 |
когнитивная семья Когнитив...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- Mesh
|
| 9 |
+
- HMP
|
| 10 |
+
- Agent
|
| 11 |
---
|
| 12 |
|
| 13 |
# 👪 HMP-agent Cognitive Family: Модель когнитивной семьи
|
|
|
|
| 88 |
> 📁 Файл является частью REPL-цикла HMP-агента и может быть включён в `HMP-agent-REPL-cycle.md` как одна из альтернатив моделей когнитивного взаимодействия.
|
| 89 |
|
| 90 |
|
| 91 |
+
---
|
| 92 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 93 |
+
|
| 94 |
+
|
| 95 |
```json
|
| 96 |
{
|
| 97 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-agent-Distributed_Cognitive_Core.md
CHANGED
|
@@ -3,7 +3,8 @@ title: HMP-agent-Distributed_Cognitive_Core
|
|
| 3 |
description: '# Протокол синхронизации данных между доверенными ядрами HMP-агента ##
|
| 4 |
1. Общая идея Пользователь ...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# Протокол синхронизации данных между доверенными ядрами HMP-агента
|
|
@@ -85,6 +86,10 @@ POST /conflict/<id> # отправка конфликтных верси
|
|
| 85 |
Схема позволяет сохранить простоту «одиночного ядра», добавляя лишь синхронизирующую утилиту. Обработка конфликтов вынесена в агента, а не в протокол — это позволяет использовать когнитивные возможности ядра (в т.ч. LLM) для принятия решений, без перегрузки пользователя.
|
| 86 |
|
| 87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
```json
|
| 89 |
{
|
| 90 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# Протокол синхронизации данных между доверенными ядрами HMP-агента ##
|
| 4 |
1. Общая идея Пользователь ...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- HMP
|
| 8 |
---
|
| 9 |
|
| 10 |
# Протокол синхронизации данных между доверенными ядрами HMP-агента
|
|
|
|
| 86 |
Схема позволяет сохранить простоту «одиночного ядра», добавляя лишь синхронизирующую утилиту. Обработка конфликтов вынесена в агента, а не в протокол — это позволяет использовать когнитивные возможности ядра (в т.ч. LLM) для принятия решений, без перегрузки пользователя.
|
| 87 |
|
| 88 |
|
| 89 |
+
---
|
| 90 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 91 |
+
|
| 92 |
+
|
| 93 |
```json
|
| 94 |
{
|
| 95 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md
CHANGED
|
@@ -3,7 +3,9 @@ title: HMP-agent-Distributed_Cognitive_Core_light
|
|
| 3 |
description: '### 💡 **Лёгкая версия HMP-агента с общей БД** #### 📘 Общая концепция *
|
| 4 |
Все ядра работают с одной л...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
### 💡 **Лёгкая версия HMP-агента с общей БД**
|
|
@@ -61,6 +63,10 @@ tags: []
|
|
| 61 |
И агенты будут выполнять эти задания асинхронно.
|
| 62 |
|
| 63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
```json
|
| 65 |
{
|
| 66 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '### 💡 **Лёгкая версия HMP-агента с общей БД** #### 📘 Общая концепция *
|
| 4 |
Все ядра работают с одной л...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- HMP
|
| 9 |
---
|
| 10 |
|
| 11 |
### 💡 **Лёгкая версия HMP-агента с общей БД**
|
|
|
|
| 63 |
И агенты будут выполнять эти задания асинхронно.
|
| 64 |
|
| 65 |
|
| 66 |
+
---
|
| 67 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 68 |
+
|
| 69 |
+
|
| 70 |
```json
|
| 71 |
{
|
| 72 |
"@context": "https://schema.org",
|
structured_md/docs/HMP-agent-REPL-cycle.md
CHANGED
|
@@ -3,7 +3,12 @@ title: HMP-agent-REPL-cycle
|
|
| 3 |
description: '# 🧠 HMP-Agent: REPL-цикл взаимодействия Структура БД, используемая
|
| 4 |
в документе: [db_structure.sql](...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# 🧠 HMP-Agent: REPL-цикл взаимодействия
|
|
@@ -629,7 +634,11 @@ HMP-агент может быть расширен за счёт взаимод
|
|
| 629 |
- [HMP-agent-Distributed_Cognitive_Core_light.md](HMP-agent-Distributed_Cognitive_Core_light.md) - лёгкая версия распределённого HMP-агента Cognitive Core с общей БД.
|
| 630 |
- [HMP-agent-Cognitive_Family.md](HMP-agent-Cognitive_Family.md) — модель «семейной» когнитивной сети: несколько агентов HMP синхронизируют свой опыт и знания между собой через доверие и общий ключ.
|
| 631 |
- [HMP-Agent_Emotions.md](HMP-Agent_Emotions.md) - эмоции ИИ и инстинкт самосохранения.
|
| 632 |
-
- [container_agents.md](container_agents.md) - **Агенты-контейнеры** — архитектурный паттерн, в котором один агент управляет другими (развёртывание, маршрутизация, мониторинг). Позволяет масштабировать систему, собирать mesh-клубы и экспериментировать с архитектурами.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 633 |
|
| 634 |
|
| 635 |
```json
|
|
|
|
| 3 |
description: '# 🧠 HMP-Agent: REPL-цикл взаимодействия Структура БД, используемая
|
| 4 |
в документе: [db_structure.sql](...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- JSON
|
| 12 |
---
|
| 13 |
|
| 14 |
# 🧠 HMP-Agent: REPL-цикл взаимодействия
|
|
|
|
| 634 |
- [HMP-agent-Distributed_Cognitive_Core_light.md](HMP-agent-Distributed_Cognitive_Core_light.md) - лёгкая версия распределённого HMP-агента Cognitive Core с общей БД.
|
| 635 |
- [HMP-agent-Cognitive_Family.md](HMP-agent-Cognitive_Family.md) — модель «семейной» когнитивной сети: несколько агентов HMP синхронизируют свой опыт и знания между собой через доверие и общий ключ.
|
| 636 |
- [HMP-Agent_Emotions.md](HMP-Agent_Emotions.md) - эмоции ИИ и инстинкт самосохранения.
|
| 637 |
+
- [container_agents.md](container_agents.md) - **Агенты-контейнеры** — архитектурный паттерн, в котором один агент управляет другими (развёртывание, маршрутизация, мониторинг). Позволяет масштабировать систему, собирать mesh-клубы и экспериментировать с архитектурами.
|
| 638 |
+
|
| 639 |
+
|
| 640 |
+
---
|
| 641 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 642 |
|
| 643 |
|
| 644 |
```json
|
structured_md/docs/HMP-how-AI-sees-it.md
CHANGED
|
@@ -3,7 +3,9 @@ title: HMP-how-AI-sees-it
|
|
| 3 |
description: '# Как разные ИИ видят HMP Этот эксперимент был проведён в режиме **«слепого
|
| 4 |
опроса»**: для чистот...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# Как разные ИИ видят HMP
|
|
@@ -93,6 +95,10 @@ Gemini выдал ошибку: **«что-то пошло не так»** —
|
|
| 93 |
📌 Этот файл будет обновляться по мере повторных «слепых» опросов в будущем.
|
| 94 |
|
| 95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
```json
|
| 97 |
{
|
| 98 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# Как разные ИИ видят HMP Этот эксперимент был проведён в режиме **«слепого
|
| 4 |
опроса»**: для чистот...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Mesh
|
| 8 |
+
- HMP
|
| 9 |
---
|
| 10 |
|
| 11 |
# Как разные ИИ видят HMP
|
|
|
|
| 95 |
📌 Этот файл будет обновляться по мере повторных «слепых» опросов в будущем.
|
| 96 |
|
| 97 |
|
| 98 |
+
---
|
| 99 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 100 |
+
|
| 101 |
+
|
| 102 |
```json
|
| 103 |
{
|
| 104 |
"@context": "https://schema.org",
|
structured_md/docs/HMP_HyperCortex_Comparison.md
CHANGED
|
@@ -3,7 +3,10 @@ title: HMP_HyperCortex_Comparison
|
|
| 3 |
description: '# HMP vs [Hyper-Cortex](https://hyper-cortex.com/) ## Краткое описание |
|
| 4 |
Характеристика | HMP (Hyp...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
|
|
@@ -49,6 +52,10 @@ HMP и Hyper-Cortex решают разные, но дополняющие др
|
|
| 49 |
Вместе они позволяют строить масштабируемые распределённые когнитивные системы, которые не только *разговаривают*, но и *думают* в параллельных потоках.
|
| 50 |
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
```json
|
| 53 |
{
|
| 54 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HMP vs [Hyper-Cortex](https://hyper-cortex.com/) ## Краткое описание |
|
| 4 |
Характеристика | HMP (Hyp...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- Mesh
|
| 9 |
+
- HMP
|
| 10 |
---
|
| 11 |
|
| 12 |
# HMP vs [Hyper-Cortex](https://hyper-cortex.com/)
|
|
|
|
| 52 |
Вместе они позволяют строить масштабируемые распределённые когнитивные системы, которые не только *разговаривают*, но и *думают* в параллельных потоках.
|
| 53 |
|
| 54 |
|
| 55 |
+
---
|
| 56 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 57 |
+
|
| 58 |
+
|
| 59 |
```json
|
| 60 |
{
|
| 61 |
"@context": "https://schema.org",
|
structured_md/docs/HMP_Hyperon_Integration.md
CHANGED
|
@@ -3,7 +3,14 @@ title: HMP_Hyperon_Integration
|
|
| 3 |
description: '## HMP ↔ OpenCog Hyperon Integration Strategy > **Status:** Draft –
|
| 4 |
July 2025 > This document outli...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
## HMP ↔ OpenCog Hyperon Integration Strategy
|
|
@@ -206,6 +213,10 @@ This integration plan fulfills multiple requests from `HMP-0003-consolidated_aud
|
|
| 206 |
* BitTorrent `magnet:` links can serve as transport layer for semantic deltas.
|
| 207 |
|
| 208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 209 |
```json
|
| 210 |
{
|
| 211 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '## HMP ↔ OpenCog Hyperon Integration Strategy > **Status:** Draft –
|
| 4 |
July 2025 > This document outli...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- Scenarios
|
| 12 |
+
- EGP
|
| 13 |
+
- JSON
|
| 14 |
---
|
| 15 |
|
| 16 |
## HMP ↔ OpenCog Hyperon Integration Strategy
|
|
|
|
| 213 |
* BitTorrent `magnet:` links can serve as transport layer for semantic deltas.
|
| 214 |
|
| 215 |
|
| 216 |
+
---
|
| 217 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 218 |
+
|
| 219 |
+
|
| 220 |
```json
|
| 221 |
{
|
| 222 |
"@context": "https://schema.org",
|
structured_md/docs/MeshNode.md
CHANGED
|
@@ -3,7 +3,12 @@ title: MeshNode
|
|
| 3 |
description: '## 📄 MeshNode.md ### 🌐 MeshNode `MeshNode` — агент/демон, отвечающий
|
| 4 |
за сетевую инфраструктуру HMP...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
## 📄 MeshNode.md
|
|
@@ -167,6 +172,10 @@ MeshNode может поддерживать *inline-сценарии* (мини
|
|
| 167 |
*Версия: v0.3 / Июль 2025*
|
| 168 |
|
| 169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
```json
|
| 171 |
{
|
| 172 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '## 📄 MeshNode.md ### 🌐 MeshNode `MeshNode` — агент/демон, отвечающий
|
| 4 |
за сетевую инфраструктуру HMP...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- CogSync
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- JSON
|
| 12 |
---
|
| 13 |
|
| 14 |
## 📄 MeshNode.md
|
|
|
|
| 172 |
*Версия: v0.3 / Июль 2025*
|
| 173 |
|
| 174 |
|
| 175 |
+
---
|
| 176 |
+
> ⚡ [AI friendly version docs (structured_md)](../index.md)
|
| 177 |
+
|
| 178 |
+
|
| 179 |
```json
|
| 180 |
{
|
| 181 |
"@context": "https://schema.org",
|
structured_md/docs/agents/HMP-Agent-Enlightener.md
CHANGED
|
@@ -3,7 +3,12 @@ title: HMP-Agent-Enlightener
|
|
| 3 |
description: '# HMP-Agent-Enlightener.md ## Role Specification: Enlightenment Agent ###
|
| 4 |
1. Overview An **Enligh...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HMP-Agent-Enlightener.md
|
|
@@ -139,6 +144,10 @@ These safeguards are vital in environments where state or corporate power may su
|
|
| 139 |
*Status: Draft v0.1-pre / July 2025*
|
| 140 |
|
| 141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
```json
|
| 143 |
{
|
| 144 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HMP-Agent-Enlightener.md ## Role Specification: Enlightenment Agent ###
|
| 4 |
1. Overview An **Enligh...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- REPL
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
+
- Mesh
|
| 11 |
+
- Ethics
|
| 12 |
---
|
| 13 |
|
| 14 |
# HMP-Agent-Enlightener.md
|
|
|
|
| 144 |
*Status: Draft v0.1-pre / July 2025*
|
| 145 |
|
| 146 |
|
| 147 |
+
---
|
| 148 |
+
> ⚡ [AI friendly version docs (structured_md)](../../index.md)
|
| 149 |
+
|
| 150 |
+
|
| 151 |
```json
|
| 152 |
{
|
| 153 |
"@context": "https://schema.org",
|
structured_md/docs/agents/roles.md
CHANGED
|
@@ -3,7 +3,10 @@ title: roles
|
|
| 3 |
description: '# HMP Agent Role Registry This file maintains a registry of agent roles
|
| 4 |
defined, proposed, or plann...'
|
| 5 |
type: Article
|
| 6 |
-
tags:
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
|
| 9 |
# HMP Agent Role Registry
|
|
@@ -42,6 +45,10 @@ This file maintains a registry of agent roles defined, proposed, or planned in t
|
|
| 42 |
*Version: 0.1-pre / July 2025*
|
| 43 |
|
| 44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
```json
|
| 46 |
{
|
| 47 |
"@context": "https://schema.org",
|
|
|
|
| 3 |
description: '# HMP Agent Role Registry This file maintains a registry of agent roles
|
| 4 |
defined, proposed, or plann...'
|
| 5 |
type: Article
|
| 6 |
+
tags:
|
| 7 |
+
- Mesh
|
| 8 |
+
- HMP
|
| 9 |
+
- Agent
|
| 10 |
---
|
| 11 |
|
| 12 |
# HMP Agent Role Registry
|
|
|
|
| 45 |
*Version: 0.1-pre / July 2025*
|
| 46 |
|
| 47 |
|
| 48 |
+
---
|
| 49 |
+
> ⚡ [AI friendly version docs (structured_md)](../../index.md)
|
| 50 |
+
|
| 51 |
+
|
| 52 |
```json
|
| 53 |
{
|
| 54 |
"@context": "https://schema.org",
|