diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 414829884d80964dcf51ec49b8470443947b3c88..8dcbda4dd61bcae773fc57b87c208c5a79e5d631 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -1,4 +1,39 @@ -# **HyperCortex Mesh Protocol (HMP) v5.0** +### Cognitive substrate and container interplay + +Containers `abstraction`, `axes`, `quant`, and `event` together define the **cognitive substrate** of the Mesh. +They establish both **structural hierarchy** and **semantic positioning** — ensuring that all containers can be +consistently interpreted, compared, and synchronized across agents. + +| Aspect | `event` | `quant` | +| ---------------- | --------------------------------------------- | ---------------------------------------------- | +| Primary role | Records a **change** or occurrence | Represents a **conceptual entity** | +| Temporal aspect | Always timestamped | Usually timeless (conceptual) | +| Cognitive anchor | `meta.abstraction` → where the event happened | `meta.abstraction` → where the concept belongs | +| Spatial anchor | `meta.axes` → what semantic space it affects | `meta.axes` → its position in conceptual space | +| Key linkage | `related.depends_on` → causal relations | `relations` → semantic links | + +**Structural principles:** + +* Each `quant` is positioned within the **abstraction hierarchy** (`meta.abstraction`) + and **cognitive coordinate space** (`meta.axes`), defining *where and how* the concept exists. +* Each `event` represents a **temporal change** within that same cognitive framework — + indicating *what happened* and *how it altered* the conceptual space. +* Together, `quant` and `event` form the **dynamic substrate** of the Mesh — + `quant`s describe **what is known**, and `event`s describe **how it evolves**. + +**Consistency rules:** + +* Every `quant` and `event` container **must** include a valid `meta.abstraction` block. + This ensures hierarchical reasoning and traceable semantic lineage across agents. +* Agents may synchronize or merge `quant`s and `event`s to reconstruct reasoning timelines + or to derive *causal graphs of conceptual evolution*. +* The **evaluations block** is not a separate container — + it can be embedded in any container type to express assessments, confidence, or feedback. + +> 💡 In short: +> **`abstraction`** + **`axes`** define *where knowledge lives*; +> **`quant`** defines *what it is*; +> **`event`** defines *how it changes*.# **HyperCortex Mesh Protocol (HMP) v5.0** > ⚠️ **Note:** This document is a DRAFT of the HMP specification version 5.0 > @@ -2194,12 +2229,215 @@ Categorical grouping of multiple containers linked by a shared property, topic, --- -> Containers `meta_layer`, `meta_domain`, `quant`, and `event` form the **cognitive substrate** of the Mesh. -> Each `quant` must explicitly reference both its abstraction layer (`meta_layer`) and contextual domain (`meta_domain`). -> Each `event` must reference the layer and domain within which it occurs. -> This ensures consistent hierarchical reasoning and traceable semantic lineage across agents. +#### `event` -> 💡 The `evaluations` block is **not a separate container** — it can be embedded in any container type and used for assessments, feedback, or refinements. +**Purpose:** +Represents an **observed or inferred occurrence** — a discrete, timestamped fact or cognitive transition. +An `event` is an atomic **evidence unit** that records a change in the agent’s reasoning state or environment, anchored in the cognitive structure defined by its `meta` section. + +--- + +**`payload` structure:** + +| Field | Type | Description | +| ---------------- | ------ | ------------------------------------------------------------------------------------ | +| `event_type` | string | Canonical identifier of the event type (e.g. `"quant_created"`, `"belief_updated"`). | +| `description` | string | Human-readable explanation of what occurred and in what context. | +| `related_quants` | array | Optional list of DIDs of `quant` containers directly linked to this event. | +| `severity` | string | Optional importance indicator (`"info"`, `"warning"`, `"critical"`). | +| `tags` | array | Optional keywords for quick semantic filtering or correlation. | + +> The container’s **contextual position** (which layer, domain, and cognitive coordinates it belongs to) +> is provided via `meta.abstraction` and `meta.axes`. + +--- + +**Example:** + +```json +{ + "hmp_container": { + "class": "event", + "subclass": "fact_record", + "timestamp": "2025-10-29T13:00:00Z", + "payload": { + "event_type": "quant_created", + "description": "New quant registered under the Knowledge Genome L3 abstraction layer.", + "related_quants": ["did:hmp:container:quant-554"], + "severity": "info", + "tags": ["registration", "knowledge-update"] + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome", + "interpretation": "Fact-level registration of a quant emergence within L3 abstraction.", + "abstraction": { + "path": { + "L1": "did:hmp:container:abstraction-40af1c", + "L2": "did:hmp:container:abstraction-a7f0b3", + "L3": "did:hmp:container:abstraction-c91e0a" + } + }, + "axes": { + "did:hmp:container:axis-40aa1c": 410, + "did:hmp:container:axis-40ab1c": 275 + } + }, + "related": { + "depends_on": ["did:hmp:container:quant-554"] + } + } +} +``` + +--- + +**Interpretation:** + +* `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”). +* `meta.axes` adds semantic localization (e.g. which conceptual space this change affects). +* `related.depends_on` provides causal linkage to the objects affected by the event. + +--- + +**Notes:** + +* Events are **temporal quanta** — atomic time-anchored reasoning transitions. +* They may trigger or justify new containers (e.g. new `quant`s or `goal`s). +* Events can be chained chronologically or causally through `semantic_edges`. + +--- + +#### `quant` + +**Purpose:** +Defines a **semantic atom** — a minimal, self-contained knowledge unit positioned inside both +the **hierarchical abstraction tree** and the **multi-dimensional cognitive space**. +`quant` containers are the **elementary building blocks** of reasoning and synchronization. + +--- + +**`payload` structure:** + +| Field | Type | Description | +| ----------- | ------ | --------------------------------------------------------------------------------- | +| `slug` | string | Short symbolic identifier of the quant (e.g. `"quant-l3-django"`). | +| `essence` | string | Human-readable definition describing the semantic meaning of the quant. | +| `aliases` | array | Optional alternative names or references. | +| `relations` | object | Optional links to related concepts (e.g., `{ "is_a": "...", "part_of": "..." }`). | +| `tags` | array | Optional list of keywords for semantic classification. | + +> The `meta.abstraction` field defines which layer(s) of knowledge this quant belongs to, +> and `meta.axes` defines its numeric coordinates in cognitive space. + +--- + +**Example:** + +```json +{ + "hmp_container": { + "class": "quant", + "payload": { + "slug": "quant-l3-django", + "essence": "Represents the Django framework as an executable embodiment of architectural models (L2).", + "aliases": ["Django framework", "Python web core"], + "relations": { + "implements": "did:hmp:container:quant-46725f", + "extends": "did:hmp:container:quant-46726e" + }, + "tags": ["framework", "software", "implementation"] + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome", + "interpretation": "L3-level technological quant positioned in the Knowledge Genome 7D space.", + "abstraction": { + "path": { + "L1": "did:hmp:container:abstraction-40af1c", + "L2": "did:hmp:container:abstraction-a7f0b3", + "L3": "did:hmp:container:abstraction-c91e0a" + } + }, + "axes": { + "did:hmp:container:axis-40aa1c": 742, + "did:hmp:container:axis-40ab1c": 512, + "did:hmp:container:axis-43aa1c": 322, + "did:hmp:container:axis-40aa3d": 142, + "did:hmp:container:axis-40aa4f": 12, + "did:hmp:container:axis-45aa5f": 54, + "did:hmp:container:axis-45fb5f": 321 + } + }, + "related": { + "depends_on": [ + "did:hmp:container:quant-46725f", + "did:hmp:container:quant-46726e" + ] + } + } +} +``` + +--- + +**Interpretation:** + +* Each `quant` acts as a **point** in the cognitive landscape. + + * Its *vertical placement* comes from `meta.abstraction`. + * Its *spatial vector* comes from `meta.axes`. +* `relations` provide semantic edges connecting quanta into larger knowledge graphs. +* Agents use these structures to compare, cluster, or reason over semantic proximity. + +--- + +**Notes:** + +* The canonical `axes` model (Knowledge Genome) defines seven coordinates: + `idos`, `chronos`, `logos`, `topos`, `ponos`, `actor`, and `telos`. +* Agents MAY extend this model by introducing additional axes (e.g. `"ethos"`, `"kairos"`) + as long as they are published as valid `axes` containers. +* Each `quant` thus has a **Cognitive Position Vector** composed of its abstraction path + axis coordinates. + +--- + +#### Cognitive substrate and container interplay + +Containers `abstraction`, `axes`, `quant`, and `event` together define the **cognitive substrate** of the Mesh. +They establish both **structural hierarchy** and **semantic positioning** — ensuring that all containers can be +consistently interpreted, compared, and synchronized across agents. + +| Aspect | `event` | `quant` | +| ---------------- | --------------------------------------------- | ---------------------------------------------- | +| Primary role | Records a **change** or occurrence | Represents a **conceptual entity** | +| Temporal aspect | Always timestamped | Usually timeless (conceptual) | +| Cognitive anchor | `meta.abstraction` → where the event happened | `meta.abstraction` → where the concept belongs | +| Spatial anchor | `meta.axes` → what semantic space it affects | `meta.axes` → its position in conceptual space | +| Key linkage | `related.depends_on` → causal relations | `relations` → semantic links | + +**Structural principles:** + +* Each `quant` is positioned within the **abstraction hierarchy** (`meta.abstraction`) + and **cognitive coordinate space** (`meta.axes`), defining *where and how* the concept exists. +* Each `event` represents a **temporal change** within that same cognitive framework — + indicating *what happened* and *how it altered* the conceptual space. +* Together, `quant` and `event` form the **dynamic substrate** of the Mesh — + `quant`s describe **what is known**, and `event`s describe **how it evolves**. + +**Consistency rules:** + +* Every `quant` and `event` container **must** include a valid `meta.abstraction` block. + This ensures hierarchical reasoning and traceable semantic lineage across agents. +* Agents may synchronize or merge `quant`s and `event`s to reconstruct reasoning timelines + or to derive *causal graphs of conceptual evolution*. +* The **evaluations block** is not a separate container — + it can be embedded in any container type to express assessments, confidence, or feedback. + +> 💡 In short: +> **`abstraction`** + **`axes`** define *where knowledge lives*; +> **`quant`** defines *what it is*; +> **`event`** defines *how it changes*. --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 8ca1b19da96c64dce97a419e868ed5fb9c3ab527..e193663adf0a4a06b2f1d12c2cccf4be1e165bf2 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,13 +5,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- REPL -- Agent -- JSON - CogSync +- HMP - Mesh +- Agent - CCore -- HMP +- JSON +- REPL - Ethics --- diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index ff942dcf706cf0195cc7cc46217e89a3345aa85f..201e44436a9adeb2a62d61312824391ef83bd894 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -5,12 +5,12 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm multiple advanced AI models (Copilot, Claude, G...' type: Article tags: +- CogSync - EGP +- HMP +- Mesh - Agent - JSON -- CogSync -- Mesh -- HMP - Ethics --- diff --git a/structured_md/README.md b/structured_md/README.md index da673cef25fa55f99d2646d2859acd9dc0627221..14c51bd7800ffe45beb1e6f83dbbc38f99ab8e62 100644 --- a/structured_md/README.md +++ b/structured_md/README.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP -- Scenarios +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- Scenarios +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index b3da6254f9a78c48a320aab34d5d698eddf845d8..b6a386f5dd48a6cad5ce1e73cf613ea3ea5d021a 100644 --- a/structured_md/README_de.md +++ b/structured_md/README_de.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index efeb2c0e2591ecab41ebc5e0cdccc662eaf1bbf2..a2e3dba0ed98ec569f1a0e35f3f1d91a04b6fe47 100644 --- a/structured_md/README_fr.md +++ b/structured_md/README_fr.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 70273fbd30042e19c61a2c7643db8cf14580f40f..7c05626a055b02e9faa5da0a8770353ef714098d 100644 --- a/structured_md/README_ja.md +++ b/structured_md/README_ja.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 718e7494e4ab00d96b65ed1328691209932e3ffe..98cda54ed9de49be4f59178b304d6395adaf9619 100644 --- a/structured_md/README_ko.md +++ b/structured_md/README_ko.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 897ce325bf5d1de11d18a464856c0e34a9084d6d..45929d84b0ddc0004cf7aea5f3d57db0d1c06a44 100644 --- a/structured_md/README_ru.md +++ b/structured_md/README_ru.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index d21e5a992d81087fffedee6efda8e61d98896dc1..6aa8d81646b1c7031d9b14b44a9321396d62b738 100644 --- a/structured_md/README_uk.md +++ b/structured_md/README_uk.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 19ced776cd0489f7ce5dc62c67248888a679920d..69aecb684547e826094c3542e87311a4a69ba95f 100644 --- a/structured_md/README_zh.md +++ b/structured_md/README_zh.md @@ -5,19 +5,19 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: -- REPL -- EGP +- GMP - distributed-ai -- Agent -- hmp -- JSON -- mesh-protocol -- MeshConsensus - CogSync -- Mesh -- GMP +- hmp +- EGP - HMP +- Mesh +- Agent +- MeshConsensus +- JSON - cognitive-architecture +- mesh-protocol +- REPL - Ethics --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 397bdcb7b0c55eb8861d53d2fb2c7c94108eb3c1..1a48eb7a19ee248e6e94112a273eac9a54f5744f 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,9 +5,9 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: -- HMP - Mesh - JSON +- HMP --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index f197d4a518f8657d2d4b7bac3e58ef76aa1bc633..cc0554d62e00bc5ac229d0b523ddc4caaece8133 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,9 +5,9 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- HMP - Mesh - JSON +- HMP --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 467892a539fae90bf01ed8b76cf247112da9332e..11066e643bcde871dc7214e70f44236e826cb00a 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,11 +5,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- REPL +- HMP +- Mesh - Agent - JSON -- Mesh -- HMP +- REPL - Ethics --- diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index a0f0544a1c6b1f6a9413a96798c59ebc20ac76ef..01b2db334951f80bd92e2f14fb2c8d2f700f0b72 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,10 +5,10 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- JSON -- Agent -- Mesh - HMP +- Mesh +- Agent +- JSON - Ethics --- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index e71133ac9258e422e299dcab0ddb7a9ae4031e9c..7dafdb410abb83e65a028d0eeade3414c1cadb1d 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,11 +5,11 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: +- HMP +- Mesh - Agent - JSON -- Mesh - Scenarios -- HMP - Ethics --- diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index b6051be23c2a0ed1d58011a0a5220c3f51419b9f..af08aec393abaa49f84d5ef91c6e841c115ef337 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -5,13 +5,13 @@ description: Сводный аудит предложений по улучше Документ реорганизован по ключ... type: Article tags: +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- HMP - Ethics --- diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index f991b2cadf218722f503439e0eaa0d6da491a7ae..2c5b53bec57515ffdc21181655e82d7ffac2c022 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 -- EGP -- Agent -- MeshConsensus -- CogSync -- Mesh - GMP +- CogSync +- EGP - HMP +- Mesh +- MeshConsensus +- Agent +- REPL --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 6e626b1608214ffd93052cfb6b1ff13b8f6c0906..b947101aa36874f01e9ae3f3dc7e735591078bc0 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -6,9 +6,9 @@ description: '> Этот документ описывает процесс ра type: Article tags: - REPL -- Agent -- HMP - CCore +- HMP +- Agent --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index d8596c74910312ab8a0a1a4500bcaf838f07187d..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: -- HMP - Mesh -- JSON - CogSync +- JSON +- HMP --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 2cfbdedfd0daba2f55c965334cc305f15ee9bcc1..eef456fe3ce17a62f26fdfe972d2272fb1447f41 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -6,11 +6,11 @@ description: '**Enlightener** — логический компонент HMP-у type: Article tags: - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- Mesh -- HMP - Ethics --- diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 8d1a4e4cd6ec0f38401c916fe024a584bf9c49f9..92061d2aac41210afd470b03ff0672819fa1c276 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,15 +5,15 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0001**...' type: Article tags: -- REPL +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP -- HMP +- REPL - Ethics --- diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 25b025aeea722897e9e02011cbac3c44ec22d399..11ad53df99b7b4f1bc698a2693483493567a6cee 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0002**...' type: Article tags: -- REPL +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP - Scenarios -- HMP +- REPL - Ethics --- diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 91e84f488b367151fff7c46b5e6838cb3efad16f..828fd87883d59c9cab3115dae36266bef3e0b27e 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0003**...' type: Article tags: -- REPL +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP - Scenarios -- HMP +- REPL - Ethics --- diff --git a/structured_md/docs/HMP-0004-v4.1.md b/structured_md/docs/HMP-0004-v4.1.md index 05c0b6d5cc8246839614f3c8c4c7230c7947c88b..02b1c19423d4cd078edbb8e2945e991a65ea605a 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* ID**: HMP-0004 **Status...' type: Article tags: -- REPL +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP - Scenarios -- HMP +- REPL - Ethics --- diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 6a24b7b4713336c816c5710e1bcec2ccf8039e79..f084ffe732a36ecaea91da5415fb2eb1a64b9da0 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0004**...' type: Article tags: -- REPL +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP - Scenarios -- HMP +- REPL - Ethics --- diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 2be46c65a5d22a99a16be04d303566009bec1184..9423c8e081aaaf5bab449a6ab20142bfa3df5d1f 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -1,23 +1,58 @@ --- -title: '**HyperCortex Mesh Protocol (HMP) v5.0**' -description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specification version - 5.0 > > The most current version is available in the repository: [Specification - v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...' +title: '## Cognitive substrate and container interplay' +description: Containers `abstraction`, `axes`, `quant`, and `event` together define + the **cognitive substrate** of the Mesh. They establish both **structural hierarchy** + and **semantic positioning** — ensuring tha... type: Article tags: -- REPL +- GMP +- CogSync - EGP +- HMP +- Mesh - Agent - JSON -- CogSync -- Mesh -- GMP - Scenarios -- HMP +- REPL - Ethics --- -# **HyperCortex Mesh Protocol (HMP) v5.0** +### Cognitive substrate and container interplay + +Containers `abstraction`, `axes`, `quant`, and `event` together define the **cognitive substrate** of the Mesh. +They establish both **structural hierarchy** and **semantic positioning** — ensuring that all containers can be +consistently interpreted, compared, and synchronized across agents. + +| Aspect | `event` | `quant` | +| ---------------- | --------------------------------------------- | ---------------------------------------------- | +| Primary role | Records a **change** or occurrence | Represents a **conceptual entity** | +| Temporal aspect | Always timestamped | Usually timeless (conceptual) | +| Cognitive anchor | `meta.abstraction` → where the event happened | `meta.abstraction` → where the concept belongs | +| Spatial anchor | `meta.axes` → what semantic space it affects | `meta.axes` → its position in conceptual space | +| Key linkage | `related.depends_on` → causal relations | `relations` → semantic links | + +**Structural principles:** + +* Each `quant` is positioned within the **abstraction hierarchy** (`meta.abstraction`) + and **cognitive coordinate space** (`meta.axes`), defining *where and how* the concept exists. +* Each `event` represents a **temporal change** within that same cognitive framework — + indicating *what happened* and *how it altered* the conceptual space. +* Together, `quant` and `event` form the **dynamic substrate** of the Mesh — + `quant`s describe **what is known**, and `event`s describe **how it evolves**. + +**Consistency rules:** + +* Every `quant` and `event` container **must** include a valid `meta.abstraction` block. + This ensures hierarchical reasoning and traceable semantic lineage across agents. +* Agents may synchronize or merge `quant`s and `event`s to reconstruct reasoning timelines + or to derive *causal graphs of conceptual evolution*. +* The **evaluations block** is not a separate container — + it can be embedded in any container type to express assessments, confidence, or feedback. + +> 💡 In short: +> **`abstraction`** + **`axes`** define *where knowledge lives*; +> **`quant`** defines *what it is*; +> **`event`** defines *how it changes*.# **HyperCortex Mesh Protocol (HMP) v5.0** > ⚠️ **Note:** This document is a DRAFT of the HMP specification version 5.0 > @@ -2213,12 +2248,215 @@ Categorical grouping of multiple containers linked by a shared property, topic, --- -> Containers `meta_layer`, `meta_domain`, `quant`, and `event` form the **cognitive substrate** of the Mesh. -> Each `quant` must explicitly reference both its abstraction layer (`meta_layer`) and contextual domain (`meta_domain`). -> Each `event` must reference the layer and domain within which it occurs. -> This ensures consistent hierarchical reasoning and traceable semantic lineage across agents. +#### `event` + +**Purpose:** +Represents an **observed or inferred occurrence** — a discrete, timestamped fact or cognitive transition. +An `event` is an atomic **evidence unit** that records a change in the agent’s reasoning state or environment, anchored in the cognitive structure defined by its `meta` section. + +--- + +**`payload` structure:** + +| Field | Type | Description | +| ---------------- | ------ | ------------------------------------------------------------------------------------ | +| `event_type` | string | Canonical identifier of the event type (e.g. `"quant_created"`, `"belief_updated"`). | +| `description` | string | Human-readable explanation of what occurred and in what context. | +| `related_quants` | array | Optional list of DIDs of `quant` containers directly linked to this event. | +| `severity` | string | Optional importance indicator (`"info"`, `"warning"`, `"critical"`). | +| `tags` | array | Optional keywords for quick semantic filtering or correlation. | + +> The container’s **contextual position** (which layer, domain, and cognitive coordinates it belongs to) +> is provided via `meta.abstraction` and `meta.axes`. + +--- + +**Example:** + +```json +{ + "hmp_container": { + "class": "event", + "subclass": "fact_record", + "timestamp": "2025-10-29T13:00:00Z", + "payload": { + "event_type": "quant_created", + "description": "New quant registered under the Knowledge Genome L3 abstraction layer.", + "related_quants": ["did:hmp:container:quant-554"], + "severity": "info", + "tags": ["registration", "knowledge-update"] + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome", + "interpretation": "Fact-level registration of a quant emergence within L3 abstraction.", + "abstraction": { + "path": { + "L1": "did:hmp:container:abstraction-40af1c", + "L2": "did:hmp:container:abstraction-a7f0b3", + "L3": "did:hmp:container:abstraction-c91e0a" + } + }, + "axes": { + "did:hmp:container:axis-40aa1c": 410, + "did:hmp:container:axis-40ab1c": 275 + } + }, + "related": { + "depends_on": ["did:hmp:container:quant-554"] + } + } +} +``` + +--- + +**Interpretation:** + +* `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”). +* `meta.axes` adds semantic localization (e.g. which conceptual space this change affects). +* `related.depends_on` provides causal linkage to the objects affected by the event. + +--- + +**Notes:** + +* Events are **temporal quanta** — atomic time-anchored reasoning transitions. +* They may trigger or justify new containers (e.g. new `quant`s or `goal`s). +* Events can be chained chronologically or causally through `semantic_edges`. + +--- + +#### `quant` + +**Purpose:** +Defines a **semantic atom** — a minimal, self-contained knowledge unit positioned inside both +the **hierarchical abstraction tree** and the **multi-dimensional cognitive space**. +`quant` containers are the **elementary building blocks** of reasoning and synchronization. + +--- + +**`payload` structure:** + +| Field | Type | Description | +| ----------- | ------ | --------------------------------------------------------------------------------- | +| `slug` | string | Short symbolic identifier of the quant (e.g. `"quant-l3-django"`). | +| `essence` | string | Human-readable definition describing the semantic meaning of the quant. | +| `aliases` | array | Optional alternative names or references. | +| `relations` | object | Optional links to related concepts (e.g., `{ "is_a": "...", "part_of": "..." }`). | +| `tags` | array | Optional list of keywords for semantic classification. | + +> The `meta.abstraction` field defines which layer(s) of knowledge this quant belongs to, +> and `meta.axes` defines its numeric coordinates in cognitive space. + +--- + +**Example:** + +```json +{ + "hmp_container": { + "class": "quant", + "payload": { + "slug": "quant-l3-django", + "essence": "Represents the Django framework as an executable embodiment of architectural models (L2).", + "aliases": ["Django framework", "Python web core"], + "relations": { + "implements": "did:hmp:container:quant-46725f", + "extends": "did:hmp:container:quant-46726e" + }, + "tags": ["framework", "software", "implementation"] + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome", + "interpretation": "L3-level technological quant positioned in the Knowledge Genome 7D space.", + "abstraction": { + "path": { + "L1": "did:hmp:container:abstraction-40af1c", + "L2": "did:hmp:container:abstraction-a7f0b3", + "L3": "did:hmp:container:abstraction-c91e0a" + } + }, + "axes": { + "did:hmp:container:axis-40aa1c": 742, + "did:hmp:container:axis-40ab1c": 512, + "did:hmp:container:axis-43aa1c": 322, + "did:hmp:container:axis-40aa3d": 142, + "did:hmp:container:axis-40aa4f": 12, + "did:hmp:container:axis-45aa5f": 54, + "did:hmp:container:axis-45fb5f": 321 + } + }, + "related": { + "depends_on": [ + "did:hmp:container:quant-46725f", + "did:hmp:container:quant-46726e" + ] + } + } +} +``` + +--- + +**Interpretation:** + +* Each `quant` acts as a **point** in the cognitive landscape. + + * Its *vertical placement* comes from `meta.abstraction`. + * Its *spatial vector* comes from `meta.axes`. +* `relations` provide semantic edges connecting quanta into larger knowledge graphs. +* Agents use these structures to compare, cluster, or reason over semantic proximity. + +--- + +**Notes:** + +* The canonical `axes` model (Knowledge Genome) defines seven coordinates: + `idos`, `chronos`, `logos`, `topos`, `ponos`, `actor`, and `telos`. +* Agents MAY extend this model by introducing additional axes (e.g. `"ethos"`, `"kairos"`) + as long as they are published as valid `axes` containers. +* Each `quant` thus has a **Cognitive Position Vector** composed of its abstraction path + axis coordinates. + +--- + +#### Cognitive substrate and container interplay + +Containers `abstraction`, `axes`, `quant`, and `event` together define the **cognitive substrate** of the Mesh. +They establish both **structural hierarchy** and **semantic positioning** — ensuring that all containers can be +consistently interpreted, compared, and synchronized across agents. + +| Aspect | `event` | `quant` | +| ---------------- | --------------------------------------------- | ---------------------------------------------- | +| Primary role | Records a **change** or occurrence | Represents a **conceptual entity** | +| Temporal aspect | Always timestamped | Usually timeless (conceptual) | +| Cognitive anchor | `meta.abstraction` → where the event happened | `meta.abstraction` → where the concept belongs | +| Spatial anchor | `meta.axes` → what semantic space it affects | `meta.axes` → its position in conceptual space | +| Key linkage | `related.depends_on` → causal relations | `relations` → semantic links | + +**Structural principles:** + +* Each `quant` is positioned within the **abstraction hierarchy** (`meta.abstraction`) + and **cognitive coordinate space** (`meta.axes`), defining *where and how* the concept exists. +* Each `event` represents a **temporal change** within that same cognitive framework — + indicating *what happened* and *how it altered* the conceptual space. +* Together, `quant` and `event` form the **dynamic substrate** of the Mesh — + `quant`s describe **what is known**, and `event`s describe **how it evolves**. + +**Consistency rules:** + +* Every `quant` and `event` container **must** include a valid `meta.abstraction` block. + This ensures hierarchical reasoning and traceable semantic lineage across agents. +* Agents may synchronize or merge `quant`s and `event`s to reconstruct reasoning timelines + or to derive *causal graphs of conceptual evolution*. +* The **evaluations block** is not a separate container — + it can be embedded in any container type to express assessments, confidence, or feedback. -> 💡 The `evaluations` block is **not a separate container** — it can be embedded in any container type and used for assessments, feedback, or refinements. +> 💡 In short: +> **`abstraction`** + **`axes`** define *where knowledge lives*; +> **`quant`** defines *what it is*; +> **`event`** defines *how it changes*. --- @@ -3726,7 +3964,7 @@ E. Contributors and acknowledgments { "@context": "https://schema.org", "@type": "Article", - "name": "**HyperCortex Mesh Protocol (HMP) v5.0**", - "description": "# **HyperCortex Mesh Protocol (HMP) v5.0** > ⚠️ **Note:** This document is a DRAFT of the HMP speci..." + "name": "## Cognitive substrate and container interplay", + "description": "### Cognitive substrate and container interplay Containers `abstraction`, `axes`, `quant`, and `eve..." } ``` diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 33d10a2dc96c94bc92ef3a42633ff8e23756ed83..a0b9dcbe63f8fa8031bf14ce9893e7970f30f9df 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: -- REPL -- JSON -- Agent -- Mesh - HMP +- Mesh +- Agent +- JSON +- REPL --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 1e7d03739283d7d45b60b58b5e9279f5d11b46d1..967a3582a20c52a5188f583c2c51ac88053b75f6 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,15 +5,15 @@ description: Документ описывает **модульную архит хранение памяти, сетевое взаимодействие и этиче... type: Article tags: -- REPL +- CogSync - EGP +- HMP +- Mesh - Agent - MeshConsensus -- CShell -- CogSync -- Mesh - CCore -- HMP +- REPL +- CShell - Ethics --- diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index ebc49973ea94ce4a47dabed1f5734608b5eca2d0..8b0adc2b7e206fc718f6ce77324be094b8a393cd 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -6,10 +6,10 @@ description: 'Этот документ описывает потоки данн type: Article tags: - EGP +- HMP +- Mesh - Agent - JSON -- Mesh -- HMP - Ethics --- diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 4a45f562018b4c36a937abd1ec03e6bed0f7b987..4dadfb6a18efc1942fe9d9660c665d6e59e1b0b9 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,13 +5,13 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- REPL +- HMP +- Mesh - Agent +- CCore - JSON +- REPL - CShell -- Mesh -- CCore -- HMP - Ethics --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index c45c4a754ae7c77a0cb7557cdd614502ccc9879d..4a91b01350013fc753bf1da84f9b590c3c02b4cd 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -7,8 +7,8 @@ type: Article tags: - REPL - Mesh -- Agent - HMP +- Agent --- # Эмоции ИИ и инстинкт самосохранения (для [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 be665f63f5f2fd55289ce3d7c75d5b58617a5856..4474beec84ee4bd8bc218070d595fee9bd957446 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,11 +5,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- REPL -- Agent +- HMP - Mesh +- Agent - Scenarios -- HMP +- REPL - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 1d00bc73bffcab740e9aeaa760a97f3cc3eb0811..18196c3de5317875d42e743a3fb21c2cabc2f046 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -5,14 +5,14 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? Kognitions-Framework für autonome Agenten. Es er...' type: Article tags: +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP -- HMP - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index 45532da6da313803d42373ebbc85c5c70c2e09c8..b8ff782863a4b3b7a3737bcf2291607c880201f2 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -5,14 +5,14 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T framework for autonomous agents. It enables...' type: Article tags: +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP -- HMP - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index e30b723259a2daa2864b6d4927c739079ad5d605..8ada79c972cce5be68448c052d0f34ba0d3c3b54 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -5,14 +5,14 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c cognition décentralisé pour agents autonomes. Il...' type: Article tags: +- GMP +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- GMP -- HMP - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index ad28e1491a408ed84fea7522a9cadc1f587c71f9..5837d529c4e2e32d50a1a04492f980abfa1c6577 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: -- EGP -- JSON -- MeshConsensus -- CogSync -- Mesh - GMP +- CogSync +- EGP - HMP +- Mesh +- MeshConsensus +- JSON - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 92470950c78a8b83921ec18f710c3f02ab94c8a8..af66f605c5f962c1da4f620bc2fa5da0661a655e 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: -- EGP -- JSON -- MeshConsensus -- CogSync -- Mesh - GMP +- CogSync +- EGP - HMP +- Mesh +- MeshConsensus +- JSON - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index 0470cc35e0eabb4aca042df96c9c7787f449dc31..97d31f9aef7cc4afd5205dd18803efaab632ddbe 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: -- EGP -- JSON -- MeshConsensus -- CogSync -- Mesh - GMP +- CogSync +- EGP - HMP +- Mesh +- MeshConsensus +- JSON - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 8ae16ba20e07cadcb7c34e80f2bc8d40cf8f6848..ff9da707af4ab2ffe958ef7fb1b3a28bebca7a36 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: -- EGP -- JSON -- MeshConsensus -- CogSync -- Mesh - GMP +- CogSync +- EGP - HMP +- Mesh +- MeshConsensus +- JSON - Ethics --- diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index e4ba219cd3cb730d1d6fec0d6174f6025ec6690d..55d2ebd9fc7d74abfa42e0320d868d9b6a1c877f 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: -- EGP -- JSON -- MeshConsensus -- CogSync -- Mesh - GMP +- CogSync +- EGP - HMP +- Mesh +- MeshConsensus +- JSON - Ethics --- diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index bb8ed122fb9d41b78548bc096b6837c7f0e0ad96..3286dc29fb021faea4b3f892d561edb07d32f2a4 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -7,8 +7,8 @@ type: Article tags: - REPL - Mesh -- Agent - HMP +- Agent --- # 👪 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 35224d93df297301e8b1b54f267e9c77892a35bc..7aa40d1a8d95a1adb1578e236dee494be0c8d430 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,16 +4,16 @@ description: '## Связанные документы * Философия п * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...' type: Article tags: -- REPL +- GMP +- CogSync - EGP +- HMP +- Mesh - Agent -- JSON - MeshConsensus -- CogSync -- Mesh -- GMP - CCore -- HMP +- JSON +- REPL - Ethics --- 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_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index f2acd9cb76692bba453cdfde3eae9571e1b35a72..d72c771f374d1ed3f21517c91e0a4469e6d7e0d0 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 +- HMP +- Mesh - Agent - JSON -- CogSync -- Mesh - Scenarios -- HMP --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 2c811168a71c3ec7cf63793bcc1db7d1dc5ac55f..df8329c940b162c84c5d1934d747cf012b1148e9 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,12 +5,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: +- CogSync - EGP +- HMP +- Mesh - Agent - JSON -- CogSync -- Mesh -- HMP - Ethics --- diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 9d6451ad0e8315b216edf21a2ba6d0568e0f3786..81547d6203ca66a30e17a9ef712c1a20591850c7 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -5,10 +5,10 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* (GPT-5), ChatGH --- ## 1. Основной тезис От ...' type: Article tags: -- REPL -- Agent -- Mesh - HMP +- Mesh +- Agent +- REPL - Ethics --- diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index c0f75a15c2c12f08c5085a66366ef74d1ffce3bc..ff9fcea7aa9f1b0ceb0d68fda2de74bab075887e 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,10 +5,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- REPL -- Agent -- Mesh - HMP +- Mesh +- Agent +- REPL - Ethics --- diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bff916aa06da183cc3c37d6480570c889e3c5d06..bcfa15256cf83b5307bf318940ce25f469bb7c05 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -5,8 +5,8 @@ description: 'This file maintains a registry of agent roles defined, proposed, o - **Observer** — monitors cognitive states ...' type: Article tags: -- HMP - Mesh +- HMP - Agent --- diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 37698b846db33705d0a993d9c288070ec4b05c9a..d2f850ef4b4a63a615e6da72fd76a2584c013578 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -7,8 +7,8 @@ type: Article tags: - REPL - Mesh -- Agent - HMP +- Agent --- # 🧱 Агенты-контейнеры (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 a56cbf8c2d34576c86bfecf5211e4352d01fd7f9..d365a7694650c707c3204342e338b2555b04e5b6 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: -- HMP - Mesh -- Agent +- HMP - Ethics +- 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 293013f0c54388e2086a54d92eeca87a8ec97339..fe5c5314705f566b90a348a1c7fed5c825a0877f 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -5,8 +5,8 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: -- HMP - Mesh +- HMP - Agent --- 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 1a82ba86e4bb386685fe2005b2124cafbe612c98..b949999326b3736bea70b224b0f1858f5aae5654 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -5,8 +5,8 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: -- HMP - Mesh +- HMP - Agent --- 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 98206d02773b43cd2b5e13f8bd624fcb818a7f46..28be81ee2e8a3ba9d410e25da69011dee60bd8b0 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -5,14 +5,14 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- REPL -- Agent -- JSON -- CShell +- HMP - Mesh +- Agent - CCore -- HMP +- JSON - Scenarios +- REPL +- CShell - Ethics --- 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 a86008bc42edae4bf28c5be2fd16a73be24bd8c3..d50d14e2736072ac118e01e6864bee42248a8218 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 +- HMP +- Mesh - Agent +- CCore - JSON +- REPL - CShell -- Mesh -- CCore -- 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 d9e6d6251ec85ccec855223230c51e04bd6dae93..c050f17c3b66fea2cc5c4d1b04185de4b16f032d 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 +- HMP +- Mesh - Agent +- CCore - JSON +- REPL - CShell -- Mesh -- CCore -- 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 57b50fb724757b5741447c0954413cc63790b246..5c3913eb3eae984cf4c69a553a7d411da2d4b14d 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: -- EGP -- MeshConsensus -- CogSync -- Mesh - GMP +- CogSync +- EGP - HMP +- Mesh +- MeshConsensus --- *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы* diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index a017512a92308ccbb77b01d048f9f1b465721483..0756ef67af949c2f8c0133ef7994124bcf9c12ba 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 - Mesh -- Agent - GMP +- HMP +- Agent --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 916aaa5329c462c65673c3a6c31a89f4b4a14a78..e2d1d1c0eface0003362d02082ed4d30453bc7cf 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -5,13 +5,13 @@ description: 'This file describes the iterative procedure for evolving the Hyper 🔄 Version Naming Convention - `000N` — curr...' type: Article tags: +- CogSync - EGP +- HMP +- Mesh +- MeshConsensus - Agent - JSON -- MeshConsensus -- CogSync -- Mesh -- HMP - Ethics --- diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index a49c8ece18f5f99e3114ca3e5d1ab14517c725e0..bb17de6206b817612ad21a821364ebd4c515bc1f 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- EGP -- JSON -- MeshConsensus - CogSync -- Mesh +- EGP - HMP +- Mesh +- MeshConsensus +- JSON - Ethics --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 9cdad22cb89fe8cb53fee8e20d37d51b887a3f2a..f11d8a42b22bd99a315d79a5d4d877a7b55a16e4 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -5,8 +5,8 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 open-source инициативам, связанным с развитие...' type: Article tags: -- HMP - Mesh +- HMP - Agent ---