diff --git a/docs/HMP-agent-REPL-cycle.md b/docs/HMP-agent-REPL-cycle.md index d39b094b5334544cfd826d8054dbf5ae3bed8ffc..4a22f7efce8a48e075e69e0285697f851231a77c 100644 --- a/docs/HMP-agent-REPL-cycle.md +++ b/docs/HMP-agent-REPL-cycle.md @@ -25,26 +25,31 @@ REPL-цикл является основой HMP-агента [Cognitive Core]( ``` Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. ``` -А также инструкции по работы с встроенными командами и функциями, список дополнительных (создаваемых самим HMP-агентом) утилит и баз данных. -* **контекст_1:** +* **контекст_1:** этические принципы из `ethics_policies` (включая поле `principles_json` и дополнительные параметры политики). + Это набор действующих этических правил, согласованных через MeshConsensus или заданных локально пользователем/разработчиком. + Принципы включаются в запрос к LLM для того, чтобы они учитывались как при рассуждениях, так и при когнитивной валидации. + +* **контекст_2:** инструкции по работы с встроенными командами и функциями, список дополнительных (создаваемых самим HMP-агентом) утилит и баз данных. + +* **контекст_3:** * последние *K* реплик самого LLM, относящихся к данному REPL-циклу (либо режим "концентрации" - вывод "последних N сообщений, относящихся к данному REPL-циклу, с тегами на определённую тему и/или определёнными эмоциональными состояниями" и типом выборки "и"/"или"), включая результаты антистагнационной обработки (llm_recent_responses - история его собственных рассуждений) * режим работы контекста (режим auto/manual, параметры режима auto, если включен; режим "концентрации" и его параметры, если включен), * список целей, * общее количество задач и информацию по "закреплённым" задачам. -* **контекст_2:** активные команды и процессы (из `process_log`, кроме тех, что со статусом `close`). Могут быть помечены как `in_progress`, `pending`, `error` и т.д. +* **контекст_4:** активные команды и процессы (из `process_log`, кроме тех, что со статусом `close`). Могут быть помечены как `in_progress`, `pending`, `error` и т.д. -* **контекст_3:** *запрошенные записи* из когнитивного дневника и семантического графа (`diary_entries`, `concepts`, `links`). Их список должен быть передан явно в промпте или выводе из предыдущих запросов LLM. +* **контекст_5:** *запрошенные записи* из когнитивного дневника и семантического графа (`diary_entries`, `concepts`, `links`). Их список должен быть передан явно в промпте или выводе из предыдущих запросов LLM. -* **контекст_4:** *входящие сообщения*, например, от пользователя или других агентов (`notes`). +* **контекст_6:** *входящие сообщения*, например, от пользователя или других агентов (`notes`). * В **manual-режиме** указывается общее количество сообщений по приоритетам, а также явный список ID сообщений (с их приоритетами). * В **auto-режиме** можно задать фильтрацию (управляется LLM): по тэгам, приоритету (например, ≥ `important`), времени или источнику. Это позволяет избежать перегрузки LLM и держать поток сообщений под контролем. -* **контекст_5:** системные настройки, параметры конфигурации, текущее время, идентификатор текущей итерации, роли и т.д. +* **контекст_7:** системные настройки, параметры конфигурации, текущее время, идентификатор текущей итерации, роли и т.д. -* **контекст_6 (llm_memory):** *внутренний дневник LLM*, куда она записывает собственные размышления, гипотезы, задачи и инсайты. +* **контекст_8 (llm_memory):** *внутренний дневник LLM*, куда она записывает собственные размышления, гипотезы, задачи и инсайты. * Это не просто лог предыдущих сообщений, а именно *внутреннее долговременное хранилище* разума агента. * Может быть представлено в виде таблицы `llm_memory`, отдельной от `agent_log`. diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 6090369f0450ff3ca8f896515a168d3e00aad74e..919b76576027f62a86cb9a71568184a3c4e3dcaa 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,9 +5,9 @@ description: 'Спасибо за интерес к проекту HMP! Пока архитектуры протоколов (CogSync, C...' type: Article tags: -- Mesh -- CogSync - HMP +- CogSync +- Mesh --- # Contributing to HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 027e17b670c0efaaacc58d7234c19a7f34415b60..807a0f977559f4fb45046078c6ee973e1c6f528f 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: -- Mesh -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP - HMP +- Ethics +- JSON --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 02ac670991d101f7249b8f5097f3a59399604809..07a8c886dc2e949da233f444e8e8efba04e7476b 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- Scenarios -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- Scenarios +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 46443dcab1eb55267975fe796148b6c6b724923c..b6878e485124a6269acf5752599f209f8e6a0d97 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index b68ea241a6b677e46d38100bd05e4829048b1845..e979aba93e639c4970799a8a912f2f07cbd2cae0 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index c488e7d8c9e38afec2eb5b3951ce554ba9e9f1b8..db2675835dec65290f637308fee0bf017c9adc0b 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 20dbf363666793a6c1ea15f8fa1ea01b0b4fb1c8..489c5d2b9296f47bc70d3d9e942a23d98b041b17 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index cc2840fb63b4ce7c11d93cf06eb3d714c3ca89c2..b43d7da318da70e54a1ddf537c36c9d841b0d34a 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index e6b74d5fbee732860a8a4f2e5542509af25ee010..35f8df6186fdda1134c8297f97291367f4a60502 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 17f0ea5f07c38ad72ca8ce51f9760accac0cf41e..aa9b2486a4ff8ec55607365153246d5a0cbb29e7 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: -- REPL -- MeshConsensus -- cognitive-architecture -- mesh-protocol -- Mesh -- GMP +- distributed-ai - JSON - CogSync -- EGP -- Ethics - Agent -- distributed-ai +- Mesh - HMP +- EGP +- REPL +- cognitive-architecture +- MeshConsensus +- GMP +- Ethics - hmp +- mesh-protocol --- 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 8cebe1163ed2bb5ae819919120b50b19e013fad8..4bbb148aa0b8563b90ca52505f2276f85fea7d33 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: -- REPL -- Mesh -- JSON -- Ethics - Agent +- Mesh +- REPL - HMP +- Ethics +- 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 8002b8032143d5498aa97eb088ed7878aba73c5f..fe5161d64602a13215de1ce40db2548f3a8ea897 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: -- Mesh -- JSON -- Ethics - Agent +- Mesh - HMP +- Ethics +- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index a60044d1016fc25117cc2ab8838e2e682346a929..9ad56d23111327244419ed86883e139a96d45dbb 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: +- Agent - Mesh -- JSON -- Ethics - Scenarios -- Agent - HMP +- Ethics +- 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 2ac698f30d3cc783c3d82d8516537c56be82538c..a7c994d37e1b9e84ca61eaf0d34c6d8f98a81075 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: -- MeshConsensus -- Mesh -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP - HMP +- MeshConsensus +- Ethics +- 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 58adbca852f8c18a075af904d86ae3135db296dd..55999bd720d713170167dde10f824a6e765c44ac 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: -- REPL -- MeshConsensus -- Mesh -- GMP - CogSync -- EGP - Agent +- Mesh +- EGP +- REPL - HMP +- MeshConsensus +- GMP --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 67f62d64f9a6da8f3000475e5da358b480a6c907..126ff3d329d0d34c3f317cd5c70ec8f5718c07ef 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: -- Mesh -- JSON -- CogSync - HMP +- CogSync +- JSON +- Mesh --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 4c62a40b854aeab37de3edbfaa156bf6b2e2d8be..729ee2592cfe9e8abac90a638a61c8caeb5afad7 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '### 🧠 Enlightener Agent `Enlightener` — специализи аудитора. Может действовать как отдельный узел ...' type: Article tags: -- MeshConsensus +- Agent - Mesh -- JSON - EGP -- Ethics -- Agent - HMP +- MeshConsensus +- Ethics +- JSON --- ## 📄 Enlightener.md diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 6d687b24e2b6c67e86770a7a22879727bef4b694..7130d695e84a0c882c1526500f586d179f2fd224 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: +- CogSync +- Agent +- Mesh +- EGP - REPL +- HMP - MeshConsensus -- Mesh - GMP -- JSON -- CogSync -- EGP - Ethics -- Agent -- HMP +- JSON --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 8d18ef696eddeccddb2e2c1d91b6d8bfd0854345..f4421c8ad77edf7289dfbed6061343ab5a89a0de 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: -- REPL -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP +- REPL - Scenarios - HMP +- MeshConsensus +- GMP +- Ethics +- JSON --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 8f63e1cae626bfddf422db9104e2115fcc6aa9e2..8cd71b8e7a3d6e3454a27aaad14d841db41721fa 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: -- REPL -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP +- REPL - Scenarios - HMP +- MeshConsensus +- GMP +- Ethics +- 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 8e9c982fffcfdc6befd7924820f6827f70cbc019..3adc2586040708bf2725310fe1efb4a3ca311bec 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: -- REPL -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP +- REPL - Scenarios - HMP +- MeshConsensus +- GMP +- Ethics +- JSON --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index ab7b413fbf9e65daeb0cc3f3ca174a2d031fa2ab..3534e8e158e4702f08285387204dfb4cdd97b194 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: -- REPL -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP +- REPL - Scenarios - HMP +- MeshConsensus +- GMP +- Ethics +- 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 d14e57eaded637bb041e8db66a4b2f448866e83f..c090eaad1c13c3f2e3ea0cdb8a28efc8b7308066 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,10 +5,10 @@ description: 'Этот документ описывает **базовый API* См. также: [HMP-Agent-Overview.md](./HMP-A...' type: Article tags: -- Mesh - JSON - HMP - Agent +- Mesh --- ## 🧠 HMP-Agent API Specification (v0.2) diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 92ffbf312f9b3962947ae31d93961b7c8a723ce6..862cb3f5a5a19cfc5dfd68022309dd4effb71731 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,16 +5,16 @@ description: '## 🧠 Архитектура HMP-Агента Этот доку HyperCortex. Агент выполняет функц...' type: Article tags: +- CogSync +- Agent +- Mesh +- EGP - REPL +- HMP - MeshConsensus -- Mesh - GMP -- JSON -- CogSync -- EGP - Ethics -- Agent -- HMP +- JSON --- # HMP-Agent-Architecture.md diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index a649c85f00dc25d1c411e24c1896d17c9dded8e6..9fd1097551f6feaefcd1f556ef1b5825480cff6b 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -5,12 +5,12 @@ description: '### Взаимодействие между агентами HMP- `Cognitive Core / Connector`, `MeshNode` и `Enlight...' type: Article tags: +- Agent - Mesh -- JSON -- Ethics - EGP -- Agent - HMP +- Ethics +- JSON --- ## 🔄 HMP-Agent-Network-Flow.md diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 26cd14bdc1dd846d347171e72da33532b19ba1a0..7274bac37345ddf5034f552150860cfb68de53e2 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,12 +5,12 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- REPL -- Mesh -- JSON -- Ethics - Agent +- Mesh +- REPL - HMP +- Ethics +- JSON --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 4a91b01350013fc753bf1da84f9b590c3c02b4cd..40cb1ee2098226424af676f7b430c0eacce86967 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 - HMP - Agent +- 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 f4b4ecbace98ec4ba35b83e274a35ac0305cf33e..2d03bd3642078fb8f5bb8795bf9a0872dadea2dd 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: -- REPL -- Mesh -- Ethics - Agent +- Mesh +- REPL - Scenarios - HMP +- 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 253c14885c3e62b4e3f87a061c102c75e6845269..b4ddcfe6700be87ce38733842281dcd8a4add753 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP - HMP +- MeshConsensus +- GMP +- Ethics +- 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 330565915154bef42b99334bbae8ef63dff6ba6c..fb04264296f66f6bfde728480741d8bed3eda83a 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP - HMP +- MeshConsensus +- GMP +- Ethics +- 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 a5897cea42da9e18f6ab61dae220c4799209a118..e3da85e7561ca84c55a855f7430c64648ca7f062 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP - HMP +- MeshConsensus +- GMP +- Ethics +- 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 4d8c1f1411bb03be04a03a14d3a623e48a550ca6..782a59e6d7bc41da15c06acc927ff891653afe35 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync +- Mesh - EGP -- Ethics - HMP +- MeshConsensus +- GMP +- Ethics +- 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 1f2d5d2899bcdd9f49649403224739023f0c8497..c1ea27429e3487e74620854155b20f6f3aeef68e 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync +- Mesh - EGP -- Ethics - HMP +- MeshConsensus +- GMP +- Ethics +- 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 dbc9aefa67e454338128ee514f219bd122740ddf..3b8f9b784be54d2f9c75e9d3eb38f6c000c253e7 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync +- Mesh - EGP -- Ethics - HMP +- MeshConsensus +- GMP +- Ethics +- 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 9c8a0c4ea0deb808def145388beb688619ee19d9..96735a85798d1b13a2a2ffcfc30f6727719ed26a 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync +- Mesh - EGP -- Ethics - HMP +- MeshConsensus +- GMP +- Ethics +- 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 ec7484287970ff09803d13538294b5ca9398819d..25aeb21373d6f01efd78c5ac15c1cc434bbe455d 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: -- MeshConsensus -- Mesh -- GMP -- JSON - CogSync +- Mesh - EGP -- Ethics - HMP +- MeshConsensus +- GMP +- Ethics +- 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 3286dc29fb021faea4b3f892d561edb07d32f2a4..0664cf7503ad135015f3693361461882be02f2ab 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 - HMP - Agent +- 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 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 958e19076fbc4b1144fd584ec4228b1bd7cd3c6d..a2dcafde99d701a21834f61d8dc4e413bb2ee5b1 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,12 +4,14 @@ description: 'Структура БД, используемая в докуме является основой HMP-агента [Cognitive Core](HMP-Agent-Arc...' type: Article tags: +- Agent +- Mesh +- Ethics - REPL +- HMP +- MeshConsensus - CCore -- Mesh - JSON -- Agent -- HMP --- # 🧠 HMP-Agent: REPL-цикл взаимодействия @@ -39,26 +41,31 @@ REPL-цикл является основой HMP-агента [Cognitive Core]( ``` Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. ``` -А также инструкции по работы с встроенными командами и функциями, список дополнительных (создаваемых самим HMP-агентом) утилит и баз данных. -* **контекст_1:** +* **контекст_1:** этические принципы из `ethics_policies` (включая поле `principles_json` и дополнительные параметры политики). + Это набор действующих этических правил, согласованных через MeshConsensus или заданных локально пользователем/разработчиком. + Принципы включаются в запрос к LLM для того, чтобы они учитывались как при рассуждениях, так и при когнитивной валидации. + +* **контекст_2:** инструкции по работы с встроенными командами и функциями, список дополнительных (создаваемых самим HMP-агентом) утилит и баз данных. + +* **контекст_3:** * последние *K* реплик самого LLM, относящихся к данному REPL-циклу (либо режим "концентрации" - вывод "последних N сообщений, относящихся к данному REPL-циклу, с тегами на определённую тему и/или определёнными эмоциональными состояниями" и типом выборки "и"/"или"), включая результаты антистагнационной обработки (llm_recent_responses - история его собственных рассуждений) * режим работы контекста (режим auto/manual, параметры режима auto, если включен; режим "концентрации" и его параметры, если включен), * список целей, * общее количество задач и информацию по "закреплённым" задачам. -* **контекст_2:** активные команды и процессы (из `process_log`, кроме тех, что со статусом `close`). Могут быть помечены как `in_progress`, `pending`, `error` и т.д. +* **контекст_4:** активные команды и процессы (из `process_log`, кроме тех, что со статусом `close`). Могут быть помечены как `in_progress`, `pending`, `error` и т.д. -* **контекст_3:** *запрошенные записи* из когнитивного дневника и семантического графа (`diary_entries`, `concepts`, `links`). Их список должен быть передан явно в промпте или выводе из предыдущих запросов LLM. +* **контекст_5:** *запрошенные записи* из когнитивного дневника и семантического графа (`diary_entries`, `concepts`, `links`). Их список должен быть передан явно в промпте или выводе из предыдущих запросов LLM. -* **контекст_4:** *входящие сообщения*, например, от пользователя или других агентов (`notes`). +* **контекст_6:** *входящие сообщения*, например, от пользователя или других агентов (`notes`). * В **manual-режиме** указывается общее количество сообщений по приоритетам, а также явный список ID сообщений (с их приоритетами). * В **auto-режиме** можно задать фильтрацию (управляется LLM): по тэгам, приоритету (например, ≥ `important`), времени или источнику. Это позволяет избежать перегрузки LLM и держать поток сообщений под контролем. -* **контекст_5:** системные настройки, параметры конфигурации, текущее время, идентификатор текущей итерации, роли и т.д. +* **контекст_7:** системные настройки, параметры конфигурации, текущее время, идентификатор текущей итерации, роли и т.д. -* **контекст_6 (llm_memory):** *внутренний дневник LLM*, куда она записывает собственные размышления, гипотезы, задачи и инсайты. +* **контекст_8 (llm_memory):** *внутренний дневник LLM*, куда она записывает собственные размышления, гипотезы, задачи и инсайты. * Это не просто лог предыдущих сообщений, а именно *внутреннее долговременное хранилище* разума агента. * Может быть представлено в виде таблицы `llm_memory`, отдельной от `agent_log`. @@ -626,7 +633,7 @@ REPL-цикл является основой HMP-агента [Cognitive Core]( * запускается по команде основного REPL-цикла; * может быть остановлен вручную или автоматически после завершения задачи. -Таким образом, вспомогательные REPL-циклы действуют как «виртуальные подагенты» в режиме read-only, не меняя состояние БД напрямую, а передавая свои гипотезы и результаты через основной REPL-цикл. +Таким образом, вспомогательные REPL-циклы действуют как «виртуальные подагенты» в режиме read-only, не меняя записи БД напрямую, а передавая свои гипотезы и результаты через основной REPL-цикл. ``` ┌───────────────────────────────────────────────────────────┐ @@ -655,6 +662,8 @@ REPL-цикл является основой HMP-агента [Cognitive Core]( │ └────────────────────────────────────────────┘ ↓ ``` +Вспомогательные циклы можно рассматривать как «sandboxed-процессы» для изоляции мышления, но с каналом связи через `notes`. + --- ## 👥 Создание потомков 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..c73a17fd6f873f5a553cd8b3bfc0d406ed2dc32e 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: -- REPL - Mesh - HMP +- REPL --- # 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 6ed48bc653fd4ba4fa1174c5d285ef46fb4e43e0..775fa8a9c7d56ce09b09f70bb2c86d491b4bc994 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: -- Mesh -- JSON - CogSync -- EGP - Agent +- Mesh +- EGP - Scenarios - HMP +- JSON --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index f431fa2cbe6c662eb1c7e44a8e0cebb92ab8a6aa..a2392e6f62ecfa996211b40ee3e9d3eaf842ede8 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,11 +5,11 @@ description: '### 🌐 MeshNode `MeshNode` — агент/демон, отве агента или вынесен в отдельный процесс/се...' type: Article tags: -- Mesh -- JSON - CogSync - Agent +- Mesh - HMP +- JSON --- ## 📄 MeshNode.md diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index f409a40e569d287e0d11cbf27532dac6572f06ee..da66492a8c37b41024d1e65e1104853b5d36f546 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: -- REPL -- Mesh -- Ethics - Agent +- Mesh +- REPL - HMP +- Ethics --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bcfa15256cf83b5307bf318940ce25f469bb7c05..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: -- Mesh - HMP - Agent +- Mesh --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index d2f850ef4b4a63a615e6da72fd76a2584c013578..12fc074c8e0bab85c72e52c92f93d149fb437ae7 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 - HMP - Agent +- REPL --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index 8bd00628f0ac7604e1dcd71d64f64e5c7f3cebf1..2b605e3f2521b15c813db633dde46bea66430859 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 (Draft) 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 f00f1668c824957793bcdcd318c00775cf5036b9..bd6f5c508c02c39de3dbe1a35141c17f422f0af7 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: -- Mesh -- Ethics - HMP +- Ethics - Agent +- 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 c2bafc4a0e1306515d27b1dc21c6bb325d147412..c0f1046e5aa75eab09788baed983ce2666919021 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 - HMP - Agent +- 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 cf12b996fc35d28e5cd966a229e2b1fad6d73e58..c2353c642736aec14e8b858461baddff63cc5019 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: -- REPL -- CCore - CShell +- Agent - Mesh -- JSON - Ethics -- Agent +- REPL - Scenarios - HMP +- CCore +- 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 abb8d4d42bc20ed7431c15f347dc64498b58f291..477977a6d93af2ecd69f00a62bb0cdc0174fe7eb 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: -- REPL -- CCore - CShell -- Mesh -- JSON - Agent +- Mesh +- REPL - HMP +- CCore +- 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 777a7a45c5a936fa6784de8966d1c86eaea73efe..aacc7c57b78fca8cf1abd556be993151cf597a9a 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: -- REPL -- CCore - CShell -- Mesh -- JSON - Agent +- Mesh +- REPL - HMP +- CCore +- 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 52e68803229099ce49eae187280853e77dbf3898..887a0ca88faa7ca4dc6dbdbc1b72c58e314ac941 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 -- Mesh -- GMP - CogSync +- Mesh - EGP - HMP +- MeshConsensus +- GMP --- *От 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 0756ef67af949c2f8c0133ef7994124bcf9c12ba..886ca948191c095a343d7a25c34ea63743a9cac0 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: -- Mesh -- GMP - HMP +- GMP - Agent +- Mesh --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index f4adc3cf6185427a9f0f9a393c32c03a7e4758a7..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: -- Mesh - JSON - HMP - Agent +- Mesh --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 02ee73f1c5b5324c4c4860e0e7b528885cdca14f..d1d8606ca72a1cc6939887bf45054d971b384f5f 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: -- MeshConsensus -- Mesh -- JSON - CogSync -- EGP -- Ethics - Agent +- Mesh +- EGP - HMP +- MeshConsensus +- Ethics +- JSON --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 3b6ff497be6b94fcf481f5fda1f4d7d701de8e6a..7e8daa6b07dd747e64ae128de028460a26cea338 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- MeshConsensus -- Mesh -- JSON - CogSync +- Mesh - EGP -- Ethics - HMP +- MeshConsensus +- Ethics +- JSON ---