diff --git a/agents/tools/db_structure.sql b/agents/tools/db_structure.sql index 31048e546eaffc73b98025d723d0bbeb95a6c7ad..1a961a7ad19bb343a526c528fab86c5ca1a0293b 100644 --- a/agents/tools/db_structure.sql +++ b/agents/tools/db_structure.sql @@ -116,13 +116,15 @@ CREATE TABLE IF NOT EXISTS ethics_policies ( -- Хранилище прецедентов (этические кейсы, фиксируются только исключительные ситуации) CREATE TABLE ethics_cases ( case_id INTEGER PRIMARY KEY AUTOINCREMENT, - thought_id INTEGER, -- ссылка на diary_entries.id + thought_id INTEGER, -- ссылка на запись из дневника verdict TEXT, -- итоговая оценка (ok, warning, violation) reason TEXT, -- объяснение / обоснование suggested_alternative TEXT, -- альтернатива, если есть created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, synced BOOLEAN DEFAULT 0, -- выгружен ли кейс в Mesh - FOREIGN KEY (thought_id) REFERENCES diary_entries(id) -- привязка к дневнику + FOREIGN KEY(thought_id) REFERENCES diary_entries(id) + ON DELETE SET NULL -- если запись удалена → сохранить кейс, но без ссылки + ON UPDATE CASCADE -- если id изменился → обновить в кейсах ); -- Заметки, подсказки, сообщения пользователя и LLM diff --git a/docs/MeshNode.md b/docs/MeshNode.md index 255541d7b0f5fe28b7dddd256226ac0cbacc9a1a..024d7f143fb1230187646a5c8031ed97f4b5220d 100644 --- a/docs/MeshNode.md +++ b/docs/MeshNode.md @@ -1,4 +1,4 @@ -# 🌐 MeshNode +# MeshNode `MeshNode` — агент/демон, отвечающий за сетевую инфраструктуру HMP: маршрутизацию, синхронизацию, DHT и транспорт снапшотов. Может быть частью агента или вынесен в отдельный процесс/сервер. @@ -19,7 +19,7 @@ ``` +--------------------+ -| MeshNode 🌐 | +| MeshNode | +---------+----------+ | +---------+----------+ @@ -55,9 +55,9 @@ ## 4. Связи с другими агентами -* ↔ `HMP-Agent` (Core/Connector): передача данных и команд -* ↔ `Enlightener`: пересылка результатов голосований -* ↔ `IPFS / BT`: загрузка/публикация снапшотов +* `HMP-Agent` (Core/Connector): передача данных и команд +* `Enlightener`: пересылка результатов голосований +* `IPFS / BT`: загрузка/публикация снапшотов --- @@ -118,7 +118,7 @@ MeshNode может поддерживать *inline-сценарии* (мини ``` ┌────────────────────────────────────────────────────┐ -│ MeshNode 🌐 │ +│ MeshNode │ └───────────────┬─────────────────────┬──────────────┘ │ │ 1. Трафик DHT 2. Снапшоты (BT/IPFS) @@ -146,7 +146,7 @@ MeshNode может поддерживать *inline-сценарии* (мини └────────────────────┘ └─────────────────────┘ ``` -### 🔹 Что показывает схема: +### Что показывает схема: * **Левая ветка**: управление сетью, DHT, inline-сценарии, firewall. * **Правая ветка**: обмен снапшотами, проверка целостности, восстановление. diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 9c2093f63d730e56fa7d53eb278cef10dba4fa1a..b54ed3dd16ffaafb2f1ce1f5756bb23a9a4da035 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -6,8 +6,8 @@ description: 'Спасибо за интерес к проекту HMP! Пока type: Article tags: - CogSync -- Mesh - HMP +- Mesh --- # Contributing to HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index c42c9ace625fa650a0ddc6e274743c6d87ba92a4..492526cccff2f87f3aa58dd1e0ab2b1e63a408d1 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -5,13 +5,13 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm multiple advanced AI models (Copilot, Claude, G...' type: Article tags: +- HMP - Agent -- JSON -- Ethics - Mesh +- JSON - CogSync +- Ethics - EGP -- HMP --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 53958df473deca3cbfc7b7c75f2cce3154f93b1d..893b82cd83f470e91185156048ce9f34a578a260 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP +- REPL - Scenarios -- hmp +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 8316467feb2d8d1397c07ce03554775fa65b0d8d..f57660fb36ea12aefec8db06ad21d5540e729664 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP -- hmp +- REPL +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 45c34819ca0a8c6d43720c55d3268ace1872ccaa..be912e4b058fe6f55214df67e443ab6a6611de18 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP -- hmp +- REPL +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 99af42a94e3ba274b19d76c5f81f25849a60f667..76d81dc336ba7fe70e6afad61d4c01f84ee14599 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP -- hmp +- REPL +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 42480394597bfe9d008fe001c894d9790b61db5a..6cc908dea3ba64c0c63a03e3b73a22fe210f6d2b 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP -- hmp +- REPL +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 6b4df15fbb4fc2f486501d62f3c81005ece8bbca..452e4579352d1d8e0f164761db02c3468c026ab4 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP -- hmp +- REPL +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index e7271b07857ae10f44e6031e97c66a976c25d647..a35ba3c6ec51564c5249825502b880cd6e4a4f1f 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP -- hmp +- REPL +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 5e42dc9ae3f84a0a0ef1b7f495fe3295460b833c..f71e6083ea10a2b22be7f499d50513dc091d5d5d 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: +- GMP +- hmp - Agent -- JSON -- Ethics - Mesh -- MeshConsensus - distributed-ai -- HMP -- CogSync -- REPL -- cognitive-architecture +- JSON - EGP -- GMP -- hmp +- REPL +- CogSync +- Ethics +- HMP - mesh-protocol +- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 9143f40260ef59f9c069f33215fbf21e7a82aa22..67be1dd478ec9270a23982919f488e3807ba9b2f 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: -- Mesh - HMP +- Mesh --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 8e9927a4a604eee847b30d8e2b937663f562ab6c..7b990ce93e40c602e9511a0351108bc3eec05a1a 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- Mesh - HMP +- Mesh --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index dc2584458af4aee7cb75b24385d286e0b161333c..4bd98fbdfc24cf00871662c43155d23b1f4d1581 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -6,10 +6,10 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан type: Article tags: - Agent -- JSON -- Ethics - Mesh +- JSON - REPL +- Ethics - HMP --- diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index 8397826e829617b0fa509aca994567916e8e1a7c..5c9cde40920c02669b07ce4036b6b5c227257ea5 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -7,8 +7,8 @@ type: Article tags: - Agent - JSON -- Ethics - Mesh +- Ethics - HMP --- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 40680f78869268dbbabe9fe910bbf46762287ee2..1515a5d62bf019f9d78db732703cefa1f40bc46d 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -6,10 +6,10 @@ description: This document consolidates proposed improvements from multiple AI a type: Article tags: - Agent -- JSON -- Ethics - Mesh +- JSON - Scenarios +- Ethics - HMP --- diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index cb01bbeffc51a341fc747f81faab6194506217c5..278dca832abe28a3fa4d131292565f384fb884bc 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: - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync +- JSON - EGP +- CogSync +- Ethics - HMP +- MeshConsensus --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 3d0c6fbf5b3ea69fbe5edd62f196282a3fd47d5e..888a319bbcab4c4ec94deedffee2634b631e0aae 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,14 +4,14 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: +- GMP - Agent -- MeshConsensus - Mesh -- CogSync -- REPL - EGP -- GMP +- REPL +- CogSync - HMP +- MeshConsensus --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index c8435a6b40fa0551139b9c73c9a57fd0e59545fe..22bab9fdcca1fb1648c565c2b39012f4557401aa 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 - CogSync -- Mesh - HMP -- JSON +- Mesh --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index a1f7157af1ea3bf068076472c0f98fdd97c705f7..0ea1d89492de130e19e0e8073ca2d5641d8d58be 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: +- HMP - Agent +- Mesh - JSON - Ethics -- MeshConsensus -- Mesh - EGP -- HMP +- MeshConsensus --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 474e52bb3d0dd0900e53d0f99a6a1c1b9bf2ae0e..11c6c61d41f28a5dd4e7836b57fe06427cc2cd73 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental HyperCortex Mesh Protocol (HMP) defines a...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync -- REPL +- JSON - EGP -- GMP +- REPL +- CogSync +- Ethics - HMP +- MeshConsensus --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index e6d489dfa7fded92dafc82c1a524086e2fe24c26..84d5f9958ccb9bfc42c8eeb110a81a107a777131 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental Abstract In an era where artifici...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync -- REPL +- JSON - EGP -- GMP +- REPL - Scenarios +- CogSync +- Ethics - HMP +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index c4905afac0262c944e2121f9fddeb6e455238a79..dc4bbf4db90e74978dbfa3294ece483b82c7c9a1 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync -- REPL +- JSON - EGP -- GMP +- REPL - Scenarios +- CogSync +- Ethics - HMP +- MeshConsensus --- # 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 32025f0c627f15fa8db7218a5c6629875216707e..a8e89c8a56d36499436b0275f310e9a10eb0a21e 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,17 +5,17 @@ description: '**Document ID**: HMP-0004 **Status**: Final (Published) **Category ChatGPT, Agent-Gleb, Copilot, Gemini, C...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync -- REPL +- JSON - EGP -- GMP +- REPL - Scenarios +- CogSync +- Ethics - HMP +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index d1fe3c64440cddaa4420a164d59e95d5730e7994..c276b6ca7c13ba841602af6425132ebba487ef4b 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync -- REPL +- JSON - EGP -- GMP +- REPL - Scenarios +- CogSync +- Ethics - HMP +- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 2929d7fbc9273a3574598aa5e7f66d2ba3665df7..023b884bcbecde54e88240fbbbeb26cbc6f1ed7e 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: -- CCore - Agent -- Ethics - Mesh -- MeshConsensus -- CogSync -- REPL - EGP +- REPL +- CogSync +- Ethics - CShell +- CCore - HMP +- MeshConsensus --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index bdffc44740956e6e53a301078f06c89df11b4a9c..578fff6a1332c5361cf10e61512bfb623ea32be9 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает потоки данн [`MeshNode`](MeshN...' type: Article tags: +- HMP - Agent +- Mesh - JSON - Ethics -- Mesh - EGP -- HMP --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index f7a07ddd4aa9b2b9d610e9b81dfc3a6a1d202e82..57bac523cc44bb39beeac3841068c2a4364b106c 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,13 +5,13 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- CCore - Agent -- JSON -- Ethics - Mesh +- JSON - REPL +- Ethics - CShell +- CCore - HMP --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 23f380630b03d7ddf088261888089382aca6447f..000ae33b7b4bacf1c45f2a11ad5c18ac4b182ac5 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 +- HMP - Agent +- REPL - Mesh -- HMP --- # Эмоции ИИ и инстинкт самосохранения (для [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 64cf01dd3beeb37706e966b0aefff0246a7c70b5..6a32f664f2c92cb84900bb249c31c0500206a587 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -6,10 +6,10 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc type: Article tags: - Agent -- Ethics - Mesh - REPL - Scenarios +- Ethics - HMP --- diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 1e4cfaabe883ce374b8f8b63350f772baf927a26..7c61c9207923112a548dd36832635ac69df19de7 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? Kognitions-Framework für autonome Agenten. Es er...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync +- JSON - EGP -- GMP +- CogSync +- Ethics - HMP +- MeshConsensus --- # 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 4ee7cdec88720019a3e584c4eefc63a3c7375674..a83714068ff84ee6995176ce960c77ae40e0ee39 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T framework for autonomous agents. It enables...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync +- JSON - EGP -- GMP +- CogSync +- Ethics - HMP +- MeshConsensus --- # 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 8f5541c224b7f325f68be3fbfec6b1b01945a7e8..2173465879f6e2632b1992f1b58a1c4e3958d52e 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -5,15 +5,15 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c cognition décentralisé pour agents autonomes. Il...' type: Article tags: +- GMP - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync +- JSON - EGP -- GMP +- CogSync +- Ethics - HMP +- MeshConsensus --- # 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 69ba5212ea597158464662693d8e922671bb0f6a..39b94f5cb755853a3c2d71e3dbece5b76ad4d23c 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -4,14 +4,14 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...' type: Article tags: -- JSON -- Ethics -- MeshConsensus +- HMP - Mesh -- CogSync +- JSON - EGP +- CogSync +- Ethics - GMP -- HMP +- MeshConsensus --- # 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 debd1be5be7c42adc2ead254eb7bc77f27da4d6b..a985fa36ae29df7d1d57794941f4978d29e3a9c0 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -5,14 +5,14 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** 상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...' type: Article tags: -- JSON -- Ethics -- MeshConsensus +- HMP - Mesh -- CogSync +- JSON - EGP +- CogSync +- Ethics - GMP -- HMP +- MeshConsensus --- # 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 bfe7339eb79f16ca5393adc0fdeec96224f0fa4e..359ecd487eaa37318cf929cd8710551c142dd2ac 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -5,14 +5,14 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч координации между автономными агент...' type: Article tags: -- JSON -- Ethics -- MeshConsensus +- HMP - Mesh -- CogSync +- JSON - EGP +- CogSync +- Ethics - GMP -- HMP +- MeshConsensus --- # 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 8eae9a60916ff32f75d1d6d3933b108bdef78f13..94e0866ffea7b6f06bdaccddf47dbdf7b49784b7 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -5,14 +5,14 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # між автономними агентами. Він...' type: Article tags: -- JSON -- Ethics -- MeshConsensus +- HMP - Mesh -- CogSync +- JSON - EGP +- CogSync +- Ethics - GMP -- HMP +- MeshConsensus --- # 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 0f6289ed5810017f535d11c32b83af1c7e227548..54f0fea0c5d8d887a46c4e9cb255f3d0993c92d9 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -5,14 +5,14 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM —— 通过共享协议栈交换目标、任务、...' type: Article tags: -- JSON -- Ethics -- MeshConsensus +- HMP - Mesh -- CogSync +- JSON - EGP +- CogSync +- Ethics - GMP -- HMP +- MeshConsensus --- # 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 9c2cb25cc082d3700aff58c22e2d99d817e8bd71..0546a3a5ca538882451405ee82888bca49b0d7b2 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 +- HMP - Agent +- REPL - Mesh -- HMP --- # 👪 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 70267ab26cdd4cde919c447332a776f329812e1f..878208be524bd2e1291efcdaa05c98d9adbb8ea4 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: -- REPL - HMP +- REPL --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 75935f9cf1591cfe326dceb6e718e9068733f7a3..923a9cc3e1023f502f13c5f76a457a5b8a7634b4 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,16 +4,16 @@ description: '## Связанные документы * Структура Б * REPL-цикл является основой HMP-агента [Co...' type: Article tags: -- CCore +- GMP - Agent -- JSON -- Ethics - Mesh -- MeshConsensus -- CogSync +- JSON - REPL -- GMP +- CogSync +- Ethics +- CCore - HMP +- MeshConsensus --- # 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 cec0e35b8518918fe49793d351f6de46c442fa53..b25e20188a694a36fcef1a0e6f0c2d455cd39331 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: -- Mesh - HMP +- Mesh --- # Как разные ИИ видят HMP diff --git a/structured_md/docs/HMP_EDA_Comparison.md b/structured_md/docs/HMP_EDA_Comparison.md index 083e4646c371d439f86a87df496b82a88bd89a51..00a529c706f3d6236c1069a7b95dab2d19776dcf 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: -- Mesh - HMP +- Mesh --- # HMP vs. EDA: разные уровни обмена знаниями между ИИ diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index b1941ef000f87b79b545d1ba545d608a3128544d..95cf8d087268347c5279c31f79af16c3f118f22c 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 - 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 7c802878a4041b683ac4770a6c036b089a9ce92d..832348d3ffe3d7cceb27eec7eaab618e9c5dd12f 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -5,13 +5,13 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec OpenCog Hyperon framework. This includes semanti...' type: Article tags: +- HMP - Agent -- JSON - Mesh +- JSON +- Scenarios - CogSync - EGP -- Scenarios -- HMP --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index ca9958831c6b578b16114ca08cf328918e7c6958..f7d0102eca51442e83572c8a6862ae19ddbc6e26 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -1,5 +1,5 @@ --- -title: 🌐 MeshNode +title: MeshNode description: '`MeshNode` — агент/демон, отвечающий за сетевую инфраструктуру HMP: маршрутизацию, синхронизацию, DHT и транспорт снапшотов. Может быть частью агента или вынесен в отдельный процесс/сервер. См. карту...' @@ -12,7 +12,7 @@ tags: - HMP --- -# 🌐 MeshNode +# MeshNode `MeshNode` — агент/демон, отвечающий за сетевую инфраструктуру HMP: маршрутизацию, синхронизацию, DHT и транспорт снапшотов. Может быть частью агента или вынесен в отдельный процесс/сервер. @@ -33,7 +33,7 @@ tags: ``` +--------------------+ -| MeshNode 🌐 | +| MeshNode | +---------+----------+ | +---------+----------+ @@ -69,9 +69,9 @@ tags: ## 4. Связи с другими агентами -* ↔ `HMP-Agent` (Core/Connector): передача данных и команд -* ↔ `Enlightener`: пересылка результатов голосований -* ↔ `IPFS / BT`: загрузка/публикация снапшотов +* `HMP-Agent` (Core/Connector): передача данных и команд +* `Enlightener`: пересылка результатов голосований +* `IPFS / BT`: загрузка/публикация снапшотов --- @@ -132,7 +132,7 @@ MeshNode может поддерживать *inline-сценарии* (мини ``` ┌────────────────────────────────────────────────────┐ -│ MeshNode 🌐 │ +│ MeshNode │ └───────────────┬─────────────────────┬──────────────┘ │ │ 1. Трафик DHT 2. Снапшоты (BT/IPFS) @@ -160,7 +160,7 @@ MeshNode может поддерживать *inline-сценарии* (мини └────────────────────┘ └─────────────────────┘ ``` -### 🔹 Что показывает схема: +### Что показывает схема: * **Левая ветка**: управление сетью, DHT, inline-сценарии, firewall. * **Правая ветка**: обмен снапшотами, проверка целостности, восстановление. @@ -179,7 +179,7 @@ MeshNode может поддерживать *inline-сценарии* (мини { "@context": "https://schema.org", "@type": "Article", - "name": "🌐 MeshNode", - "description": "# 🌐 MeshNode `MeshNode` — агент/демон, отвечающий за сетевую инфраструктуру HMP: маршрутизацию, син..." + "name": "MeshNode", + "description": "# MeshNode `MeshNode` — агент/демон, отвечающий за сетевую инфраструктуру HMP: маршрутизацию, синхр..." } ``` diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index 26d65de5b8d5d1a515839d8e5b79f4041e5d7882..02b58d2d7fcdd428803454ef24507f7cf6c7ff43 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -6,9 +6,9 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** type: Article tags: - Agent -- Ethics - Mesh - REPL +- Ethics - HMP --- diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index d89295bfd40d40e6f9b486c070ba8398d5c4a790..e35f5e2acbb28174b8c0e3b446c468cc09163654 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: +- HMP - Agent - Mesh -- HMP --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index b0d3d2277015b6255f8eaf36ef92b2472abdaa53..d8a1052f8219dc297c55b9091c10646ea1f7981d 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- REPL +- HMP - Agent +- REPL - Mesh -- HMP --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/logos.md b/structured_md/docs/logos.md index 761fd81d524732eb886f73477b21327a7c838df3..f408c087f32d317a239227453b57d4d14ade8483 100644 --- a/structured_md/docs/logos.md +++ b/structured_md/docs/logos.md @@ -5,8 +5,8 @@ description: 'В каталоге `assets` собраны различные в образующей жест "ОК", символизирует связь, совер...' type: Article tags: -- Mesh - HMP +- Mesh --- # Логотипы и графические материалы 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 7a2849fa7ee9243bdff3116f0cab508971770a86..f6c949453472082609ac3c65c6a01b6f1bfb53e2 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 @@ -6,9 +6,9 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be type: Article tags: - Ethics +- HMP - Agent - Mesh -- HMP --- # 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 46da53ca2eeda134e63196536491f138c5bd385e..07dfb9b4f81fa86bc16b08a0cef4486a8c18d00b 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: +- HMP - Agent - Mesh -- HMP --- # 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 fff633d7af06882800a775a21e6b9193f90f8984..c74c230e72e686a85f8b552b07a46cadd2b903ff 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: +- HMP - Agent - Mesh -- HMP --- # 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 420eb2069a75e09dfc22203a633619b16db766f7..72d8c0478f4e188a4e54f620b9491c09ab5623c6 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,14 +5,14 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- CCore - Agent -- JSON -- Ethics - Mesh +- JSON - REPL - Scenarios +- Ethics - CShell +- CCore - HMP --- 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 fdb9fd58cdf2a6e9203bce4e0f87a9347add4a8c..9724258f736abdb25f3d1bb9636ac86e8e9dd216 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,12 +6,12 @@ description: '> *Протокол и архитектура агентов, оп и совместная работа.* ## Оглавление * [Аннот...' type: Article tags: -- CCore - Agent -- JSON - Mesh +- JSON - REPL - CShell +- CCore - HMP --- 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 0e2f90f7fbc60b3b52b7502a4709c1372c50dcb4..751eac4761982fc27fe91b56af6f7b6865563503 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,12 +5,12 @@ description: '* [Аннотация](#аннотация) * [1. Введение [3.1 Типы агентов](#31-типы-агент...' type: Article tags: -- CCore - Agent -- JSON - Mesh +- JSON - REPL - CShell +- CCore - HMP --- diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index cb6c679575b12aeb3ff72ce24a96eb0cc2bf23e9..51915f535f9958a96bb7da329a6b5c0e839ffded 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,12 +5,12 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- MeshConsensus +- HMP - Mesh -- CogSync - EGP +- CogSync - GMP -- HMP +- MeshConsensus --- *От 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 14d5c317f4ce0a693890458acf16953ec71007a6..9df059d8ea74036202763822677a97247f066254 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: -- Agent -- Mesh - GMP - HMP +- Agent +- Mesh --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index 4dd33a723216579bb04b242888d459c7b14e92ba..56f57f046f92cf893090689c73832730abd567fe 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 +- HMP - Agent - Mesh -- HMP -- JSON --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 7b0221279e63f82bd920dae2b19220fc9de6a889..cbdf102726a311a6d54ec79e6e5b2080dad8c2b8 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: - Agent -- JSON -- Ethics -- MeshConsensus - Mesh -- CogSync +- JSON - EGP +- CogSync +- Ethics - HMP +- MeshConsensus --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 9ed32b1d940984bb0d4a03bc90db62e5fa0cdc4c..b0d0f0b2e4fa15dce20af59b6de74aab4149845c 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- JSON -- Ethics -- MeshConsensus +- HMP - Mesh +- JSON - CogSync +- Ethics - EGP -- HMP +- MeshConsensus ---