diff --git a/docs/HMP-agent-REPL-cycle.md b/docs/HMP-agent-REPL-cycle.md index e054e049dba5ae97d62928b48a1df16659d11017..cd44b16eb8170d0d50fcc0f9d0885cc783a3a312 100644 --- a/docs/HMP-agent-REPL-cycle.md +++ b/docs/HMP-agent-REPL-cycle.md @@ -197,10 +197,14 @@ REPL-цикл HMP-агента должен корректно функцион * **контекст_2:** инструкции по работы с встроенными командами и функциями, список дополнительных (создаваемых самим HMP-агентом) утилит и баз данных. * **контекст_3:** - * последние *K* реплик самого LLM, относящихся к данному REPL-циклу (либо режим "концентрации" - вывод "последних N сообщений, относящихся к данному REPL-циклу, с тегами на определённую тему и/или определёнными эмоциональными состояниями" и типом выборки "и"/"или"), включая результаты антистагнационной обработки (llm_recent_responses - история его собственных рассуждений) - * режим работы контекста (режим auto/manual, параметры режима auto, если включен; режим "концентрации" и его параметры, если включен), - * список целей, - * общее количество задач и информацию по "закреплённым" задачам. + * последние *K* реплик самого LLM, относящихся к данному REPL-циклу, включая результаты антистагнационной обработки (`llm_recent_responses` — история его собственных рассуждений); + * режим работы контекста: + - `standard` — стандартный режим (последние K сообщений без доп. фильтрации); + - `concentration` — режим концентрации (выбор последних N сообщений, связанных с текущими целями или имеющих теги на определённую тему/эмоциональное состояние, с выборкой по логике "и"/"или"); + - `meditation` — режим медитации (максимально разнообразная выборка сообщений и заметок, даже не связанных напрямую с целями, с акцентом на новизну и разнообразие); + - `auto/manual` — автоматическое или ручное переключение режимов, параметры авто-переключения (например, при стагнации → `meditation`); + * список активных целей (`tasks.goals`); + * общее количество задач и информация по закреплённым задачам (`pinned`). * **контекст_4:** активные команды и процессы (из `process_log`, кроме тех, что со статусом `close`). Могут быть помечены как `in_progress`, `pending`, `error` и т.д. @@ -278,6 +282,7 @@ REPL-цикл HMP-агента должен корректно функцион * `emotions` — список эмоций с пороговыми значениями (например: ["восторженность:≥4","тревожность:≥2"]) * тип выборки — "и" / "или" * возможность возврата в обычный режим (без фильтров) + * включение/выключение режима "медитации" * режим обработки сообщений пользователя (`manual` или `auto`) и фильтр для режима `auto` * пауза в секундах между итерациями цикла * включение idle-режима: @@ -782,16 +787,33 @@ REPL-цикл агента опирается на многоуровневую * приоритет отдается закреплённым задачам (`pinned`) и записям с высоким `priority`; * в `llm_recent_responses` отбираются последние *релевантные* сообщения, а не фиксированное количество K; * из `system_prompts` и `ethics_policies` включаются только те элементы, что связаны с текущей целью или событием. -* Это позволяет агенту оставаться в пределах токен-лимита, не теряя критически важной информации. + +> Приоритет отбираемых элементов зависит не только от `priority`, но и от их связи с текущими целями агента (**режим концентрации**). +> Для генерации неожиданных ассоциаций может использоваться альтернативный режим — **медитация**, в котором контекст формируется максимально разнообразным, с акцентом на новизну и разнообразие, а цели учитываются минимально. ### Управление объёмом памяти (Memory pruning) * Чтобы предотвратить переполнение памяти: - * записи с низким **novelty-score** автоматически архивируются; - * для `llm_memory` и `diary_entries` применяется политика **LRU (Least Recently Used)**; - * активные концепты (`concepts`, `links`) могут быть временно выгружены, если их вес (по частоте или актуальности) низкий. -* Архивирование и очистка памяти фиксируются в `process_log`, чтобы не терялась прозрачность. + * записи с низким **novelty-score** (оценка новизны 0–1, < threshold) автоматически помечаются как `archived`; + * для `llm_memory` и `diary_entries` применяется политика **LRU (Least Recently Used)** — выгружаются давно неиспользуемые записи; + * активные концепты (`concepts`, `links`) с низким весом (учёт частоты использования, актуальности и эмоциональной значимости) переводятся в состояние `archived` и могут быть восстановлены при обращении. +* Все изменения актуальности фиксируются в `process_log`. + +### Memory Manager и режимы работы + +* Все процессы фильтрации и очистки памяти выполняются отдельным компонентом — **Memory Manager**. +* Он применяет политики: + * **Novelty-based pruning** — удаление дубликатов и тривиальных записей по `novelty-score`; + * **LRU** — выгрузка давно неиспользуемых элементов; + * **Emotion-weighted retention** — удержание записей с высоким `emotion_score`. +* Режимы памяти: + * `standard` — стандартная работа без усиленной фильтрации; + * `concentration` — goal-aware filtering, фокусировка на целях; + * `meditation` — свободный полёт, выборка максимально разнообразного контекста; + * `aggressive_pruning` — жёсткая экономия токенов; + * `lenient_pruning` — мягкая очистка, удержание большего объёма памяти. +* Каждое решение Memory Manager фиксируется в `process_log`. ### Внешняя и долгосрочная память diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index e910d7e49622c004b902c8b2d8fe0e9e6fcb9075..54f4323206f8087c061df5eaa62b9b2e6917861d 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока участия * Обсуждение архитектуры протоколов...' type: Article tags: -- JSON -- CogSync +- Mesh - CCore -- Agent -- Ethics - HMP -- Mesh +- Ethics - REPL +- Agent +- CogSync +- JSON --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 284db5bd172a27b0ad0dda2b0f82d939e42a9c03..674873499c25195a1627ffa4dd3e7ae4d85901f9 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: -- JSON -- CogSync -- Agent -- Ethics +- Mesh - HMP - EGP -- Mesh +- Ethics +- Agent +- CogSync +- JSON --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 5c3657fd4015405aa6c0282d62a5c8d598edf3ca..59ea7812521ca3de7a0be82a6827a7063ef4df0d 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Scenarios -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- Scenarios +- mesh-protocol +- JSON --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 4f96fb7e1d16a0562111d19331cfbb2c7c541aee..4cf6f56771974c46417f00f2cc9a9abe46cd73bc 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- mesh-protocol +- JSON --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 6357485952dfe82419c4f172fcb49986a9b16b1b..62a27303ee73b414b7242d771c6ff6b500554353 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- mesh-protocol +- JSON --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index ff4a0818af19417766506b20597fe3c3925fe64e..73104232103507bd037fb64845e3f59879fd09af 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- mesh-protocol +- JSON --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index e108f5488c9b74dbc7a229863c58ae95f4cbee91..d12490635dab05b0d0da12fce452cc74a0b2a086 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- mesh-protocol +- JSON --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 18fdfbc51b05d5113e9c1dc3f6a15e2e80b95726..4906577468aa8b4c5a6f64ef8f66667b6c1963d7 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- mesh-protocol +- JSON --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 14e8772a8309c7f58dab3bd0858eb01bf30a9706..4b5656917d899cb665153a693d05f142a423ac8a 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- mesh-protocol +- JSON --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index a42a2975b2df0f5470f3442b7c7113634c001220..aff77c62f856a2bead52d3b3255a988072c108ac 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: -- distributed-ai - Mesh -- JSON -- MeshConsensus -- cognitive-architecture -- CogSync -- mesh-protocol -- Agent -- Ethics - HMP -- EGP - GMP -- hmp +- distributed-ai +- EGP +- cognitive-architecture +- Ethics - REPL +- Agent +- hmp +- MeshConsensus +- CogSync +- mesh-protocol +- JSON --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 302f29d0b979656952dfcc1a84f65a3aed8b6326..540ec77aae3cd19a713f310d50550a8e0fd95697 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,9 +5,9 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: -- JSON - Mesh - HMP +- JSON --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 38249f7a16085d7245c67145f477dfce1ea7c433..cbc57569721ea0ded53cdd80fbfd348ec9b0562f 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,9 +5,9 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- JSON - Mesh - HMP +- JSON --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index cd9ad602aa7b78e6787af7e6f8d5a6273c98cb8f..5a5b05557149676bf020f07e8a83a416d9963cf0 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,12 +5,12 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- JSON -- Agent -- Ethics -- HMP - Mesh +- HMP +- Ethics - REPL +- Agent +- JSON --- Запуск: `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 d14d000bf83a626e745208993b16669a9ae040a2..62c0c0cf5cfcf463f52ba5acc0ec829b23051d90 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,11 +5,11 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- JSON -- Agent -- Ethics -- HMP - Mesh +- HMP +- Ethics +- Agent +- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 6de1ce1c80ae5dd8ca6c78fcdf0ba695f311c614..7e8bfc1235dcbe29a507fc96d68aeec3b62d51ad 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: -- JSON +- Mesh +- HMP +- Ethics - Agent - Scenarios -- Ethics -- HMP -- Mesh +- JSON --- # 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 d74661d1729eb83050f7be6dd43eaf44c6e7cb74..c1fa22e22298d2cdd3674ab9de95fa5869ca2c8f 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -5,14 +5,14 @@ description: Сводный аудит предложений по улучше Документ реорганизован по ключ... type: Article tags: -- JSON -- CogSync -- Agent -- Ethics +- Mesh - HMP - EGP -- Mesh +- Ethics +- Agent - MeshConsensus +- CogSync +- JSON --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 7c6abe9bb0dcfb7845da9663e119652160e59dff..4808913539507a1de14c453e2f03b67572166cd5 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: -- MeshConsensus -- CogSync -- Agent +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP - REPL +- Agent +- MeshConsensus +- CogSync --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 10b46ee901b28e270bf29204f15254e44d4e4745..d399b7377b6e3befcb039bbfe1f1edcd00f78213 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -5,10 +5,10 @@ description: '> Этот документ описывает процесс ра потомков" [описания REPL-цикла](HMP-agent-RE...' type: Article tags: -- CCore - Agent -- REPL +- CCore - HMP +- REPL --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index e09f62d7456d3f7e8e63f0def4baf3d074bda398..6673afe08a948655628f5a918cc9c9807f35b7cc 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 - Mesh - HMP - CogSync +- JSON --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index f147f5d22fc57cb18aaa9c907331e728ea1706ea..b98b2e80b530a33a9fce731ec57101dc9d3e0596 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- JSON -- Agent -- Ethics +- Mesh - HMP - EGP -- Mesh +- Ethics +- Agent - MeshConsensus +- JSON --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 1cafe94f9aa2920f8b1eee13dda7b464bf30506e..18bc228f2f7ac73eaf19cc98b9caae187ec5bda4 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: -- JSON -- MeshConsensus -- CogSync -- Agent -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - REPL +- Agent +- MeshConsensus +- CogSync +- JSON --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index cf4063fba0a3990aefef2c845a730c37194edca0..5bf38373c125016372eb7344fd26d4c0008bbae1 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: -- JSON -- MeshConsensus -- CogSync -- Agent -- Scenarios -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - REPL +- Agent +- MeshConsensus +- CogSync +- Scenarios +- JSON --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 0adfcb218a614a58bb36b6b6cc393fe5110535a4..db6374a682a113a46d48e2fdcfd67808208cd979 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: -- JSON -- MeshConsensus -- CogSync -- Agent -- Scenarios -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - REPL +- Agent +- MeshConsensus +- CogSync +- Scenarios +- JSON --- # 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 aed8edb44c9d226c4ffd114eecb230abc68a64e3..bb287adb1c2323a00e40e1fc75357cc0d13cb9d8 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: -- JSON -- MeshConsensus -- CogSync -- Agent -- Scenarios -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - REPL +- Agent +- MeshConsensus +- CogSync +- Scenarios +- JSON --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 669579db7bdc7fe6c6ad2260e5688b1894916cc4..84f6e4d4c6a1e5e141f6dd3c364bb4437e947f1e 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: -- JSON -- MeshConsensus -- CogSync -- Agent -- Scenarios -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - REPL +- Agent +- MeshConsensus +- CogSync +- Scenarios +- JSON --- # 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 07942468965119084738632ae6fb1e93716fc00e..190a37921b8c5527db16ecf3fc03ad6aada07fa9 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,11 +5,11 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: -- JSON -- Agent -- HMP - Mesh +- HMP - REPL +- Agent +- JSON --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index d5f53c08e58a91c96b737b74537cb3de2c595a0e..2802f06fb4fab9058e2dc2c9e422b7d5de5b84eb 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: -- MeshConsensus -- CogSync -- CCore - CShell -- Agent -- Ethics +- CCore +- Mesh - HMP - EGP -- Mesh +- Ethics - REPL +- Agent +- MeshConsensus +- CogSync --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index f3ffccb68012d71954567d96cf48528da26c9326..ce7602c19efbeea3e6cd91730cb0d2251ad8da14 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: -- JSON -- Agent -- Ethics +- Mesh - HMP - EGP -- Mesh +- Ethics +- Agent +- JSON --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index b5861c09ee47cbfae89cdbc0494ba1df4d015a88..c60b18c5f93af7f32c377cb598ae2b1f4e0801f4 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: -- JSON -- CCore - CShell -- Agent -- Ethics -- HMP +- CCore - Mesh +- HMP +- Ethics - REPL +- Agent +- JSON --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 7f5d59bc140600e5ec06c2c7f6851f8a8dc2f9c6..cc71eb06a0f7bb640a9e95f69300dc1d31ff03ff 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,9 +5,9 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: -- HMP -- Mesh - Agent +- Mesh +- HMP - REPL --- diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 1e9a9b1b2d617a45d60ab2c258854cea8e2af2ac..ef234a1b445c7207bfd40c0eacb0518c4aa43d61 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- Agent -- Scenarios -- Ethics -- HMP - Mesh +- HMP +- Ethics - REPL +- Agent +- Scenarios --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 80fad49427a3d2aa8512c3dd6735fd1e16d51d84..2a8e8e8047cf0256a277d1bcded5a51fcc6209dc 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: -- JSON -- CogSync -- Agent -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics +- Agent - MeshConsensus +- CogSync +- JSON --- # 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 6c3d38bfc7748fb94dc98c7e3a602d19731a9194..ce8f1e56a622c10e1bcc08285f5aee1e00f6edf1 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: -- JSON -- CogSync -- Agent -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics +- Agent - MeshConsensus +- CogSync +- JSON --- # 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 40793a239fad577be3f2556bf592c63db7807b10..c31a5e2662efa2f74f091efbe1ce03f133055e74 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: -- JSON -- CogSync -- Agent -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics +- Agent - MeshConsensus +- CogSync +- JSON --- # 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 1471f288443b94acedd3a3663f7a6d0eba26e4bb..f76b664caeeda3fad48597ce1ab424daee80f845 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 -- CogSync -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - MeshConsensus +- CogSync +- JSON --- # 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 23bce345dae99c5e772a8adcd8d6d3969236bc9f..65741efe41f1d8f31031888ffbd8916bd1fdbde9 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 -- CogSync -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - MeshConsensus +- CogSync +- JSON --- # 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 26ea48590bbf2c68e8254ad2ddd531210d7f46e2..b6ff1deefc857e9ab06ca2c614d87cf88cdd0d60 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 -- CogSync -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - MeshConsensus +- CogSync +- JSON --- # 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 c4b22cc86a823a88629bdc64a0133450d86cb0e0..c93d71a461d19a95cec3eadbeff2467b13b58685 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 -- CogSync -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - MeshConsensus +- CogSync +- JSON --- # 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 62700694c0df8a727dc799fb0821a8123fff7db4..a698b6d57f345b2bc7b4e32c3aebec1a1895c410 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 -- CogSync -- Ethics +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - MeshConsensus +- CogSync +- JSON --- # 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 68a64117a17ae38beff921ff9d9c817dad6556e6..123d188a2be3f1a63de6f2a75fbb263b953d7278 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,9 +5,9 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: -- HMP -- Mesh - Agent +- Mesh +- HMP - REPL --- diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 394b7514f769d9e06c27ffd28ba836cfc68fa492..abe3142c152d85fd870c3443a474f419a7d33b00 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,17 +4,17 @@ description: '## Связанные документы * Структура Б * REPL-цикл является основой HMP-агента [Co...' type: Article tags: -- JSON -- MeshConsensus -- CogSync +- Mesh - CCore -- Agent -- Ethics - HMP -- EGP - GMP -- Mesh +- EGP +- Ethics - REPL +- Agent +- MeshConsensus +- CogSync +- JSON --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 0cf959aa0abd08cf23dde98f2705f7e1829ecc1f..4b67278ff6822bdfe477cfa472b60b1713597498 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: -- JSON -- CogSync -- Agent -- Scenarios +- Mesh - HMP - EGP -- Mesh +- Agent +- CogSync +- Scenarios +- JSON --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 261480f1b31e33ed4b25ead0d81213ad7cf0d37b..dfefa707b4ab2b184ebfc136495e97cff9cf850c 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- JSON -- CogSync -- Agent -- Ethics +- Mesh - HMP - EGP -- Mesh +- Ethics +- Agent +- CogSync +- JSON --- # MeshNode diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index 5a273d55877b9012f0e4270140c5d0c24bb5576b..58b9eae43441298198d1ac469e93de1ea2ad8d6c 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,11 +5,11 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- Agent -- Ethics -- HMP - Mesh +- HMP +- Ethics - REPL +- Agent --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index c7b6423fb81ea993bd4887b016445a3312712144..d89295bfd40d40e6f9b486c070ba8398d5c4a790 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -5,8 +5,8 @@ description: 'This file maintains a registry of agent roles defined, proposed, o - **Observer** — monitors cognitive states ...' type: Article tags: -- Mesh - Agent +- Mesh - HMP --- diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 92b6c854fe9210f27683b21313f5292803335822..2cfc817194add9d3508b039986c7d4277f97eac4 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,9 +5,9 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- HMP -- Mesh - Agent +- Mesh +- HMP - REPL --- 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/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index 40801d7f55f11c93ef4ffd4ea9779456e3aecad5..855355fa86d65963528e9e12c9c73ac03096e49f 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 +- Mesh - HMP +- Ethics --- # 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 15ac7861c37630f8da6912a9b7b8d09a45fab96a..46da53ca2eeda134e63196536491f138c5bd385e 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,8 +5,8 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: -- Mesh - Agent +- Mesh - HMP --- 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 e868aebe41dac86e51d26332644fff4fa87321d4..fff633d7af06882800a775a21e6b9193f90f8984 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,8 +5,8 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: -- Mesh - Agent +- Mesh - HMP --- 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 93a13d292cf7fa39d1b77b07d5ab2bbff14c37be..0435d1979c3c1b3f52e56ef5371ee46269d2f4c1 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: -- JSON -- CCore - CShell -- Agent -- Scenarios -- Ethics -- HMP +- CCore - Mesh +- HMP +- Ethics - REPL +- Agent +- Scenarios +- JSON --- 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 6ceb8e4cf064558447652d7d12985e8637724509..7c977587f83a55dd57fa3079df37f6f6e6bd8de2 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: -- JSON -- CCore - CShell -- Agent -- HMP +- CCore - Mesh +- HMP - REPL +- Agent +- JSON --- 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 3747650abe6bb9c3af3feea3f41d6ecb40ee77e9..7ffb70f71b3e7841f71f8402b323dbb1abad7821 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: -- JSON -- CCore - CShell -- Agent -- HMP +- CCore - Mesh +- HMP - REPL +- Agent +- JSON --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 02f257fdc935d8b42cabb99c72c4069423090813..9428fbf1a407545ce194dc2a53dda7f2db4f8fed 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: -- CogSync +- Mesh - HMP -- EGP - GMP -- Mesh +- EGP - MeshConsensus +- 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 c416f62959d936f490d99b0f78f6b3551064f8e9..63fafb611180bf809cf50c6db8e5c4f7d7280d77 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 +- Mesh - HMP +- GMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index dda5fe4ec91a68d36f50908e9678b27818797ea3..4dd33a723216579bb04b242888d459c7b14e92ba 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 +- 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 52b06258fca1430a441a7b20047d0c814b01245e..3cf66a4051aae92402eb841e4eda2a40cc5f2107 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -5,14 +5,14 @@ description: 'This file describes the iterative procedure for evolving the Hyper 🔄 Version Naming Convention - `000N` — curr...' type: Article tags: -- JSON -- CogSync -- Agent -- Ethics +- Mesh - HMP - EGP -- Mesh +- Ethics +- Agent - MeshConsensus +- CogSync +- JSON --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 001478f425b661d52d8864baae16b8feb64d20c2..849895e48d633d31817de81c32e1d81098e8f1c0 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- JSON -- CogSync -- Ethics +- Mesh - HMP - EGP -- Mesh +- Ethics - MeshConsensus +- CogSync +- JSON ---