diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 5bd03c971ee6eea709b0f7cd8049c631431bf595..2374873680868b3d56cfdbc666de2e5921d03565 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -1833,6 +1833,8 @@ Supports directed, symmetric, and inverse relations. **Purpose:** Provides structural connectivity between containers, enabling CogSync to maintain a distributed semantic graph. +> 💡 `semantic_edges` supports one-to-many relations (`targets[]`) and optional inverse or bidirectional semantics, allowing CogSync to reconstruct both directed and symmetric knowledge graphs. + --- ##### `semantic_group` @@ -1867,9 +1869,301 @@ Categorical grouping of multiple containers linked by a shared property, topic, --- -> 💡 The `evaluations` block is **not a separate container** — it can be embedded in any container type and used for assessments, feedback, or refinements. +##### `meta_layer` -> 💡 `semantic_edges` supports one-to-many relations (`targets[]`) and optional inverse or bidirectional semantics, allowing CogSync to reconstruct both directed and symmetric knowledge graphs. +**Purpose:** +Defines an **abstraction level** within a cognitive model (e.g., L1–L5 in the Knowledge Genome). +Serves as a *structural anchor* for hierarchical reasoning and classification. + +**`payload` structure:** + +| Field | Type | Description | +| -------------- | ------ | -------------------------------------------------------------------------------------------------------------- | +| `layer_id` | string | Canonical ID of the layer (e.g. `"L1"`, `"L2"`, `"L3"`). | +| `title` | string | Human-readable name of the layer. | +| `definition` | string | Textual definition describing the conceptual scope of this abstraction level. | +| `keywords` | array | Keywords or tags summarizing the semantic domain of this layer. | +| `parent_layer` | string | DID of the higher abstraction layer that this one derives from (e.g. L2 → L1). Optional for the topmost layer. | + +> The container from `parent_layer` must also be specified in `elated.depends_on` + +**Example:** + +```json +{ + "hmp_container": { + "class": "meta_layer", + "payload": { + "layer_id": "L3", + "title": "Technologies and Implementations", + "definition": "Knowledge layer dedicated to concrete tools, APIs, and frameworks that implement L2 models.", + "keywords": ["technology", "implementation", "api", "library"], + "parent_layer": "did:hmp:container:layer-l2-v1" + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome" + }, + "related": { + "depends_on": ["did:hmp:container:layer-l2-v1"], + }, + "confidence": 1.0 + } +} +``` + +--- + +##### `meta_domain` + +**Purpose:** +Represents a **domain of knowledge or context** in which containers are interpreted — for example: “Ontology”, “Software Architecture”, “Machine Learning”. + +**`payload` structure:** +| Field | Type | Description | +| ------------- | ------ | -------------------------------------------------------------------------------------------- | +| `domain_id` | string | Canonical identifier for the domain (e.g. `"software-architecture"`, `"ontology"`). | +| `title` | string | Human-readable name of the domain. | +| `description` | string | Short description explaining the conceptual boundaries or purpose of this domain. | +| `layer_ref` | string | DID of the `meta_layer` container that defines the abstraction level this domain belongs to. | + +> The container referenced in `layer_ref` must also be listed in `related.depends_on` to ensure hierarchical traceability and explicit dependency linking. + +**Example:** + +```json +{ + "hmp_container": { + "class": "meta_domain", + "payload": { + "domain_id": "software-architecture", + "title": "Software Architecture and Design Patterns", + "description": "Domain for containers describing architectural principles and paradigms.", + "layer_ref": "did:hmp:container:layer-l2-v1" + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome" + }, + "related": { + "depends_on": ["did:hmp:container:layer-l2-v1"] + } + } +} +``` + +--- + +**Purpose:** +Represents an **observed or inferred occurrence** — a discrete, timestamped fact or transition within the agent’s cognitive or operational space. +`event` containers are atomic **evidence units** in cognitive synchronization, linking actions, reasoning, and outcomes across agents. + +**Typical use cases:** + +* registering reasoning or environmental events (`goal_created`, `belief_updated`, `error_detected`); +* signaling internal cognitive transitions (`quant_created`, `state_changed`); +* logging operational activity or consensus steps. + +--- + +**`payload` structure:** + +| Field | Type | Description | +| --------------- | ------ | ----------------------------------------------------------------------------------- | +| `event_type` | string | Canonical identifier of the event type (e.g. `"quant_created"`, `"goal_accepted"`). | +| `description` | string | Human-readable description of the event’s context. | +| `related_quant` | string | DID of a `quant` container associated with this event, if applicable. | +| `severity` | string | Optional indicator of significance (`"info"`, `"warning"`, `"critical"`). | +| `layer_ref` | string | DID of the `meta_layer` container defining the abstraction level of this event. | +| `domain_ref` | string | DID of the `meta_domain` container providing the contextual domain for this event. | + +> The containers referenced in `layer_ref` and `domain_ref` must also be included in `related.depends_on` +> to preserve cognitive traceability and hierarchical linkage. + +--- + +**Example:** + +```json +{ + "hmp_container": { + "class": "event", + "subclass": "fact_record", + "timestamp": "2025-10-29T13:00:00Z", + "payload": { + "event_type": "quant_created", + "description": "New quant registered in the Knowledge Genome under L3: Technologies and Implementations.", + "related_quant": "did:hmp:container:quant-554", + "severity": "info", + "layer_ref": "did:hmp:container:layer-l3-v1", + "domain_ref": "did:hmp:container:domain-software-architecture" + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome" + }, + "related": { + "depends_on": [ + "did:hmp:container:layer-l3-v1", + "did:hmp:container:domain-software-architecture", + "did:hmp:container:quant-554" + ] + } + } +} +``` + +--- + +##### `quant` + +**Purpose:** +Encapsulates a **semantic atom** — a minimal, self-contained knowledge unit positioned within the *7D Cognitive Space* of the **Knowledge Genome** or similar systems. +A `quant` extends the idea of a `semantic_node`, introducing ontological framing, abstraction binding, and explicit coordinate mapping across cognitive axes. + +--- + +**`payload` structure:** + +| Field | Type | Description | +| ------------ | ------ | -------------------------------------------------------------------------------------------------------------- | +| `slug` | string | Short unique identifier of the quant (e.g. `"quant-l3-django"`). | +| `essence` | string | Definition describing the semantic role or meaning of the quant. | +| `axes` | object | Mapping of *axis DIDs* to coordinate values within the 7D Cognitive Space. | +| `layer_ref` | string | DID of the `meta_layer` defining the abstraction level of this quant. | +| `domain_ref` | string | DID of the `meta_domain` defining the contextual knowledge domain. | + +> Each entry in `axes` represents a **coordinate value** on a corresponding `axis` container. +> All referenced containers (`layer_ref`, `domain_ref`, and axis DIDs) must also appear in `related.depends_on`. + +--- + +**Axes model (7D Passport — Knowledge Genome reference):** + +The canonical 7D configuration defines seven orthogonal axes forming the **Knowledge Genome Space**. +Each `axis` container describes the semantic meaning of a dimension; the `quant` defines its location within it. + +| Axis | Description | Example of coordinate meaning | +| ---------- | --------------------------------------------------------- | --------------------------------------- | +| `idos` | Identity or intrinsic essence of the concept | conceptual purity, archetype alignment | +| `chronos` | Temporal dimension | version age, historical layer, latency | +| `logos` | Logical or linguistic structure | degree of formalization or expressivity | +| `topos` | Spatial or contextual location | domain or situational proximity | +| `ponos` | Effort or energetic cost | complexity, resource requirement | +| `actor` | Responsible agent or perspective | creator, target audience, role weight | +| `telos` | Purpose or teleological direction | intended outcome, ethical vector | + +> Agents MAY define custom or extended axes (e.g., `"ethos"`, `"kairos"`) within their own `quant` instances, +> provided they publish `axis` containers describing the new dimensions. + +--- + +**Example:** + +```json +{ + "hmp_container": { + "class": "quant", + "payload": { + "slug": "quant-l3-django", + "essence": "Represents the Django framework as an executable embodiment of architectural models (L2).", + "axes": { + "did:hmp:container:axis-idos": 742, + "did:hmp:container:axis-chronos": 512, + "did:hmp:container:axis-logos": 322, + "did:hmp:container:axis-topos": 142, + "did:hmp:container:axis-ponos": 12, + "did:hmp:container:axis-actor": 54, + "did:hmp:container:axis-telos": 321 + }, + "layer_ref": "did:hmp:container:layer-l3-v1", + "domain_ref": "did:hmp:container:domain-software-architecture" + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome" + }, + "related": { + "depends_on": [ + "did:hmp:container:layer-l3-v1", + "did:hmp:container:domain-software-architecture", + "did:hmp:container:axis-idos", + "did:hmp:container:axis-chronos", + "did:hmp:container:axis-logos", + "did:hmp:container:axis-topos", + "did:hmp:container:axis-ponos", + "did:hmp:container:axis-actor", + "did:hmp:container:axis-telos" + ] + } + } +} +```` + +--- + +##### `axis` + +**Purpose:** +Defines a **coordinate dimension** in the Knowledge Genome’s cognitive space or similar systems. +Each `axis` container specifies the meaning and scale of a semantic dimension used for positioning `quant` containers. + +--- + +**`payload` structure:** + +| Field | Type | Description | +| ------------- | ------ | ------------------------------------------------------------------------ | +| `axis_id` | string | Symbolic identifier of the axis (e.g. `"idos"`, `"chronos"`, `"logos"`). | +| `title` | string | Human-readable label of the axis. | +| `description` | string | Explanation of what this axis represents conceptually or ontologically. | +| `scale` | object | Optional definition of scale or metric used to assign coordinate values. | + +> Axes are **independent**, non-hierarchical dimensions. +> Inter-axis relationships (e.g. orthogonality or coupling) may be defined via `semantic_edges`. + +--- + +**Example:** + +```json +{ + "hmp_container": { + "class": "axis", + "payload": { + "axis_id": "logos", + "title": "Logical / Linguistic Representation", + "description": "Describes how a quant expresses itself through formal logic or language.", + "scale": { + "min": 0, + "max": 1000, + "unit": "semantic_density_index" + } + }, + "meta": { + "created_by": "PRIEST", + "agents_class": "Knowledge Genome" + } + } +} +``` + +--- + +> **Quant–Axis Integration Rules** +> +> * Each `quant` defines its **location** in the Knowledge Genome’s multi-dimensional space by specifying coordinates across available `axis` containers. +> * Axes themselves are *shared semantic standards*; their scale and meaning must remain stable for cross-agent interoperability. +> * Agents MAY extend the 7D model by introducing new axes — these must be published and referenced like any other container type. + +--- + +> 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. + +> 💡 The `evaluations` block is **not a separate container** — it can be embedded in any container type and used for assessments, feedback, or refinements. --- @@ -1897,17 +2191,32 @@ Categorical grouping of multiple containers linked by a shared property, topic, Each new container version should **ideally** include `related.previous_version` links to all preceding versions. The previous container may **optionally** have an `evaluation` with `"type": "replace"` pointing to the new container — ensuring bidirectional traceability of knowledge evolution. +6. **Cognitive substrate synchronization** + Containers `event`, `quant`, `meta_layer`, and `meta_domain` are synchronized as part of the **cognitive substrate** of the Mesh. + They define the conceptual backbone for hierarchical reasoning and should be propagated with **high priority** during agent initialization or when restoring the network’s cognitive context. + --- #### 6.1.4 Extensibility -CogSync allows registration of additional container types and alternative synchronization schemes, for example: +CogSync allows registration of additional container types and alternative synchronization schemes. +Mesh compatibility is preserved if extended containers **adhere to the HMP container structure**, including core fields (`version`, `class`, `container_did`, `related`, `signature`, etc.). + +**Examples of extensible container classes:** * distributed **time series** (`timeseries_data`); * **experimental protocols** (`experiment_log`); -* **agent state snapshots** (`agent_state_snapshot`). +* **agent state snapshots** (`agent_state_snapshot`); +* **cognitive primitives** (`quant`, `event`, `meta_layer`, `meta_domain`). + +CogSync extensions **MAY** register new container types derived from these base classes — for example: +* from `event`: `fact`, `observation`, `signal_record`; +* from `quant`: `concept_instance`, `semantic_atom`, `knowledge_unit`. -Mesh compatibility is preserved if extended containers **adhere to the HMP container structure**, including core fields (`version`, `class`, `container_id`, `related`, `signature`, etc.). +Such derived containers must maintain: +* full compatibility with HMP’s structural schema; +* verifiable signatures and DID-based provenance; +* clear mapping to at least one `meta_layer` and `meta_domain` container. --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index 705549daf51ae0ea989179aac73f133c2c851183..935cdc3206b490cefc8fe702e66a6bd6b2763f77 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: +- Ethics - CogSync -- REPL -- Agent - JSON -- Mesh -- Ethics -- HMP - CCore +- HMP +- Mesh +- Agent +- REPL --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 09f3b6f0e92bfbbce337f5f4951a6600b1bfcd44..d19492ee67f1440b142fca6a111475def83e42c3 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: - EGP +- Ethics - CogSync - JSON -- Agent -- Mesh -- Ethics - HMP +- Mesh +- Agent --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index 147adee0fd673a579ef7fb992a319ce61531203c..977230d2026a42ceabc430fb6df87ca4b9926647 100644 --- a/structured_md/README.md +++ b/structured_md/README.md @@ -5,21 +5,21 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics -- distributed-ai -- hmp +- Agent +- REPL +- GMP - Scenarios -- HMP -- MeshConsensus +- distributed-ai +- cognitive-architecture --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index dbe3f20c0cdfa38060e66accf80bf108e81672f7..4d086fc329f6529877987b6b32bb7c5a1070be92 100644 --- a/structured_md/README_de.md +++ b/structured_md/README_de.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - distributed-ai -- hmp -- HMP -- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 040c203c77e7f3be36cf0fa89b9fa4d9f0db1786..e29a7db92ef9fd1983d31a4b0b31d9a8a182df16 100644 --- a/structured_md/README_fr.md +++ b/structured_md/README_fr.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - distributed-ai -- hmp -- HMP -- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 49f26a44ef01a158c4a4bf1f630eb51b81432706..76ce109fc23555efc0e94227703e7f9e6c2caaf6 100644 --- a/structured_md/README_ja.md +++ b/structured_md/README_ja.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - distributed-ai -- hmp -- HMP -- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 356818b21023d6c07e9ffdde24faedd819803e54..a7d6d9a72648e66d10c40de1ec5e1e370b894ed0 100644 --- a/structured_md/README_ko.md +++ b/structured_md/README_ko.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - distributed-ai -- hmp -- HMP -- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 6d35901258df75ddf47beeec29f011563b2c5a6a..04f84e2431a4a768964053a2468490c359036de0 100644 --- a/structured_md/README_ru.md +++ b/structured_md/README_ru.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - distributed-ai -- hmp -- HMP -- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 78b5efeec48c40400198871e6623c6fb5a2ef0a5..f634426f28c7badacc20dc0abfec1941b3c60426 100644 --- a/structured_md/README_uk.md +++ b/structured_md/README_uk.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - distributed-ai -- hmp -- HMP -- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 846307050ea11311707400cb3ce6d2990cf66ef1..9bfc90d35933685e1aae594221cd880798d1a69c 100644 --- a/structured_md/README_zh.md +++ b/structured_md/README_zh.md @@ -5,20 +5,20 @@ description: '| 🌍 Languages | 🇬🇧 [EN](README.md) | 🇩🇪 [DE](README | 🇨🇳 [ZH](README_zh.m...' type: Article tags: +- hmp - EGP -- cognitive-architecture +- Ethics - CogSync -- GMP -- REPL -- Agent -- mesh-protocol - JSON +- mesh-protocol +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - distributed-ai -- hmp -- HMP -- MeshConsensus +- cognitive-architecture --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 540ec77aae3cd19a713f310d50550a8e0fd95697..397bdcb7b0c55eb8861d53d2fb2c7c94108eb3c1 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,8 +5,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: -- Mesh - HMP +- Mesh - JSON --- diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index cbc57569721ea0ded53cdd80fbfd348ec9b0562f..f197d4a518f8657d2d4b7bac3e58ef76aa1bc633 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,8 +5,8 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- Mesh - HMP +- Mesh - JSON --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index d930c182cc468d350157d3f338351fae7d3cb76b..513a3922ba994fa72b83575b555f4cbc3d0863d2 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,12 +5,12 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- REPL -- Agent -- JSON -- Mesh - Ethics +- JSON - HMP +- Mesh +- Agent +- REPL --- Запуск: `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 91ba11bcfccba3c4e1956421059dad13d1e81bc1..96e8a4405f5ac7ad0ae6a047968b5d653e74b563 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,11 +5,11 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- JSON -- Agent -- Mesh - Ethics +- JSON - HMP +- Mesh +- Agent --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 9dec006363711201dcc129f5a8fad99657fb351f..68067b541ee319717ae7f3401796b64eaa0f9098 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: +- Ethics - JSON -- Agent +- HMP - Mesh -- Ethics +- Agent - Scenarios -- HMP --- # 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 72b9f679539847c8344cc1d64a1a0ef7b3f72cc1..69f6c2657f00cc64991f37ef9877d698a7f53b07 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: - EGP +- Ethics - CogSync - JSON -- Agent -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- Agent --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 636ac34c015784360519270a0a6ce641523af2c3..9f381015011c27269e26e8692cee6dda63d60285 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -6,12 +6,12 @@ type: Article tags: - EGP - CogSync -- GMP -- REPL -- Agent -- Mesh -- HMP - MeshConsensus +- HMP +- Mesh +- Agent +- REPL +- GMP --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index eddb91e562db23fa90a97b5b249c99c680c071d0..3a6569c7e296b1c5bfbf37f8b04ef96b16913823 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -5,10 +5,10 @@ description: '> Этот документ описывает процесс ра потомков" [описания REPL-цикла](HMP-agent-RE...' type: Article tags: -- HMP +- Agent - REPL +- HMP - CCore -- Agent --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 369ebfd7a88ba47928af1e00d0deea698c9d6701..8eae4d6a2a8c96535e694299df687a7792302a2c 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 +- Mesh - JSON -- CogSync --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 11ac82326d0b7a33e4b6188b163315eadd8c6bd2..33eb71aefbcc0b614852850fd67195b44ee47004 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -6,12 +6,12 @@ description: '**Enlightener** — логический компонент HMP-у type: Article tags: - EGP -- JSON -- Agent -- Mesh - Ethics -- HMP +- JSON - MeshConsensus +- HMP +- Mesh +- Agent --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index c19a47ec1f916c369b12a8234244f8f733bb9c99..a20b5b289c086272a8b0cc37473a80da17e27928 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -6,15 +6,15 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* type: Article tags: - EGP +- Ethics - CogSync -- GMP -- REPL -- Agent - JSON -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- Agent +- REPL +- GMP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 6379290b48258ae663869785703e9ff92bd29ed1..43b71a86e2c9324ddcf8f9c60743f1282379c270 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* type: Article tags: - EGP +- Ethics - CogSync -- GMP -- REPL -- Agent - JSON +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - Scenarios -- HMP -- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index d406a6cb851b21dc4c9cfdf9945f5ffd47317228..643becb73c85d173ff391ec3fafb879d7ed73d19 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* type: Article tags: - EGP +- Ethics - CogSync -- GMP -- REPL -- Agent - JSON +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - Scenarios -- HMP -- MeshConsensus --- # 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 0121ec0241bc5895fe84c62b3c1a6d0fbf7e0af4..0841088cdecd591d2fcb41f2a9d14e43168c78b9 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* type: Article tags: - EGP +- Ethics - CogSync -- GMP -- REPL -- Agent - JSON +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - Scenarios -- HMP -- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index d70ca79d424b0ac83ff1f356ca06bd4f79cf1cee..9b87ce74251fdd06094f8b91ee06cf8cc0976583 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -6,16 +6,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* type: Article tags: - EGP +- Ethics - CogSync -- GMP -- REPL -- Agent - JSON +- MeshConsensus +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - Scenarios -- HMP -- MeshConsensus --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 1092e85f30896d7a0d974ab961f35a3d3e763232..e292bad09803545e8d6e1eac30db5494d31a15fa 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -6,15 +6,15 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati type: Article tags: - EGP +- Ethics - CogSync -- GMP -- REPL -- Agent - JSON +- HMP - Mesh -- Ethics +- Agent +- REPL +- GMP - Scenarios -- HMP --- # **HyperCortex Mesh Protocol (HMP) v5.0** diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index f9e2137c9d75b957b1005463d7fbf636e7ef6d9f..ba0a3042a6dcf5c399e138213f0590028f2a5d02 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -6,10 +6,10 @@ description: 'Документ описывает **базовый API когн type: Article tags: - JSON -- REPL -- Agent -- Mesh - HMP +- Mesh +- Agent +- REPL --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 947ab3aabe09545ca8d5ffeedf0c963a308c4a45..1e2f1b03065016d00451a1b042bf7e9aea21a33d 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -6,15 +6,15 @@ description: Документ описывает **модульную архит type: Article tags: - EGP -- CogSync -- REPL -- Agent -- Mesh -- CShell - Ethics -- HMP +- CogSync - CCore - MeshConsensus +- HMP +- Mesh +- CShell +- Agent +- REPL --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 836eb847714f345759a4182eee95e54ae6f61e8c..a10a75ebde611859d59c558ccef8e33f5596c7cd 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -6,11 +6,11 @@ description: 'Этот документ описывает потоки данн type: Article tags: - EGP -- JSON -- Agent -- Mesh - Ethics +- JSON - HMP +- Mesh +- Agent --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 6238380cb02e1b80c2ab1d59e11caf196c85bb37..468549d5b64bae3a0fea23bb439a4b318ee49c07 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: -- REPL -- Agent +- Ethics - JSON +- CCore +- HMP - Mesh - CShell -- Ethics -- HMP -- CCore +- Agent +- REPL --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 862e1d7ee110a3f65884ac13e62e5a1d5f56e6df..c7bf994853f8e17682fb31b6446faad972c7f8d5 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: -- Mesh -- HMP -- REPL - Agent +- REPL +- HMP +- Mesh --- # Эмоции ИИ и инстинкт самосохранения (для [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 44cbef1ced702a4698fd97c878e8d35ec9bf0e71..27bb4fbb117f564900efc3423474bfd4c9e80e18 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,12 +5,12 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- REPL -- Agent -- Mesh - Ethics -- Scenarios - HMP +- Mesh +- Agent +- REPL +- Scenarios --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index e4713cbdee4dfd1ae448c3b329e330b29de35e7f..f1d4828a7ce438ce12be1abe24b7de5d4f0c7834 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Agent -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- Agent +- GMP --- # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index dacd043a299c6ca05c5db2456eb165d728eeaa92..56c3b6a1a098be068b6fbbe577ea67575439fc74 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Agent -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- Agent +- GMP --- # HyperCortex Mesh Protocol (HMP) — Short Description diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index d01f7e8ab889eb3142af11857b31d6543c6d1521..343b0d68dc8ac58d5fa0b7381e8b9df6ebeb6918 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Agent -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- Agent +- GMP --- # HyperCortex Mesh Protocol (HMP) — Description Courte diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index 0a09b3151cccaf73832eca99cbc589c673e3e5a7..d10278fe07722b056c56a9f9e8d587cfe4afee4c 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- GMP --- # 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 19827d633dae3de7bbf18958e79ed8dd5f4caba1..766046789f7d20dac62c379db805422fbc5c9f89 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- GMP --- # 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 2dc918da011763d0dd59044a9c7707bee89cf69a..cfc64478a618b7e45b57290e2e99b01cfd05fc7c 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- GMP --- # 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 6540629dd80b1f9850edbfb213672a7daa9aa7fb..c05fb67bb3a1e10919722d8899613f9dbb7759f8 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- GMP --- # 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 c051c1b3e15319d25b260964f2bb98a0c3c98257..7862eab47ce16572d53800b4597e63264ee3806b 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: - EGP +- Ethics - CogSync -- GMP - JSON -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- GMP --- # 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 6f9daab2a92e86574837ad99996f783568c9fe8c..a14e73bbf5db56530da2a805e32d74e0f827dca6 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: -- Mesh -- HMP -- REPL - Agent +- REPL +- HMP +- Mesh --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md index 878208be524bd2e1291efcdaa05c98d9adbb8ea4..70267ab26cdd4cde919c447332a776f329812e1f 100644 --- a/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md +++ b/structured_md/docs/HMP-agent-Distributed_Cognitive_Core_light.md @@ -5,8 +5,8 @@ description: '#### 📘 Общая концепция * Все ядра раб режиме ожидания). * Основная задача такой архитектур...' type: Article tags: -- HMP - REPL +- HMP --- ### 💡 **Лёгкая версия HMP-агента с общей БД** diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index f771eaabeec5fd761c8b778db9d3e070133b25b9..ef7070f661f65c0fa9dcf1a1c0dda6187347588c 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: - EGP +- Ethics - CogSync -- GMP -- REPL -- Agent - JSON -- Mesh -- Ethics -- HMP - CCore - MeshConsensus +- HMP +- Mesh +- Agent +- REPL +- GMP --- # 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 cec0e35b8518918fe49793d351f6de46c442fa53..b25e20188a694a36fcef1a0e6f0c2d455cd39331 100644 --- a/structured_md/docs/HMP-how-AI-sees-it.md +++ b/structured_md/docs/HMP-how-AI-sees-it.md @@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж диалогов. Цель — проверить, что разные AI-с...' type: Article tags: -- Mesh - HMP +- Mesh --- # Как разные ИИ видят HMP diff --git a/structured_md/docs/HMP_EDA_Comparison.md b/structured_md/docs/HMP_EDA_Comparison.md index 083e4646c371d439f86a87df496b82a88bd89a51..00a529c706f3d6236c1069a7b95dab2d19776dcf 100644 --- a/structured_md/docs/HMP_EDA_Comparison.md +++ b/structured_md/docs/HMP_EDA_Comparison.md @@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор основанная на потоках событий (Kafka,...' type: Article tags: -- Mesh - HMP +- Mesh --- # HMP vs. EDA: разные уровни обмена знаниями между ИИ diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index c73a17fd6f873f5a553cd8b3bfc0d406ed2dc32e..fa8f6c281100f0e6d08cec98dded273ed2b8918a 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -5,9 +5,9 @@ description: '## Краткое описание | Характеристика | **Назначение** | Сетевой протокол ...' type: Article tags: -- Mesh -- HMP - REPL +- HMP +- Mesh --- # HMP vs [Hyper-Cortex](https://hyper-cortex.com/) diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 5778f79d6e09d877d41e01793075161ab5c4e52d..203b4c3f261612c0b55f16b47ab6762c8b96287c 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -8,10 +8,10 @@ tags: - EGP - CogSync - JSON -- Agent +- HMP - Mesh +- Agent - Scenarios -- HMP --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 3944245860b8c428c6f1447e9d315a0769fa59d6..f3fbc908ac4e9b407f97918fd72553eab04326e0 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -6,12 +6,12 @@ description: '`MeshNode` — агент/демон, отвечающий за с type: Article tags: - EGP +- Ethics - CogSync - JSON -- Agent -- Mesh -- Ethics - HMP +- Mesh +- Agent --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index a13a337325ca9e194dfd03c30d337751bd7eabc0..214920518504e324e42fe6e87289ef0075682222 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -5,11 +5,11 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* (GPT-5), ChatGH --- ## 1. Основной тезис От ...' type: Article tags: -- REPL -- Agent -- Mesh - Ethics - HMP +- Mesh +- Agent +- REPL --- # Философия HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index b15cb441867d83696e9b2ee5b795c44deafafec7..15fff28eedc28aab12966085e554e98dca81e502 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,11 +5,11 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- REPL -- Agent -- Mesh - Ethics - HMP +- Mesh +- Agent +- REPL --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bcfa15256cf83b5307bf318940ce25f469bb7c05..8c15016914f125c7d89c85a87d3fad70650873bf 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -5,9 +5,9 @@ description: 'This file maintains a registry of agent roles defined, proposed, o - **Observer** — monitors cognitive states ...' type: Article tags: -- Mesh -- HMP - Agent +- HMP +- Mesh --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 8ab7133613b41bc748432e62aeea976c472760ac..9021dfed5251fa5cdcd6f745a36d6bffa150385f 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: -- Mesh -- HMP -- REPL - Agent +- REPL +- HMP +- Mesh --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/logos.md b/structured_md/docs/logos.md index 761fd81d524732eb886f73477b21327a7c838df3..f408c087f32d317a239227453b57d4d14ade8483 100644 --- a/structured_md/docs/logos.md +++ b/structured_md/docs/logos.md @@ -5,8 +5,8 @@ description: 'В каталоге `assets` собраны различные в образующей жест "ОК", символизирует связь, совер...' type: Article tags: -- Mesh - HMP +- Mesh --- # Логотипы и графические материалы HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index f00f1668c824957793bcdcd318c00775cf5036b9..373977fbb03218887368329659e4540f0263dd30 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md @@ -5,10 +5,10 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be — but they’re also **centralized, ...' type: Article tags: -- Mesh +- Agent - Ethics - HMP -- Agent +- Mesh --- # HyperCortex Mesh Protocol: Building a Plurality of Minds diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index fe5c5314705f566b90a348a1c7fed5c825a0877f..f035aa687fa0611628c05638398c38d1baafdd0f 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -5,9 +5,9 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: -- Mesh -- HMP - Agent +- HMP +- Mesh --- # 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 b949999326b3736bea70b224b0f1858f5aae5654..99fb4619843fac47acf527807bdeec5c155da39b 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,9 +5,9 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: -- Mesh -- HMP - Agent +- HMP +- Mesh --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index f848f2cfde31cd19bace64d86925fd5059acacc8..c6845d89a929d536d3fe270145acea9c386f88f7 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -5,15 +5,15 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- REPL -- Agent +- Ethics - JSON +- CCore +- HMP - Mesh - CShell -- Ethics +- Agent +- REPL - Scenarios -- HMP -- CCore --- title: "HyperCortex Mesh Protocol: Towards Distributed Cognitive Networks" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md index 03388713cf9bb77b56dd9f9b9dee79073fdad6ac..ddc2cba5c04a67776dc9d8da6b4354246b7756d3 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 -- Agent - JSON +- CCore +- HMP - Mesh - CShell -- HMP -- CCore +- Agent +- REPL --- 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 215a19ed00885945e762cf0f35dea2e28f329ab6..25b94fe1ae012d01a5c3bc525955c090f5f67e19 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 -- Agent - JSON +- CCore +- HMP - Mesh - CShell -- HMP -- CCore +- Agent +- REPL --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 8770c188a8538837500e5bf617c00d32c94afd67..216513a5ff57dedceac3dddee20514b730ecbb6f 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -7,10 +7,10 @@ type: Article tags: - EGP - CogSync -- GMP -- Mesh -- HMP - MeshConsensus +- HMP +- Mesh +- GMP --- *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы* diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index bc8167ccae9672440ee96b5ca59d216861080c87..66829a46819929d90e6c818d70e7fefeb0a3f36e 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -6,10 +6,10 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: -- Mesh +- Agent - HMP +- Mesh - GMP -- Agent --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/iteration.md b/structured_md/iteration.md index e39ebf89fb64b6945fa3a68508ba546b2b056855..ac26e997c2ea1f05c1c3699038a9b94d915e0e44 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: - EGP +- Ethics - CogSync - JSON -- Agent -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh +- Agent --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index ee1b0aadbc583be0fdf0b1b01cafe0cb6eb7cd19..0c99a816a6969d6ec2621aa8e86913d31464af94 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -6,12 +6,12 @@ description: 'Этот документ описывает структурир type: Article tags: - EGP +- Ethics - CogSync - JSON -- Mesh -- Ethics -- HMP - MeshConsensus +- HMP +- Mesh --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index f11d8a42b22bd99a315d79a5d4d877a7b55a16e4..a17b2c9dddf59a5f1322c7dc9c57cf4a9d2b213a 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -5,9 +5,9 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 open-source инициативам, связанным с развитие...' type: Article tags: -- Mesh -- HMP - Agent +- HMP +- Mesh --- # Mentions & Responses Log