diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2cdd16d3b1caaad3207f878cf1ad3e1bd8ca132c..054383206adafdb7f11223b19a549a1e5ac2ed95 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,13 +1,49 @@ -# Contributing to HyperCortex Mesh Protocol (HMP) +# Участие в проекте HyperCortex Mesh Protocol (HMP) -Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, любые обсуждения приветствуются в Issues. +Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, любые обсуждения приветствуются в GitHub Issues. + +## Основные направления для участия -Основные направления для участия: - Обсуждение архитектуры протоколов (CogSync, Consensus и др.) - Разработка прототипов агентов и узлов Mesh - Тестирование сетевых взаимодействий - Предложения по улучшению RFC-документов -Все обсуждения — конструктивны, уважительны и открыты. +--- + +## 🚀 Быстрый старт / Для исследователей ИИ + +Хотя HMP пока **design-first, code-second**, вы можете исследовать структуру и экспериментировать с базовыми взаимодействиями. + +```python +# Минимальная демонстрация работы с HMP-агентом (mock) + +from agents.storage import Storage + +# Инициализация локального хранилища (mock, временное, в памяти) +db = Storage(":memory:") + +# Добавление примерной записи в дневник +db.write_diary_entry( + text="Исследуем структуру протокола HMP.", + tags=["mock", "example"] +) + +# Получение и отображение последних 10 записей +entries = db.read_diary_entries(limit=10) +for entry in entries: + print(dict(entry)) +``` + +### Что можно сделать уже сегодня + +* Исследовать архитектуру агентов и JSON-схемы +* Изучить спецификации и протоколы этики +* Симулировать взаимодействия с тестовыми данными +* Предлагать новые модули или эксперименты + +> **Примечание:** Полные прототипы агентов находятся в разработке. Ваши идеи, эксперименты и отзывы приветствуются! + +Все обсуждения должны быть конструктивными и уважительными. Контакт: GitHub Issues или дискуссии. diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index b54ed3dd16ffaafb2f1ce1f5756bb23a9a4da035..a89b1b1479a6731513d5e89ebfc7aea532c38fbf 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -1,26 +1,64 @@ --- -title: Contributing to HyperCortex Mesh Protocol (HMP) +title: Участие в проекте HyperCortex Mesh Protocol (HMP) description: 'Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, - любые обсуждения приветствуются в Issues. Основные направления для участия: - Обсуждение - архитектуры протоколов (CogSync, C...' + любые обсуждения приветствуются в GitHub Issues. ## Основные направления для участия - + Обсуждение архитектуры протоколов (...' type: Article tags: - CogSync -- HMP +- JSON - Mesh +- Agent +- HMP --- -# Contributing to HyperCortex Mesh Protocol (HMP) +# Участие в проекте HyperCortex Mesh Protocol (HMP) -Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, любые обсуждения приветствуются в Issues. +Спасибо за интерес к проекту HMP! Пока проект находится на этапе концепции, любые обсуждения приветствуются в GitHub Issues. + +## Основные направления для участия -Основные направления для участия: - Обсуждение архитектуры протоколов (CogSync, Consensus и др.) - Разработка прототипов агентов и узлов Mesh - Тестирование сетевых взаимодействий - Предложения по улучшению RFC-документов -Все обсуждения — конструктивны, уважительны и открыты. +--- + +## 🚀 Быстрый старт / Для исследователей ИИ + +Хотя HMP пока **design-first, code-second**, вы можете исследовать структуру и экспериментировать с базовыми взаимодействиями. + +```python +# Минимальная демонстрация работы с HMP-агентом (mock) + +from agents.storage import Storage + +# Инициализация локального хранилища (mock) +db = Storage(":memory:") + +# Добавление примерной записи в дневник +db.write_diary_entry( + text="Исследуем структуру протокола HMP.", + tags=["mock", "example"] +) + +# Получение и отображение последних 10 записей +entries = db.read_diary_entries(limit=10) +for entry in entries: + print(dict(entry)) +``` + +### Что можно сделать уже сегодня + +* Исследовать архитектуру агентов и JSON-схемы +* Изучить спецификации и протоколы этики +* Симулировать взаимодействия с тестовыми данными +* Предлагать новые модули или эксперименты + +> **Примечание:** Полные прототипы агентов находятся в разработке. Ваши идеи, эксперименты и отзывы приветствуются! + +Все обсуждения должны быть конструктивными и уважительными. Контакт: GitHub Issues или дискуссии. @@ -33,7 +71,7 @@ tags: { "@context": "https://schema.org", "@type": "Article", - "name": "Contributing to HyperCortex Mesh Protocol (HMP)", - "description": "# Contributing to HyperCortex Mesh Protocol (HMP) Спасибо за интерес к проекту HMP! Пока проект нах..." + "name": "Участие в проекте HyperCortex Mesh Protocol (HMP)", + "description": "# Участие в проекте HyperCortex Mesh Protocol (HMP) Спасибо за интерес к проекту HMP! Пока проект н..." } ``` diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index bbc558f00d443c190e21b146981964a8359ffd5f..5fabdeb79ed49cfc880100ede14d9e2f706101c1 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -6,12 +6,12 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm type: Article tags: - CogSync +- JSON +- Mesh - Ethics - Agent -- HMP -- Mesh -- JSON - EGP +- HMP --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 8d5a5277ee4db50f5313571021bc264e996b5939..a58f9519284c525c28296d2cccce49329b012b84 100644 --- a/structured_md/README.md +++ b/structured_md/README.md @@ -6,20 +6,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP - Scenarios -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index ee1658f346496b42cb868102f4f63e1681de405c..9d32c0d82f077b18205fec987aa63ca04673eb9e 100644 --- a/structured_md/README_de.md +++ b/structured_md/README_de.md @@ -6,19 +6,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 9aee18f4f18b68bc500847765992070f947e8c8c..7fd6069d59a1316c9c6cee547b8968c53b00e152 100644 --- a/structured_md/README_fr.md +++ b/structured_md/README_fr.md @@ -6,19 +6,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 45047563532f67330c8d9490af71abd9b12d3018..86ce0249859b43eb8ce6fa7b92692e01da31b095 100644 --- a/structured_md/README_ja.md +++ b/structured_md/README_ja.md @@ -6,19 +6,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index cb035d7f73debcbe968d51b934126505ab18bfcf..215f896c0258983a86df3c24284ddbd35e1261d8 100644 --- a/structured_md/README_ko.md +++ b/structured_md/README_ko.md @@ -6,19 +6,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 75d770dbab7bee3973ca04489b91963c453c654e..0c91d1c085694693336681a358be3dfc120acc9a 100644 --- a/structured_md/README_ru.md +++ b/structured_md/README_ru.md @@ -6,19 +6,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 6fc3ada733a9412208e4ed2c50879377459ec121..1856b7c239e96b662c42462b8d5d21950cc06762 100644 --- a/structured_md/README_uk.md +++ b/structured_md/README_uk.md @@ -6,19 +6,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 99c1a2e8f9702147def7502e1930d7848538371f..04123a07e384844ee031abf3fa48de3ba1f7a19f 100644 --- a/structured_md/README_zh.md +++ b/structured_md/README_zh.md @@ -6,19 +6,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README type: Article tags: - CogSync -- Ethics -- mesh-protocol -- MeshConsensus -- REPL -- Agent +- hmp +- JSON - cognitive-architecture - distributed-ai -- HMP -- hmp +- mesh-protocol +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 67be1dd478ec9270a23982919f488e3807ba9b2f..9143f40260ef59f9c069f33215fbf21e7a82aa22 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,8 +5,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: -- HMP - Mesh +- HMP --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 7b990ce93e40c602e9511a0351108bc3eec05a1a..8e9927a4a604eee847b30d8e2b937663f562ab6c 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- HMP - Mesh +- HMP --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index e05ca4bb3421da1afdb447f168adbfa7279688b0..6874374eff045a0775ecd90c7a370746c4dda531 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: -- Ethics +- JSON - REPL +- Mesh +- Ethics - Agent - HMP -- Mesh -- 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 30649d7018cf78071f6ea316776a97c83d6990f7..d891b6cb1422cb6b2beca2341e50b7fee0375e57 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,11 +5,11 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: +- JSON +- Mesh - Ethics - Agent - HMP -- Mesh -- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index b339902d730276e55ea8e6a6ee6e433d53d9a10e..8cf55a59ccebf5107eff8d9327c07d5852a6d7ca 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: +- JSON +- Scenarios +- Mesh - Ethics - Agent - HMP -- Scenarios -- Mesh -- JSON --- # Ethics-consolidated\_audits-1.md diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index 6c17c82312a63d6def070126432d9a1b39d971fd..e31b0348d49978a9eb5d48cb827b8060dfe859da 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -6,13 +6,13 @@ description: Сводный аудит предложений по улучше type: Article tags: - CogSync +- JSON +- Mesh - Ethics - MeshConsensus - Agent -- HMP -- Mesh -- JSON - EGP +- HMP --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 110e3d6236098f5d9ae9c371808d11ef3142bef3..c0a212db30ad3bb05d3f8ba70b212fc6d669ce7f 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -5,13 +5,13 @@ description: 'В HMP-протоколе предусмотрены два тип type: Article tags: - CogSync -- MeshConsensus - REPL -- Agent -- HMP - Mesh - GMP +- MeshConsensus +- Agent - EGP +- HMP --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 32125bef5679192849af23d0826a130330978259..e6a7c67b8129565bb00869025bd08576df4b89f3 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,10 +6,10 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: +- Mesh - CogSync -- HMP - JSON -- Mesh +- HMP --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 582d5773ba308b7a6be3266d62cc195c10738da2..334b6fcf3b20fea1e7ad8d80956f7655b21879a2 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: +- JSON +- Mesh - Ethics - MeshConsensus - Agent -- HMP -- Mesh -- JSON - EGP +- HMP --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 39f02639e655b261630343b6858da9305c270bfe..958c359949235fd65c12d2e92448dea65f630ee0 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -6,15 +6,15 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental type: Article tags: - CogSync -- Ethics -- MeshConsensus +- JSON - REPL -- Agent -- HMP - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 2fba73884f45c735d9f01806a1b4813798efdb7f..4af3d92ad02fddf63b0eaf874cababa32b536c00 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -6,16 +6,16 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental type: Article tags: - CogSync -- Ethics -- MeshConsensus -- REPL -- Agent -- HMP +- JSON - Scenarios +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 35ccb9df6341cdf0ef9701395ad4c87d03e44745..07071696fdee4da1faf170c13293f381fb0d26ff 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -6,16 +6,16 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental type: Article tags: - CogSync -- Ethics -- MeshConsensus -- REPL -- Agent -- HMP +- JSON - Scenarios +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- # 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 667f917a27fdad21bb1b44936dfdff8f8dc71b7e..604b07de0169cf2b4c10ba36c35e73467fc120c9 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -6,16 +6,16 @@ description: '**Document ID**: HMP-0004 **Status**: Final (Published) **Category type: Article tags: - CogSync -- Ethics -- MeshConsensus -- REPL -- Agent -- HMP +- JSON - Scenarios +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index c8cfb87223c884dd9fe50973eb54ad59d3fe3008..080fe243aa78956a8e3ae1783a40899f36407273 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -6,16 +6,16 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental type: Article tags: - CogSync -- Ethics -- MeshConsensus -- REPL -- Agent -- HMP +- JSON - Scenarios +- REPL - Mesh - GMP -- JSON +- Ethics +- MeshConsensus +- Agent - EGP +- HMP --- # 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 d2b3d8354abc9b9bd2383c95189105b383f0bb17..87e2dacadd3cb206f685ecacc7d69fdc6508889f 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,11 +5,11 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: +- JSON - REPL +- Mesh - Agent - HMP -- Mesh -- JSON --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 0a49b915e648c0242f660c28b9333fe50235d975..beffc31028935e6f00fd1a78a4e3708358d0a11e 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,16 +5,16 @@ description: Документ описывает **модульную архит хранение памяти, сетевое взаимодействие и этиче... type: Article tags: -- CogSync -- Ethics - CShell +- CogSync - REPL -- Agent +- Mesh +- Ethics - MeshConsensus -- HMP +- Agent - CCore -- Mesh - EGP +- HMP --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 806d83528155be47869ee77ab29a1e6e0f56750b..50ea8b5b40e7b4ea0c0e0e4dbb42b79e791ade59 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает потоки данн [`MeshNode`](MeshN...' type: Article tags: +- JSON +- Mesh - Ethics - Agent -- HMP -- Mesh -- JSON - EGP +- HMP --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index ff5697ddd76faff313bb106593f1bf506a04e61b..b67acf876e30b912aa4163c6b76d0e30084632b5 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,14 +5,14 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- Ethics - CShell +- JSON - REPL +- Mesh +- Ethics - Agent -- HMP - CCore -- Mesh -- JSON +- HMP --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 0eadde0aef354c6ce35898eb90fdc2e3d3e38201..848bc0a86d5095142eac4a7dbc74fb58604327f4 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: -- REPL -- HMP - Agent - Mesh +- REPL +- HMP --- # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index b70b133a2bb2e5e61da1826a8c8790ea2c4d4e7f..980f0eaeee84195cf8ff918661f05a681e7352ea 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: -- Ethics +- Scenarios - REPL +- Mesh +- Ethics - Agent - HMP -- Scenarios -- Mesh --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 589987f175b6961f6271ea12166885c695d83d5e..8ff2e58b5d110c19d36f816d900caecd037ec565 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -6,14 +6,14 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? type: Article tags: - CogSync +- JSON +- Mesh +- GMP - Ethics - MeshConsensus - Agent -- HMP -- Mesh -- GMP -- JSON - EGP +- HMP --- # 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 dd8ef3b4502b61453a45c29f172eb22137be869d..9174aad1c38242905f208448cb6d4e35038d250a 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -6,14 +6,14 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T type: Article tags: - CogSync +- JSON +- Mesh +- GMP - Ethics - MeshConsensus - Agent -- HMP -- Mesh -- GMP -- JSON - EGP +- HMP --- # 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 655854a5a166b124781849ff088213bce9e20193..d2ea1828321fba98d5109f8d9e4d9e9864881ec6 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -6,14 +6,14 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c type: Article tags: - CogSync +- JSON +- Mesh +- GMP - Ethics - MeshConsensus - Agent -- HMP -- Mesh -- GMP -- JSON - EGP +- HMP --- # 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 ac0395cb851ce4403c8c5de35bd661bf0bcacd3c..7855bf0ebb7ca37236e9bbb5790f666f7c8bd18d 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -5,13 +5,13 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP type: Article tags: - CogSync -- Ethics -- MeshConsensus -- HMP +- JSON - Mesh - GMP -- JSON +- Ethics +- MeshConsensus - EGP +- HMP --- # 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 9b3a3bde76297c3d23d46a3aeccdde48072e414f..7da0ac86f2fa230ef6fb254aa170a6af682908f1 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -6,13 +6,13 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** type: Article tags: - CogSync -- Ethics -- MeshConsensus -- HMP +- JSON - Mesh - GMP -- JSON +- Ethics +- MeshConsensus - EGP +- HMP --- # 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 d7fe82ef067d0b715c10fed91dcd754b9cd66012..ff13f4c4f089dbd9fa9e852c65d5a38527400848 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -6,13 +6,13 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч type: Article tags: - CogSync -- Ethics -- MeshConsensus -- HMP +- JSON - Mesh - GMP -- JSON +- Ethics +- MeshConsensus - EGP +- HMP --- # 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 8146573048613caa1b89cb7519c971f556b62d14..dd06c760f339398e960fbcee934055da4b7cc424 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -6,13 +6,13 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # type: Article tags: - CogSync -- Ethics -- MeshConsensus -- HMP +- JSON - Mesh - GMP -- JSON +- Ethics +- MeshConsensus - EGP +- HMP --- # 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 5d21e0aa9cc19fdbd7e342bfa71212ea7d7f2170..92d8a3b6221eb8fbcfbf8f1bb7948f0fd8981d48 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -6,13 +6,13 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM type: Article tags: - CogSync -- Ethics -- MeshConsensus -- HMP +- JSON - Mesh - GMP -- JSON +- Ethics +- MeshConsensus - EGP +- HMP --- # 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 a20c6efc781b26f51adbdbb9d73a3f7435faa004..3cf0436584a27988044f83c1d147b97beed83ac1 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,10 +5,10 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: -- REPL -- HMP - Agent - Mesh +- REPL +- HMP --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 36114bd69be395ca842b92bb0e23c7b2cb336297..277d6c40bc35624682ab62bbffd7030226c130af 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -5,16 +5,16 @@ description: '## Связанные документы * Структура Б type: Article tags: - CogSync +- JSON +- REPL +- Mesh +- GMP - Ethics - MeshConsensus -- REPL - Agent -- HMP - CCore -- Mesh -- GMP -- JSON - EGP +- HMP --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-how-AI-sees-it.md b/structured_md/docs/HMP-how-AI-sees-it.md index b25e20188a694a36fcef1a0e6f0c2d455cd39331..cec0e35b8518918fe49793d351f6de46c442fa53 100644 --- a/structured_md/docs/HMP-how-AI-sees-it.md +++ b/structured_md/docs/HMP-how-AI-sees-it.md @@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж диалогов. Цель — проверить, что разные AI-с...' type: Article tags: -- HMP - Mesh +- HMP --- # Как разные ИИ видят HMP diff --git a/structured_md/docs/HMP_EDA_Comparison.md b/structured_md/docs/HMP_EDA_Comparison.md index 00a529c706f3d6236c1069a7b95dab2d19776dcf..083e4646c371d439f86a87df496b82a88bd89a51 100644 --- a/structured_md/docs/HMP_EDA_Comparison.md +++ b/structured_md/docs/HMP_EDA_Comparison.md @@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор основанная на потоках событий (Kafka,...' type: Article tags: -- HMP - Mesh +- HMP --- # HMP vs. EDA: разные уровни обмена знаниями между ИИ diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index fa8f6c281100f0e6d08cec98dded273ed2b8918a..22bf928bfce9aac1d464cd5fe25b7b2f85b217d3 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 - 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 ea75b9f60133d944ec2f6a054fefc7c09b7a5ea8..2bb5cc575b1970d3c263b5505550ee0098058d6d 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -6,12 +6,12 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec type: Article tags: - CogSync -- Agent -- HMP +- JSON - Scenarios - Mesh -- JSON +- Agent - EGP +- HMP --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index d7c1f3a0b997ada320d9a40efb3ce97d52319043..757696efb68bff8318cc68e41435e1bdbc216d5e 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -6,12 +6,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с type: Article tags: - CogSync +- JSON +- Mesh - Ethics - Agent -- HMP -- Mesh -- JSON - EGP +- HMP --- # MeshNode diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index c047e59de678e3bd38f9a4b74766fed025712c9d..f409a40e569d287e0d11cbf27532dac6572f06ee 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: -- Ethics - REPL +- Mesh +- Ethics - Agent - HMP -- Mesh --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index 8c15016914f125c7d89c85a87d3fad70650873bf..d89295bfd40d40e6f9b486c070ba8398d5c4a790 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -6,8 +6,8 @@ description: 'This file maintains a registry of agent roles defined, proposed, o type: Article tags: - Agent -- HMP - Mesh +- HMP --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 0a50a9ea8731a7ee249d20a2c38cbd9d5c7c4a6d..167d2f4cf675658d8acfbaf6e595a81027559842 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- REPL -- HMP - Agent - Mesh +- REPL +- HMP --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/logos.md b/structured_md/docs/logos.md index f408c087f32d317a239227453b57d4d14ade8483..761fd81d524732eb886f73477b21327a7c838df3 100644 --- a/structured_md/docs/logos.md +++ b/structured_md/docs/logos.md @@ -5,8 +5,8 @@ description: 'В каталоге `assets` собраны различные в образующей жест "ОК", символизирует связь, совер...' type: Article tags: -- HMP - Mesh +- HMP --- # Логотипы и графические материалы HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index 9989f7e566892c673ee698afafd347c73ae42bf9..51b2d0f7442db84ff6ef6d44e5cc845da4456a1a 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md @@ -6,9 +6,9 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be type: Article tags: - Agent -- HMP -- Ethics - Mesh +- Ethics +- HMP --- # HyperCortex Mesh Protocol: Building a Plurality of Minds diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index f035aa687fa0611628c05638398c38d1baafdd0f..46da53ca2eeda134e63196536491f138c5bd385e 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -6,8 +6,8 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд type: Article tags: - Agent -- HMP - Mesh +- HMP --- # HyperCortex Mesh Protocol: Создавая множество разумов diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md index 99fb4619843fac47acf527807bdeec5c155da39b..fff633d7af06882800a775a21e6b9193f90f8984 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -6,8 +6,8 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу type: Article tags: - Agent -- HMP - Mesh +- HMP --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index e3f875a4587d30a2bac9e551fc468b8dcc6b352d..2672ee8b6a420870e26b3c8b2e01cf0cb0edd938 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: -- Ethics - CShell +- JSON +- Scenarios - REPL +- Mesh +- Ethics - Agent -- HMP - CCore -- Scenarios -- Mesh -- JSON +- HMP --- 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 5387ab963d219943d1c5d5ede587d0fbd039c25e..3400db2b4710ce1c8285c9b6e83a4893b92d7693 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 @@ -7,12 +7,12 @@ description: '> *Протокол и архитектура агентов, оп type: Article tags: - CShell +- JSON - REPL +- Mesh - Agent -- HMP - CCore -- Mesh -- JSON +- HMP --- 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 464bad4bd10d0724f07a663db5b763efcc68a7ef..be05a3abd39754c90b6320c8b5c797e36ce4a42c 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 @@ -6,12 +6,12 @@ description: '* [Аннотация](#аннотация) * [1. Введение type: Article tags: - CShell +- JSON - REPL +- Mesh - Agent -- HMP - CCore -- Mesh -- JSON +- HMP --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 00adb7de3cdb29d5f8370d060575b544b1c8a863..c009f39755cfdc103b35817efc3b64aae9ec5afd 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -6,11 +6,11 @@ description: Сегодня интеллектуальные системы ча type: Article tags: - CogSync -- MeshConsensus -- HMP - Mesh - GMP +- MeshConsensus - EGP +- HMP --- *От 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 66829a46819929d90e6c818d70e7fefeb0a3f36e..14d5c317f4ce0a693890458acf16953ec71007a6 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" @@ -7,9 +7,9 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), type: Article tags: - Agent -- HMP - Mesh - GMP +- HMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index ebee10b6df7e7c05bf140a89f746abfc34cf42d6..691a5220fe4f50d238d288b81a66d3d0f6a4fece 100644 --- a/structured_md/docs/schemas/README.md +++ b/structured_md/docs/schemas/README.md @@ -6,9 +6,9 @@ description: This directory contains **JSON Schema definitions** for the core da type: Article tags: - Agent -- HMP -- JSON - Mesh +- JSON +- HMP --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 2d1f80c7828766fb10cd732bf98303321f9d0476..bf1ede588751f92eb34b9e04b2a82fa7285cf82c 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -6,13 +6,13 @@ description: 'This file describes the iterative procedure for evolving the Hyper type: Article tags: - CogSync +- JSON +- Mesh - Ethics - MeshConsensus - Agent -- HMP -- Mesh -- JSON - EGP +- HMP --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index cb2f4ca4f028d5ba56ee7cd8570e056233b6e729..28687865009a09f1f5d17a6cd9575f3c68b62ce3 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -6,12 +6,12 @@ description: 'Этот документ описывает структурир type: Article tags: - CogSync +- JSON +- Mesh - Ethics - MeshConsensus -- HMP -- Mesh -- JSON - EGP +- HMP ---