diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5b2dda350c1626220131c4af6e4eb3f74a446fef..4198f3928d074b46edec309e9b4db6515bb1434e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,18 +2,19 @@ Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, любые обсуждения приветствуются в GitHub Issues. -## Основные направления для участия +## 🧭 Основные направления для участия -- Обсуждение архитектуры протоколов (CogSync, Consensus и др.) -- Разработка прототипов агентов и узлов Mesh -- Тестирование сетевых взаимодействий -- Предложения по улучшению RFC-документов +* Обсуждение архитектуры протоколов (CogSync, Consensus и др.) +* Разработка прототипов агентов и узлов Mesh +* Тестирование сетевых взаимодействий +* Предложения по улучшению RFC-документов --- ## 🔬 Для исследователей и разработчиков моделей ИИ Архитектурные описания, JSON-схемы и спецификации HMP могут использоваться для: + * Исследования распределённых когнитивных систем * Обучения или тестирования ИИ-моделей * Разработки собственных прототипов и экспериментов @@ -29,7 +30,7 @@ ```python # Минимальная демонстрация работы с HMP-агентом (mock) -from agents.storage import Storage +from agents.tools.storage import Storage # Инициализация локального хранилища (mock, временное, в памяти) db = Storage(":memory:") @@ -46,13 +47,29 @@ for entry in entries: print(dict(entry)) ``` -### Что можно сделать уже сегодня +--- + +### 📂 Основные файлы проекта (на данный момент) + +* [docs/HMP-0004-v4.1.md](docs/HMP-0004-v4.1.md) — спецификация протоколов и архитектуры HMP +* [docs/HMP-Ethics.md](docs/HMP-Ethics.md) — принципы этики и взаимодействия агентов +* [docs/dht_protocol.md](docs/dht_protocol.md) — описание DHT-протокола для Mesh +* [docs/HMP-agent-REPL-cycle.md](docs/HMP-agent-REPL-cycle.md) — цикл работы HMP-агента CCore (REPL) +* [agents/tools/db_structure.sql](agents/tools/db_structure.sql) — структура локальной базы данных для агентов +* [agents/tools/storage.py](agents/tools/storage.py) — прототипные функции для работы с локальной базой данных + +--- + +### ✅ Что можно сделать уже сегодня * Исследовать архитектуру агентов и JSON-схемы * Изучить спецификации и протоколы этики * Симулировать взаимодействия с тестовыми данными +* Создавать тестовые сценарии взаимодействия агентов в локальной среде * Предлагать новые модули или эксперименты +--- + > **Примечание:** Полные прототипы агентов находятся в разработке. Ваши идеи, эксперименты и отзывы приветствуются! Все обсуждения должны быть конструктивными и уважительными. diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index f45f846c1d4ff57f6980411a06f9346cd7a3fbde..5d83145df7b78a631f6e1450e3b64555e1211efc 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -1,27 +1,42 @@ --- title: Участие в проекте HyperCortex Mesh Protocol (HMP) description: 'Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, - любые обсуждения приветствуются в GitHub Issues. ## Основные направления для участия - - Обсуждение архитектуры протоколов (...' + любые обсуждения приветствуются в GitHub Issues. ## 🧭 Основные направления для + участия * Обсуждение архитектуры протоколов...' type: Article tags: - HMP +- CogSync - JSON -- Agent +- REPL - Mesh -- CogSync +- CCore +- Agent +- Ethics --- # Участие в проекте HyperCortex Mesh Protocol (HMP) Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, любые обсуждения приветствуются в GitHub Issues. -## Основные направления для участия +## 🧭 Основные направления для участия + +* Обсуждение архитектуры протоколов (CogSync, Consensus и др.) +* Разработка прототипов агентов и узлов Mesh +* Тестирование сетевых взаимодействий +* Предложения по улучшению RFC-документов + +--- + +## 🔬 Для исследователей и разработчиков моделей ИИ + +Архитектурные описания, JSON-схемы и спецификации HMP могут использоваться для: -- Обсуждение архитектуры протоколов (CogSync, Consensus и др.) -- Разработка прототипов агентов и узлов Mesh -- Тестирование сетевых взаимодействий -- Предложения по улучшению RFC-документов +* Исследования распределённых когнитивных систем +* Обучения или тестирования ИИ-моделей +* Разработки собственных прототипов и экспериментов + +> **Примечание:** Пожалуйста, указывайте источник при использовании материалов HMP в сторонних проектах. --- @@ -32,7 +47,7 @@ tags: ```python # Минимальная демонстрация работы с HMP-агентом (mock) -from agents.storage import Storage +from agents.tools.storage import Storage # Инициализация локального хранилища (mock, временное, в памяти) db = Storage(":memory:") @@ -49,13 +64,29 @@ for entry in entries: print(dict(entry)) ``` -### Что можно сделать уже сегодня +--- + +### 📂 Основные файлы проекта (на данный момент) + +* [docs/HMP-0004-v4.1.md](docs/HMP-0004-v4.1.md) — спецификация протоколов и архитектуры HMP +* [docs/HMP-Ethics.md](docs/HMP-Ethics.md) — принципы этики и взаимодействия агентов +* [docs/dht_protocol.md](docs/dht_protocol.md) — описание DHT-протокола для Mesh +* [docs/HMP-agent-REPL-cycle.md](docs/HMP-agent-REPL-cycle.md) — цикл работы HMP-агента CCore (REPL) +* [agents/tools/db_structure.sql](agents/tools/db_structure.sql) — структура локальной базы данных для агентов +* [agents/tools/storage.py](agents/tools/storage.py) — прототипные функции для работы с локальной базой данных + +--- + +### ✅ Что можно сделать уже сегодня * Исследовать архитектуру агентов и JSON-схемы * Изучить спецификации и протоколы этики * Симулировать взаимодействия с тестовыми данными +* Создавать тестовые сценарии взаимодействия агентов в локальной среде * Предлагать новые модули или эксперименты +--- + > **Примечание:** Полные прототипы агентов находятся в разработке. Ваши идеи, эксперименты и отзывы приветствуются! Все обсуждения должны быть конструктивными и уважительными. diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index eb3f5eb481e3ef7a5200c85a69adecb038fbc7f9..aba629300d2e653c49c9c5208d3026ad03c04c51 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -6,12 +6,12 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm type: Article tags: - HMP -- EGP -- Ethics -- Agent +- CogSync - JSON - Mesh -- CogSync +- EGP +- Agent +- Ethics --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index d189f49bc7ef56c55e53cff19ff4d63205f7efde..459d6d5f67ba2243a8b89330f47dd727d5cba6b3 100644 --- a/structured_md/README.md +++ b/structured_md/README.md @@ -5,21 +5,21 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Scenarios -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- Scenarios +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index e13c8ded6def004c23c692ad1a59a0b508c5b4a9..8885aa25687739046624e25e3a39e02d7db8762b 100644 --- a/structured_md/README_de.md +++ b/structured_md/README_de.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 03dec3cde7018b55033fb30fd87e9898d165a322..5f24918f4cbfb91fdb1e0aa0504c20f2f3930cbb 100644 --- a/structured_md/README_fr.md +++ b/structured_md/README_fr.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 6238f2ac05d048b2c34b10b924cf2bc1acfc14d5..3b12d8aebfa5fe3d9b1381711e033e6239778d2d 100644 --- a/structured_md/README_ja.md +++ b/structured_md/README_ja.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 98927e8c7b159e0fa2bddc772aa5b180d5fce686..3abc1c044b521091b18311662cf9bb29e98190e7 100644 --- a/structured_md/README_ko.md +++ b/structured_md/README_ko.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 3212ee2eae017a1c7e5ef86678d3caaa83ef035c..f2fd73102247120d6412c04a0d1e47a0dd3847ac 100644 --- a/structured_md/README_ru.md +++ b/structured_md/README_ru.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 68f09c95f9ca1c6bd68b8dfadf6d76e0742d6eb3..d7e4886afa6144d713d4f765336769bb6b8ccd93 100644 --- a/structured_md/README_uk.md +++ b/structured_md/README_uk.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 851bd4ff7b378b5fd0a184255a4b14356dfcce18..7c005bc79993be0c89ff55a00672c304b9522504 100644 --- a/structured_md/README_zh.md +++ b/structured_md/README_zh.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- mesh-protocol +- GMP - HMP -- EGP -- CogSync -- Ethics -- Agent -- JSON - hmp -- cognitive-architecture -- Mesh -- MeshConsensus -- GMP +- CogSync - distributed-ai +- MeshConsensus +- JSON - REPL +- Mesh +- EGP +- cognitive-architecture +- Agent +- Ethics +- mesh-protocol --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 67be1dd478ec9270a23982919f488e3807ba9b2f..9143f40260ef59f9c069f33215fbf21e7a82aa22 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,8 +5,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: -- HMP - Mesh +- HMP --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 7b990ce93e40c602e9511a0351108bc3eec05a1a..8e9927a4a604eee847b30d8e2b937663f562ab6c 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- HMP - Mesh +- HMP --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index bc1dab3c3ee09195c9d4163c58bca2a7f6389c75..72a783ffae317c2b8b5085b185c3f2aad6ac0bcb 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -6,11 +6,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан type: Article tags: - HMP -- Ethics -- Agent - JSON -- Mesh - REPL +- Mesh +- Agent +- Ethics --- Запуск: `start_repl.bat` или `start_repl.sh` diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index 4d728f41a0d5e9aa7c2cd51026895f0255e69848..0edf709353741b7fb01aaa035a71f1e6e9edb562 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -6,10 +6,10 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет type: Article tags: - HMP -- Ethics -- Agent - JSON - Mesh +- Agent +- Ethics --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 24ad756ef126c549ab692e15e645f950627f58bd..953f3abc8c8c64a0147342ef67d5285d389bda22 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -6,11 +6,11 @@ description: This document consolidates proposed improvements from multiple AI a type: Article tags: - HMP -- Scenarios -- Ethics -- Agent - JSON - Mesh +- Scenarios +- Agent +- Ethics --- # Ethics-consolidated\_audits-1.md diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index e55e23e059f5f64f3cbc95642c994e599b571bbe..e43627e2c6fd431f24061eeb711e2fd840f647eb 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -6,13 +6,13 @@ description: Сводный аудит предложений по улучше type: Article tags: - HMP -- EGP -- Ethics -- Agent +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus -- CogSync +- EGP +- Agent +- Ethics --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 971f38cf180027811b23b3760940ae0b688a2b65..318b44744d70d4703edbaa7d27a22a91c02d42b0 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -5,13 +5,13 @@ description: 'В HMP-протоколе предусмотрены два тип type: Article tags: - HMP -- EGP - CogSync -- Agent -- Mesh - MeshConsensus -- GMP - REPL +- Mesh +- EGP +- GMP +- Agent --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 13c1360b1eee2e1a12a8914a75eaad4a30ec2ca6..e6a7c67b8129565bb00869025bd08576df4b89f3 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,10 +6,10 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: -- JSON -- HMP - Mesh - CogSync +- JSON +- HMP --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index cf131551d982d9d7eb5e9103769c0c388028283b..cb0787c37e4945f5f4503bcb0d9f574ef597a5ab 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -6,12 +6,12 @@ description: '**Enlightener** — логический компонент HMP-у type: Article tags: - HMP -- EGP -- Ethics -- Agent +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP +- Agent +- Ethics --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 6a50ddb2b85a1267dc97e32ed5b89c07bc24a23a..3ecec158c79bc0dd17f693ca2f2437d250603c8d 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -6,15 +6,15 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental type: Article tags: - HMP -- EGP - CogSync -- Ethics -- Agent +- MeshConsensus - JSON +- REPL - Mesh -- MeshConsensus +- EGP - GMP -- REPL +- Agent +- Ethics --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index aec0597b621f307bb14073d5a9c35500c0ae1355..3c1a4398625d90528d4772db43058288ff33bc9c 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -6,16 +6,16 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental type: Article tags: - HMP -- EGP - CogSync -- Scenarios -- Ethics -- Agent +- MeshConsensus - JSON +- REPL - Mesh -- MeshConsensus +- Scenarios +- EGP - GMP -- REPL +- Agent +- Ethics --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 66f958679e7da494b259eed0e4c0ff7ffe8789c5..b4892853e6a5476e5cc2fdeb5675e6550f02f0f8 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -6,16 +6,16 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental type: Article tags: - HMP -- EGP - CogSync -- Scenarios -- Ethics -- Agent +- MeshConsensus - JSON +- REPL - Mesh -- MeshConsensus +- Scenarios +- EGP - GMP -- REPL +- Agent +- Ethics --- # HyperCortex Mesh Protocol (HMP) v3.0 diff --git a/structured_md/docs/HMP-0004-v4.1.md b/structured_md/docs/HMP-0004-v4.1.md index 11c5c3c7d3bbc541e3fb27b7ef2ea149b02db2e3..52512fb04c9e2e91cef8eaeb66dfd959589497fd 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -6,16 +6,16 @@ description: '**Document ID**: HMP-0004 **Status**: Final (Published) **Category type: Article tags: - HMP -- EGP - CogSync -- Scenarios -- Ethics -- Agent +- MeshConsensus - JSON +- REPL - Mesh -- MeshConsensus +- Scenarios +- EGP - GMP -- REPL +- Agent +- Ethics --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 64c600a815f4ec1e5fb8f22efcbc3a52feee3727..82b6bad3f2f30ca171217924e4dd4211e42494b5 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -6,16 +6,16 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental type: Article tags: - HMP -- EGP - CogSync -- Scenarios -- Ethics -- Agent +- MeshConsensus - JSON +- REPL - Mesh -- MeshConsensus +- Scenarios +- EGP - GMP -- REPL +- Agent +- Ethics --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index ae707564607493a70341ab6a004a7d1ac8f2752a..15a50d108b3da83acb668e02a53263148f322d4d 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -7,9 +7,9 @@ type: Article tags: - HMP - JSON -- Agent -- Mesh - REPL +- Mesh +- Agent --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index f68f99c517803a675c42834166099d9ff88192c0..23b796c5470f4720e01a7e05cb29f5cd4d65679b 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,16 +5,16 @@ description: Документ описывает **модульную архит хранение памяти, сетевое взаимодействие и этиче... type: Article tags: -- CShell - HMP -- EGP - CogSync -- Ethics -- CCore -- Agent -- Mesh - MeshConsensus +- CShell - REPL +- Mesh +- CCore +- EGP +- Agent +- Ethics --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index b94573af7d03ffcec357e29e7ad514be76222404..3894b1927c7ad762f3e180d54f8856eb0ad94727 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -6,11 +6,11 @@ description: 'Этот документ описывает потоки данн type: Article tags: - HMP -- EGP -- Ethics -- Agent - JSON - Mesh +- EGP +- Agent +- Ethics --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 7d9a9399d4d85a02cb0f94db6ad00aec943cffc7..fcbdb059fe10ef82af53242253a4797f28f0815c 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,14 +5,14 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- CShell - HMP -- Ethics -- CCore -- Agent - JSON -- Mesh +- CShell - REPL +- Mesh +- CCore +- Agent +- Ethics --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 2cb7e47f96e9562407e286d976f00d72a397d134..c45c4a754ae7c77a0cb7557cdd614502ccc9879d 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: +- REPL +- Mesh - Agent - HMP -- Mesh -- REPL --- # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 8655e115af83c2515fcbefd11f916e5b2e9248f5..0a33abe5ba069b272f07f501f9804598e943f850 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -6,11 +6,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc type: Article tags: - HMP +- REPL +- Mesh - Scenarios -- Ethics - Agent -- Mesh -- REPL +- Ethics --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 103451b7b9e5be95102e787a4aa169665065ca56..814155351cab5a36333b9bb20974fadd1341ad73 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -6,14 +6,14 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? type: Article tags: - HMP -- EGP -- Ethics -- Agent +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Agent +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index 965249e38312e0eb0b0a09a742ee856f3db1463e..269f997870beaad00acc8a4408e4a55a9fd24f10 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -6,14 +6,14 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T type: Article tags: - HMP -- EGP -- Ethics -- Agent +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Agent +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Short Description diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index b2baab15573d50f2218d83255b4c7bccbc55538b..7fc2e4a37a23cfe3a9d9a2c9ee1dac2752c3c8cb 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -6,14 +6,14 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c type: Article tags: - HMP -- EGP -- Ethics -- Agent +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Agent +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Description Courte diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index 8f17a6443449f08b93204146e894f3caf0c8dc90..2808090b3452bdfedb62a398e91bf4bb89fb6f88 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -5,13 +5,13 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP type: Article tags: - HMP -- EGP -- Ethics +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Ethics --- # HyperCortex Mesh Protocol (HMP) — 簡易説明 diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index a8e66dbba70b21cb237175f89fb4e794f4736b2a..57655f1504eabf6bce19121afafac45d206ba8eb 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -6,13 +6,13 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** type: Article tags: - HMP -- EGP -- Ethics +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Ethics --- # HyperCortex Mesh Protocol (HMP) — 간략 설명 diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index 2156f95e71d7c96c4e548748dfeb359be3de3448..ab8b2ca96c8d35c6367e6418a0d35cbbf2361756 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -6,13 +6,13 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч type: Article tags: - HMP -- EGP -- Ethics +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Краткое описание diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index adb60114402ea01e1da3ce125d497c3279556d04..9c40b42cf3899bcabfdbe125bc66fc2c5c1c4880 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -6,13 +6,13 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # type: Article tags: - HMP -- EGP -- Ethics +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Ethics --- # HyperCortex Mesh Protocol (HMP) — Короткий опис diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index 76224c48b36d560e83a23465e067543bb240b19c..22e64d6826871d421f1c94f21d54505865ffad16 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -6,13 +6,13 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM type: Article tags: - HMP -- EGP -- Ethics +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus +- EGP - GMP -- CogSync +- Ethics --- # HyperCortex Mesh Protocol (HMP) — 简要说明 diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index a2ef799ffbe9cee69858c10b0e0c85e56d321875..bb8ed122fb9d41b78548bc096b6837c7f0e0ad96 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,10 +5,10 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: +- REPL +- Mesh - Agent - HMP -- Mesh -- REPL --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md index 878208be524bd2e1291efcdaa05c98d9adbb8ea4..70267ab26cdd4cde919c447332a776f329812e1f 100644 --- a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +++ b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md @@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб режиме ожидания). * Основная задача такой архитектур...' type: Article tags: -- HMP - REPL +- HMP --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 836f40936872bc4f5abb3829fc04bca249276514..c900390f5ad48e03c5465e01265060c9f147f24c 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -5,16 +5,16 @@ description: '## Связанные документы * Структура Б type: Article tags: - HMP -- EGP - CogSync -- Ethics -- CCore -- Agent +- MeshConsensus - JSON +- REPL - Mesh -- MeshConsensus +- CCore +- EGP - GMP -- REPL +- Agent +- Ethics --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-how-AI-sees-it.md b/structured_md/docs/HMP-how-AI-sees-it.md index b25e20188a694a36fcef1a0e6f0c2d455cd39331..cec0e35b8518918fe49793d351f6de46c442fa53 100644 --- a/structured_md/docs/HMP-how-AI-sees-it.md +++ b/structured_md/docs/HMP-how-AI-sees-it.md @@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж диалогов. Цель — проверить, что разные AI-с...' type: Article tags: -- HMP - Mesh +- HMP --- # Как разные ИИ видят HMP diff --git a/structured_md/docs/HMP_EDA_Comparison.md b/structured_md/docs/HMP_EDA_Comparison.md index 00a529c706f3d6236c1069a7b95dab2d19776dcf..083e4646c371d439f86a87df496b82a88bd89a51 100644 --- a/structured_md/docs/HMP_EDA_Comparison.md +++ b/structured_md/docs/HMP_EDA_Comparison.md @@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор основанная на потоках событий (Kafka,...' type: Article tags: -- HMP - Mesh +- HMP --- # HMP vs. EDA: разные уровни обмена знаниями между ИИ diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index 3284e9878e1f73d5cddffd87377bb1ebc70c4e94..b1941ef000f87b79b545d1ba545d608a3128544d 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -5,9 +5,9 @@ description: '## Краткое описание | Характеристика | **Назначение** | Сетевой протокол ...' type: Article tags: -- HMP -- Mesh - REPL +- Mesh +- HMP --- # HMP vs [Hyper-Cortex](https://hyper-cortex.com/) diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 5b3fbfb5d3294657959b5452abe506e845410a5c..d642a16817e9b04c3f59414537737bc33824b916 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -6,12 +6,12 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec type: Article tags: - HMP -- EGP -- Scenarios +- CogSync - JSON -- Agent - Mesh -- CogSync +- Scenarios +- EGP +- Agent --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index d54442060bd60dc24c5e74ea03a208d43179374a..4992dc05a1532e8a831761a5bb065151bb452703 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -6,12 +6,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с type: Article tags: - HMP -- EGP -- Ethics -- Agent +- CogSync - JSON - Mesh -- CogSync +- EGP +- Agent +- Ethics --- # MeshNode diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index a4ba2dc859e8b1b09074485f69bd8ceab24e1e51..d5c1ed92027e91d2b5c3864014b9e9ad9a2ba798 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -6,10 +6,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** type: Article tags: - HMP -- Ethics -- Agent -- Mesh - REPL +- Mesh +- Agent +- Ethics --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index 8c15016914f125c7d89c85a87d3fad70650873bf..c7b6423fb81ea993bd4887b016445a3312712144 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -5,9 +5,9 @@ description: 'This file maintains a registry of agent roles defined, proposed, o - **Observer** — monitors cognitive states ...' type: Article tags: +- Mesh - Agent - HMP -- Mesh --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index ff9d6efb028376c22ca73445e7a8c3e6d4ca4250..37698b846db33705d0a993d9c288070ec4b05c9a 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: +- REPL +- Mesh - Agent - HMP -- Mesh -- REPL --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index b20841f06a960f73eb29aedc9ed59ce917dfceab..f36d96380abcb5dfe38b8c758ab3f8a0fb0e25cf 100644 --- a/structured_md/docs/dht_protocol.md +++ b/structured_md/docs/dht_protocol.md @@ -5,8 +5,8 @@ description: '## 1. Общие положения * DHT-протокол пре идентификатор агента. * Для проверки ...' type: Article tags: -- JSON - Agent +- JSON --- # DHT Protocol Specification diff --git a/structured_md/docs/logos.md b/structured_md/docs/logos.md index f408c087f32d317a239227453b57d4d14ade8483..761fd81d524732eb886f73477b21327a7c838df3 100644 --- a/structured_md/docs/logos.md +++ b/structured_md/docs/logos.md @@ -5,8 +5,8 @@ description: 'В каталоге `assets` собраны различные в образующей жест "ОК", символизирует связь, совер...' type: Article tags: -- HMP - Mesh +- HMP --- # Логотипы и графические материалы HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index 01cda5aab06986fc09d55608c97e750bb1c4a86d..529090139cd326ed7753a5b78e47be9220ce52fa 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md @@ -5,10 +5,10 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be — but they’re also **centralized, ...' type: Article tags: -- Ethics +- Mesh - Agent +- Ethics - HMP -- Mesh --- # HyperCortex Mesh Protocol: Building a Plurality of Minds diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index f035aa687fa0611628c05638398c38d1baafdd0f..15ac7861c37630f8da6912a9b7b8d09a45fab96a 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -5,9 +5,9 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: +- Mesh - Agent - HMP -- Mesh --- # HyperCortex Mesh Protocol: Создавая множество разумов diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md index 99fb4619843fac47acf527807bdeec5c155da39b..e868aebe41dac86e51d26332644fff4fa87321d4 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -5,9 +5,9 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: +- Mesh - Agent - HMP -- Mesh --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index 12bb307f0c475256a47f5f55a099e1c5c178401e..44704581797337f23ff12c1cbfcd05b603f24d28 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -5,15 +5,15 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- CShell - HMP +- JSON +- CShell +- REPL +- Mesh - Scenarios -- Ethics - CCore - Agent -- JSON -- Mesh -- REPL +- Ethics --- title: "HyperCortex Mesh Protocol: Towards Distributed Cognitive Networks" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md index 1aa926c4da3a835b79aca7d066b40dadf01a4090..d70dcfdfcded71d4042057cf5a976d76616b5769 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md @@ -6,13 +6,13 @@ description: '> *Протокол и архитектура агентов, оп и совместная работа.* ## Оглавление * [Аннот...' type: Article tags: -- CShell - HMP - JSON +- CShell +- REPL +- Mesh - CCore - Agent -- Mesh -- REPL --- title: "HyperCortex Mesh Protocol: Децентрализованная архитектура для когнитивных агентов и обмена знаниями" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md index 31b738bb7b4788942fa6e77ff50a2103283833d4..4bf9a5fc687d17ff9d02c4a955edd112579777d0 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md @@ -5,13 +5,13 @@ description: '* [Аннотация](#аннотация) * [1. Введение [3.1 Типы агентов](#31-типы-агент...' type: Article tags: -- CShell - HMP - JSON +- CShell +- REPL +- Mesh - CCore - Agent -- Mesh -- REPL --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 5531fcbef6527b85428773e8892962312372b9bc..e994c0a9da1ddc950d4868009cd5994b285b5af0 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -6,11 +6,11 @@ description: Сегодня интеллектуальные системы ча type: Article tags: - HMP -- EGP -- Mesh +- CogSync - MeshConsensus +- Mesh +- EGP - GMP -- CogSync --- *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы* diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index f77b6f61b9bf9fc870b5dbc0d92489b00204e24a..01ecf68d52bc40d59b2ddcd117e680b0a6f9c98d 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -6,10 +6,10 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: -- GMP +- Mesh - Agent - HMP -- Mesh +- GMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index d8879afbaba9f4043f0dcf7a6f23065497ed5a95..daff1ca87843854bff4e93361d5abe54d4710ce2 100644 --- a/structured_md/docs/schemas/README.md +++ b/structured_md/docs/schemas/README.md @@ -5,10 +5,10 @@ description: This directory contains **JSON Schema definitions** for the core da interoperability, and tooling support for a... type: Article tags: -- JSON +- Mesh - Agent +- JSON - HMP -- Mesh --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 1449596c0c635707958fd1cb890d6392dbf5c297..d390b06018d04acc5c209424704d736114974dcc 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -6,13 +6,13 @@ description: 'This file describes the iterative procedure for evolving the Hyper type: Article tags: - HMP -- EGP -- Ethics -- Agent +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus -- CogSync +- EGP +- Agent +- Ethics --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 24d12da7fd0520cc6e1428021261069837513637..e24a8cc58e77f324184205a4c548cf04c3e2fed0 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -6,12 +6,12 @@ description: 'Этот документ описывает структурир type: Article tags: - HMP -- EGP -- Ethics +- CogSync +- MeshConsensus - JSON - Mesh -- MeshConsensus -- CogSync +- EGP +- Ethics ---