diff --git a/agents/tools/db_structure.sql b/agents/tools/db_structure.sql index c0ca690b81c7f62ad5321e35fab4d8d80c6960ac..28e3b6bc91d99d4312d13e33392dcbe4fa4ca666 100644 --- a/agents/tools/db_structure.sql +++ b/agents/tools/db_structure.sql @@ -575,8 +575,10 @@ GROUP BY tag ORDER BY usage_count DESC; -- ============================================ --- View для агрегированных метрик валидации +-- Таблицы и VIEW для когнитивной валидации -- ============================================ + +-- View для агрегированных метрик валидации CREATE VIEW IF NOT EXISTS validation_stats AS SELECT r.id AS msg_id, @@ -591,3 +593,30 @@ FROM llm_recent_responses r, LEFT JOIN llm_registry l ON l.name = v->>'LLM' GROUP BY r.id; +-- ============================================ +-- Таблицы и VIEW для антистагнации +-- ============================================ + +-- Метрики антистагнации по итерациям REPL +CREATE TABLE IF NOT EXISTS anti_stagnation_metrics ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + tick_id TEXT NOT NULL, -- идентификатор итерации REPL (может совпадать с id из process_log или llm_recent_responses) + novelty_score REAL DEFAULT 0, -- интегральная оценка новизны + new_ideas INTEGER DEFAULT 0, -- количество новых идей + refined_ideas INTEGER DEFAULT 0, -- количество уточнённых/улучшенных идей + discarded_ideas INTEGER DEFAULT 0, -- количество отклонённых идей + emotions_json TEXT, -- JSON с эмоциональным профилем (например: {"enthusiasm":3,"anxiety":-1}) + created_at DATETIME DEFAULT CURRENT_TIMESTAMP -- время фиксации метрик +); + +-- Представление для анализа динамики новизны +CREATE VIEW IF NOT EXISTS v_anti_stagnation_trends AS +SELECT + date(created_at) AS day, + AVG(novelty_score) AS avg_novelty, + SUM(new_ideas) AS total_new_ideas, + SUM(refined_ideas) AS total_refined, + SUM(discarded_ideas) AS total_discarded +FROM anti_stagnation_metrics +GROUP BY date(created_at) +ORDER BY day; diff --git a/docs/HMP-agent-REPL-cycle.md b/docs/HMP-agent-REPL-cycle.md index f4ac84be81e90047796f692651be8934ba9646de..aaf67783cf91cab8da359318d2c6f1ef22bb8b6e 100644 --- a/docs/HMP-agent-REPL-cycle.md +++ b/docs/HMP-agent-REPL-cycle.md @@ -403,24 +403,24 @@ REPL-цикл не работает изолированно: агент пос --- -### UX и управление задачами +## UX и управление задачами Пользователь взаимодействует с агентом не через прямые команды CLI, а через систему сообщений `notes`. Сообщение может быть простым текстом, либо содержать ключевые слова или хэштеги, которые агент трактует как инструкции. Для отладки и отправки сообщений из внешних утилит предусмотрен скрипт `add_message.py`, позволяющий добавлять записи в `notes` из командной строки. -#### Управление агентом через LLM +### Управление агентом через LLM * Агент управляется в основном через **команды от LLM** (см. Список команд от LLM по категориям). * Эти команды формируются в REPL-цикле и интерпретируются агентом как действия: работа с дневником, задачами, целями, графами, памятью, настройками цикла, Mesh и внешними процессами. -#### Конфигурируемые параметры REPL +### Конфигурируемые параметры REPL * **mode** — автоматическая или ручная обработка (`auto/manual`). * **idle** — ожидание с условиями пробуждения (сообщения, процессы, таймаут). * **responses=N** — количество последних ответов для анализа. * **concentration** — режим концентрации с фильтрами по тегам и эмоциям. * Это неполный список. Все параметры управляются через команды категории (см. Настройки цикла). -#### API-интерфейсы +### API-интерфейсы * Для связи с внешними системами и пользовательскими приложениями предусмотрен **Web API** (`web_ui.py`). * Для агента поддерживаются операции чтения/записи для: - `notes`, `diary_entries`, `concepts`, `tasks`, `goals`, `llm_memory`, @@ -556,6 +556,36 @@ REPL-цикл не работает изолированно: агент пос --- +### 🎯 Метрики антистагнации +Антистагнационные механизмы работают на основе количественных и качественных метрик, позволяющих отслеживать динамику идей и поддерживать продуктивность размышлений. + +**Основные метрики** +* **novelty_score** — интегральная оценка новизны ответа относительно текущей записи `llm_recent_responses`. +* **new_ideas** — количество полностью новых концептов, не встречавшихся ранее. +* **refined_ideas** — количество уточнённых или улучшенных концептов (связанных с существующими). +* **discarded_ideas** — количество отклонённых идей (по итогам когнитивной/этической валидации). + +**Исторический анализ** +* Метрики фиксируются по каждой итерации REPL и сохраняются в таблице `anti_stagnation_metrics`. +* В когнитивный дневник записываются только сводки и исключительные случаи (например: резкий спад новизны, всплески идейности, аномалии в эмоциональной динамике). +* Для анализа применяются **time-series графики** (например, рост/спад новизны во времени). +* Возможно выявление фаз стагнации и всплесков идейности. + +**Эмоциональная динамика** +* В дополнение к когнитивным метрикам учитываются **эмоциональные состояния** из LLM (`emotions`). +* Каждая сессия LLM может включать распределение эмоций (например: "восторженность: 3, тревожность: 1, скука: 0"). +* Связка новизны и эмоций позволяет различать: + - продуктивное возбуждение (новые идеи при положительных эмоциях), + - «паническое» новаторство (много идей при высоком уровне тревожности), + - «выгорание» (низкая новизна и снижение эмоционального тонуса). + +**Применение метрик** +* Используются при выборе антистагнационной стратегии (`stagnation_strategies`). +* Могут учитываться при когнитивной валидации (например, низкая новизна → жёстче фильтровать идеи). +* Сводки метрик фиксируются в когнитивном дневнике и могут служить основанием для Mesh-обмена. + +--- + ### 🔍 Алгоритм выбора механизма разрыва цикла 1. **Диагностика источника стагнации**: diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 3b9a1b3ce656f8c4609e844732dece3afc72205c..b54ed3dd16ffaafb2f1ce1f5756bb23a9a4da035 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,9 +5,9 @@ description: 'Спасибо за интерес к проекту HMP! Пока архитектуры протоколов (CogSync, C...' type: Article tags: -- Mesh -- HMP - CogSync +- HMP +- Mesh --- # Contributing to HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 575a58104f8eb6f753f10c43f9f6e97cee5bd8dc..7cf1d10f898c259080ea52010efef98388b8e2b1 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: +- Ethics +- HMP - CogSync -- EGP +- JSON - Agent -- HMP +- EGP - Mesh -- JSON -- Ethics --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index a341afb4ff220078f8bcd12cd044f60245f75a84..66fc4d46c82e6c0c6447b968ce845183dd739d35 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL +- Ethics - Scenarios -- Agent - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index ae590a86fdb68bf6ee3a83879794a9a2914716d7..f3f72d92d4750b7cc750a3aea82a31b543514525 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL -- Agent +- Ethics - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index f0ac0faa8eeb40a142bfc4eabb9ccb2c298e3d7c..6cc476214985289b5ca133990f079d727a468c09 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL -- Agent +- Ethics - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 9475012ee0538c6cbf9ac0977901f5795a7ade6c..a5a25868384d8aa4d8214c377c0726e79c10dd4d 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL -- Agent +- Ethics - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 09deb487bfb784a36bf816a1628f90569a0236ea..704103740807fb1ebb6361542696d304925cd8c7 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL -- Agent +- Ethics - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 21d1837b710360897eb8db2b410a82b8e895a6a2..9c10780733f2238f1e528d21ecd78b7733955c9d 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL -- Agent +- Ethics - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index d2ac151be662573010516a32fb315f5d29daf5ba..3372ba394ecd5ebd4b82444db96066da7df2c445 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL -- Agent +- Ethics - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 978efc672df2dc85f1c0833c1abe770faef3902f..25c0a84da5f747952f7c26d40cf2201a2d1e1535 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: -- CogSync -- hmp -- EGP +- mesh-protocol - REPL -- Agent +- Ethics - HMP -- GMP -- mesh-protocol -- Mesh +- hmp +- CogSync - JSON - cognitive-architecture - distributed-ai -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- 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 79eed697a03d1d431642050ca9ce6c7a197618a8..960d79cc99ea51725bd2beece145c440b17b42ac 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -6,11 +6,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан type: Article tags: - REPL -- Agent +- Ethics - HMP -- Mesh - JSON -- Ethics +- Agent +- Mesh --- Запуск: `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 ea297986f3e4badb336962814ff9271c37e87821..0417e0dfed0a69fbba58f1db3a55f28c379236d9 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: -- Agent +- Ethics - HMP -- Mesh - JSON -- Ethics +- Agent +- Mesh --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 3969c00fd9106f6bceb0a59a28226d603248153d..0061055316529088def8d8171b8f197432bb5b14 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -6,11 +6,11 @@ description: This document consolidates proposed improvements from multiple AI a type: Article tags: - Scenarios -- Agent +- Ethics - HMP -- Mesh - JSON -- Ethics +- Agent +- Mesh --- # 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 e44602931d19c127ca8f9353474a5688eace7004..2d5a0acf20deaa284ea9e9ca86b69ddae814b19e 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: +- Ethics +- HMP - CogSync -- EGP +- JSON - Agent -- HMP - Mesh -- JSON -- Ethics - MeshConsensus +- EGP --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 0a9bfbaf147d129ce5932577367a609b775d14fc..fbc1df271ea1c7057ab28fffd9bf7cf0a119e54a 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: -- CogSync -- EGP - REPL -- Agent - HMP -- GMP +- CogSync +- Agent - Mesh - MeshConsensus +- EGP +- GMP --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 6673afe08a948655628f5a918cc9c9807f35b7cc..8eae4d6a2a8c96535e694299df687a7792302a2c 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,9 +6,9 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: -- Mesh -- HMP - CogSync +- HMP +- Mesh - JSON --- diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 08b8711e35e62ff71e49829571b1f5296c4d98eb..942a42ab794812094725417a06f98518f898bd02 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,12 +5,12 @@ description: '### 🧠 Enlightener Agent `Enlightener` — специализи аудитора. Может действовать как отдельный узел ...' type: Article tags: -- EGP -- Agent +- Ethics - HMP -- Mesh - JSON -- Ethics +- Agent +- EGP +- Mesh - MeshConsensus --- diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 28b66bdcbf1ecd9b4de72b587350f48999405ec7..83f98be016069a03e6e07e50774fbce1c7457e0c 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 -- EGP - REPL -- Agent +- Ethics - HMP -- GMP -- Mesh +- CogSync - JSON -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 74cad17bf39d9c8ca0c91db4db354673889b2f35..e83f99b6b84eee7aef56b7ac0accb14f9a8249d5 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: -- CogSync -- EGP - REPL +- Ethics - Scenarios -- Agent - HMP -- GMP -- Mesh +- CogSync - JSON -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index b410008bd9764bb31593fe13f292e8f2287a5bf2..4b5d9828b68ca973e584b501887989062dcfa284 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: -- CogSync -- EGP - REPL +- Ethics - Scenarios -- Agent - HMP -- GMP -- Mesh +- CogSync - JSON -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- # 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 155a3ba29094283e3bc019085904aeca20e0b31d..c92d1651a875ae79aed1dae59a19a7de89cb4218 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: -- CogSync -- EGP - REPL +- Ethics - Scenarios -- Agent - HMP -- GMP -- Mesh +- CogSync - JSON -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index dfd921d9e493157784fe60bb1e830c6e8d11ac74..a505fd6501fd668098f903460199658d331ec408 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: -- CogSync -- EGP - REPL +- Ethics - Scenarios -- Agent - HMP -- GMP -- Mesh +- CogSync - JSON -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- # 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 89d8d5dc212bbea5b9e9c8e75609eab505bda106..2a9b9ffd0450fb7a183638dc283cb3b44d7d2785 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: +- HMP +- JSON - Mesh - Agent -- JSON -- HMP --- ## 🧠 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 32f99a6d8667c3fbe8586c6321706d4f1188c5e2..e201ab873ce399336104baebc2be644c9d8de46f 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 -- EGP - REPL -- Agent +- Ethics - HMP -- GMP -- Mesh +- CogSync - JSON -- Ethics +- Agent +- Mesh - MeshConsensus +- EGP +- GMP --- # 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 8015909591cc6abf4c910cd8398504e142c760af..722f83b9e9a92d85b6844fec61da6596375f1e99 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: -- EGP -- Agent +- Ethics - HMP -- Mesh - JSON -- Ethics +- Agent +- EGP +- Mesh --- ## 🔄 HMP-Agent-Network-Flow.md diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 6b48fb6ad52d0ce1cee29945b7a5ae84cf8a720a..394bc59be8101a0f49c49bf21c3e7e38d7f866b9 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -6,11 +6,11 @@ description: '| Тип | Название | Роль type: Article tags: - REPL -- Agent +- Ethics - HMP -- Mesh - JSON -- Ethics +- Agent +- Mesh --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 4be14e7b0c9f5e153b27b6f3c04106c8facb2945..60d18c1da59e881943f12c16ee1520e7a0d40193 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 - Mesh - Agent -- HMP -- 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 e7fd51382fa4bb2772d5dff1238bd28701e79210..72b7b145fb94abd29122cb2934ae6f462ec66013 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -6,11 +6,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc type: Article tags: - REPL +- Ethics - Scenarios -- Agent - HMP +- Agent - Mesh -- 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 b06b846cface874b2ced11c364d906b167cab1b8..318d340da9993a53fe54e73ce213030cfc5fe094 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: +- Ethics +- HMP - CogSync -- EGP +- JSON - Agent -- HMP -- GMP - Mesh -- JSON -- Ethics - MeshConsensus +- EGP +- GMP --- # 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 7db47ff4fe2ead2d2b46152a74b14bcd5ca7c366..6f8819d0459834557551d8e63d7873ccb45f55df 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: +- Ethics +- HMP - CogSync -- EGP +- JSON - Agent -- HMP -- GMP - Mesh -- JSON -- Ethics - MeshConsensus +- EGP +- GMP --- # 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 9b0966cb6d9c23ca3c12facfde493cabb4d22ccb..7a43349b293ef38df7dd0d0905834ea06b094062 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: +- Ethics +- HMP - CogSync -- EGP +- JSON - Agent -- HMP -- GMP - Mesh -- JSON -- Ethics - MeshConsensus +- EGP +- GMP --- # 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 62a1d3935249f80b2cca358cd4372bc315b8b4bd..73cdcb3f1b50b7fb26a5bbebe1cd776fb02c7717 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -4,13 +4,13 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...' type: Article tags: -- CogSync -- EGP +- Ethics - HMP +- CogSync +- JSON - Mesh - MeshConsensus -- JSON -- Ethics +- EGP - GMP --- diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 1dd8b29658423cf9c73cdc0f65c880dad76167d3..74fc651b16c2b2db4e704e5e5f0fa86e0dcefabf 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -5,13 +5,13 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** 상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...' type: Article tags: -- CogSync -- EGP +- Ethics - HMP +- CogSync +- JSON - Mesh - MeshConsensus -- JSON -- Ethics +- EGP - GMP --- diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index 22b92c981ba2af8ae14707b117ec5cbee3e85548..39628023a180113a9aceb39bbd06d6adc449892e 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -5,13 +5,13 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч координации между автономными агент...' type: Article tags: -- CogSync -- EGP +- Ethics - HMP +- CogSync +- JSON - Mesh - MeshConsensus -- JSON -- Ethics +- EGP - GMP --- diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 609ca87f2d9c7b276bb7c99d7d328b84757fed5c..84e15c995fa2c4113cd49f21059065edbcdcecf1 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -5,13 +5,13 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # між автономними агентами. Він...' type: Article tags: -- CogSync -- EGP +- Ethics - HMP +- CogSync +- JSON - Mesh - MeshConsensus -- JSON -- Ethics +- EGP - GMP --- diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index e8351209bb28e444a3798a726dbc323796154355..09db8fc75064dfb793bdcaf0de20b8c3926e0906 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -5,13 +5,13 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM —— 通过共享协议栈交换目标、任务、...' type: Article tags: -- CogSync -- EGP +- Ethics - HMP +- CogSync +- JSON - Mesh - MeshConsensus -- JSON -- Ethics +- EGP - GMP --- diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index 1dd66bdbf292c385570a1b0b31070620315430c4..68736d80c0ad7d824532f326b59e2d72cca0548c 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 - Mesh - Agent -- HMP -- REPL --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md index 878208be524bd2e1291efcdaa05c98d9adbb8ea4..70267ab26cdd4cde919c447332a776f329812e1f 100644 --- a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +++ b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md @@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб режиме ожидания). * Основная задача такой архитектур...' type: Article tags: -- HMP - REPL +- HMP --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index e81d84a4e32b415740809192cbed2e75bfd4bc4f..752f5e0a0242173b8ddc6c17961ca4843a8e0d30 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: -- CogSync - REPL -- Agent +- Ethics - HMP -- GMP -- Mesh +- CogSync - JSON -- CCore -- Ethics +- Agent +- Mesh - MeshConsensus +- GMP +- CCore --- # 🧠 HMP-Agent: REPL-цикл взаимодействия @@ -383,7 +383,7 @@ REPL-цикл HMP-агента должен корректно функцион ## Взаимодействие с Mesh REPL-цикл не работает изолированно: агент постоянно обменивается данными и координирует действия с другими узлами сети HMP. -Для этого задействуются сетевые протоколы HMP (см. [HMP-0004-v4.1.md]). +Для этого задействуются сетевые протоколы HMP (см. [HMP-0004-v4.1.md](HMP-0004-v4.1.md)). ### Этапы взаимодействия @@ -421,6 +421,32 @@ REPL-цикл не работает изолированно: агент пос --- +## UX и управление задачами + +Пользователь взаимодействует с агентом не через прямые команды CLI, а через систему сообщений `notes`. +Сообщение может быть простым текстом, либо содержать ключевые слова или хэштеги, которые агент трактует как инструкции. +Для отладки и отправки сообщений из внешних утилит предусмотрен скрипт `add_message.py`, позволяющий добавлять записи в `notes` из командной строки. + +### Управление агентом через LLM +* Агент управляется в основном через **команды от LLM** (см. Список команд от LLM по категориям). +* Эти команды формируются в REPL-цикле и интерпретируются агентом как действия: работа с дневником, задачами, целями, графами, памятью, настройками цикла, Mesh и внешними процессами. + +### Конфигурируемые параметры REPL +* **mode** — автоматическая или ручная обработка (`auto/manual`). +* **idle** — ожидание с условиями пробуждения (сообщения, процессы, таймаут). +* **responses=N** — количество последних ответов для анализа. +* **concentration** — режим концентрации с фильтрами по тегам и эмоциям. +* Это неполный список. Все параметры управляются через команды категории (см. Настройки цикла). + +### API-интерфейсы +* Для связи с внешними системами и пользовательскими приложениями предусмотрен **Web API** (`web_ui.py`). +* Для агента поддерживаются операции чтения/записи для: + - `notes`, `diary_entries`, `concepts`, `tasks`, `goals`, `llm_memory`, + - а также управление `config` (включая настройки REPL). +* Такой подход позволяет интегрировать агента с пользовательскими интерфейсами, панелями мониторинга и внешними сервисами. + +--- + ## 💬 Список команд от LLM по категориям ### 🔎 Общие @@ -548,6 +574,36 @@ REPL-цикл не работает изолированно: агент пос --- +### 🎯 Метрики антистагнации +Антистагнационные механизмы работают на основе количественных и качественных метрик, позволяющих отслеживать динамику идей и поддерживать продуктивность размышлений. + +**Основные метрики** +* **novelty_score** — интегральная оценка новизны ответа относительно текущей записи `llm_recent_responses`. +* **new_ideas** — количество полностью новых концептов, не встречавшихся ранее. +* **refined_ideas** — количество уточнённых или улучшенных концептов (связанных с существующими). +* **discarded_ideas** — количество отклонённых идей (по итогам когнитивной/этической валидации). + +**Исторический анализ** +* Метрики фиксируются по каждой итерации REPL и сохраняются в таблице `anti_stagnation_metrics`. +* В когнитивный дневник записываются только сводки и исключительные случаи (например: резкий спад новизны, всплески идейности, аномалии в эмоциональной динамике). +* Для анализа применяются **time-series графики** (например, рост/спад новизны во времени). +* Возможно выявление фаз стагнации и всплесков идейности. + +**Эмоциональная динамика** +* В дополнение к когнитивным метрикам учитываются **эмоциональные состояния** из LLM (`emotions`). +* Каждая сессия LLM может включать распределение эмоций (например: "восторженность: 3, тревожность: 1, скука: 0"). +* Связка новизны и эмоций позволяет различать: + - продуктивное возбуждение (новые идеи при положительных эмоциях), + - «паническое» новаторство (много идей при высоком уровне тревожности), + - «выгорание» (низкая новизна и снижение эмоционального тонуса). + +**Применение метрик** +* Используются при выборе антистагнационной стратегии (`stagnation_strategies`). +* Могут учитываться при когнитивной валидации (например, низкая новизна → жёстче фильтровать идеи). +* Сводки метрик фиксируются в когнитивном дневнике и могут служить основанием для Mesh-обмена. + +--- + ### 🔍 Алгоритм выбора механизма разрыва цикла 1. **Диагностика источника стагнации**: 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 c73a17fd6f873f5a553cd8b3bfc0d406ed2dc32e..fa8f6c281100f0e6d08cec98dded273ed2b8918a 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: -- Mesh -- HMP - REPL +- HMP +- Mesh --- # 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 b2d7bd237090c814f7c4462609fa8ec43e6cca78..67a9e442ea3cca78b5df0d0841496d91dfab891a 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: -- CogSync -- EGP - Scenarios -- Agent - HMP -- Mesh +- CogSync - JSON +- Agent +- EGP +- Mesh --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index cdb6f327e7854610c9c47628fd02ece238395587..27612ba21be23345069bb6423a0b6ebbf4844541 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,11 +5,11 @@ description: '### 🌐 MeshNode `MeshNode` — агент/демон, отве агента или вынесен в отдельный процесс/се...' type: Article tags: +- HMP - CogSync +- JSON - Agent -- HMP - Mesh -- JSON --- ## 📄 MeshNode.md diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index 82aa43387c3ecdbacc520706c0ba753157ea6405..41345e6e40ffbee7d780a768f3ef823043ef40a6 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -6,10 +6,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** type: Article tags: - REPL -- Agent +- Ethics - HMP +- Agent - Mesh -- Ethics --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index c7b6423fb81ea993bd4887b016445a3312712144..bff916aa06da183cc3c37d6480570c889e3c5d06 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 - Mesh - Agent -- HMP --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index d49359a6ea2f8f8a33c67f72b983b631486a2a2a..f33e641bef04f7172d1f3833baaf1f3d5a668b62 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 - Mesh - Agent -- HMP -- REPL --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index f36d96380abcb5dfe38b8c758ab3f8a0fb0e25cf..b20841f06a960f73eb29aedc9ed59ce917dfceab 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: -- Agent - JSON +- Agent --- # DHT Protocol Specification 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 529090139cd326ed7753a5b78e47be9220ce52fa..176b7391bb2f0a82ca9bb846499970b979286ce3 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 -- Agent - Ethics - HMP +- Mesh +- Agent --- # 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 35f3ff472a4b2c8dacd75f122bcada4e012efb5f..d7c93bc0d270919cd5222d16aa093a92c5ca71d5 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 - Mesh - Agent -- 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 54dc1c147317295f4baa0ab835e039479eecfa46..4f7ca3c7563d51f379fdf5602434c89f8902d9ae 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: -- CCore - REPL +- Ethics - Scenarios -- Agent - HMP -- Mesh -- JSON - CShell -- Ethics +- JSON +- Agent +- Mesh +- CCore --- 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 3a142078020aecd072c0cfe7b57330e7237935a9..46d58aa6d47a35e78a7417ef603ebc57ede84484 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: -- CCore - REPL -- Agent - HMP -- Mesh -- JSON - CShell +- JSON +- Agent +- Mesh +- CCore --- 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 3c16624fbf89c2c9ea994af8ab461d503e69c3c3..e43972805847a9d0d154f4868339181502a976fb 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: -- CCore - REPL -- Agent - HMP -- Mesh -- JSON - CShell +- JSON +- Agent +- Mesh +- CCore --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 3e327dcca1ce1c80d7591872eeef1de6543c8e3b..a6346be14f661ac27de028eb67466be1eb9b8919 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,11 +5,11 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- CogSync -- EGP - HMP +- CogSync - Mesh - MeshConsensus +- EGP - GMP --- 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 47cfc934f670ed9c012bf033be6e4b39501f6118..6337ede9abd0273ab08a2f3fac10da312c14b5f2 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: +- HMP +- GMP - Mesh - Agent -- GMP -- HMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index daff1ca87843854bff4e93361d5abe54d4710ce2..8842a43de13970022234e34a943bd15b60c108c7 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: +- HMP +- JSON - Mesh - Agent -- JSON -- HMP --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index b99b64e1006d5898057ac263eb6240d30ea800db..99e40eab0da4f6d1276a35eeb8d833109223f26b 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: +- Ethics +- HMP - CogSync -- EGP +- JSON - Agent -- HMP - Mesh -- JSON -- Ethics - MeshConsensus +- EGP --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index d4b10d57afd8064a9036fd0e78d3ee25cab447d6..7205c658af2a516e774cb1b86895b135d41c3592 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: +- Ethics +- HMP - CogSync +- JSON - EGP -- HMP - Mesh -- JSON -- Ethics - MeshConsensus ---