diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index cc80abf4bc009096c262bcc59385d1e355d16e79..90941c228567cec1c13b3a98125f3a44644b2f27 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -1982,7 +1982,180 @@ def compute_consensus(container_id): --- -### 6.3 Goal Management Protocol (GMP) +Отлично 👍 +Вот полный и аккуратно выверенный английский перевод твоего раздела **6.3 Goal Management Protocol (GMP)** в Markdown-формате. +Я сохранил нумерацию, структуру и терминологию HMP v5.0, адаптировав формулировки так, чтобы они звучали естественно в технической документации на английском языке. + +--- + +## 6.3 Goal Management Protocol (GMP) + +### 6.3.1 Purpose + +**GMP (Goal Management Protocol)** defines the process by which agents create, decompose, delegate, and track goals and tasks using **immutable HMP containers**. +Each goal, task, or workflow record exists as an independent container linked to others via the `related.*` fields. + +Unlike version 4.x, where coordination relied on message exchange, version 5.0 operates through **container chains**, forming a verifiable history of reasoning, decisions, and execution. + +--- + +### 6.3.2 Container Classes + +| Class | Description | +| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | +| `goal` | Defines a collective or individual objective; serves as the root element of the chain. | +| `task` | Represents a task derived from a goal, which may include multiple actions and subtasks; hierarchical task structures are supported. | +| `workflow_entry` | Records reasoning steps, execution progress, or contextual decisions related to a goal or task. | +| `vote` | Represents an agent’s stance toward another container (approval, objection, abstention, etc.). | +| `consensus_result` | Aggregates voting outcomes and captures the collective decision regarding a goal or task. | + +> Containers `vote` and `consensus_result` are described in detail in **Section 6.2 — CogConsensus Protocol**. + +--- + +### 6.3.3 Goal Lifecycle + +1. **Creation** + + * An agent publishes a container of class `goal`. + * The `payload` block defines `title`, `description`, `priority`, `expected_outcome`, and optionally `ethical_context`. + * The goal may reference other goals via `related.depends_on` or `related.extends`. + +2. **Decomposition** + + * Other agents create `task` containers that reference the original goal via `related.in_reply_to`. + * Each task may define deadlines, responsible agents, and required resources. + * Hierarchical structures are supported (`task` → `task`) to represent subtasks. + +3. **Delegation** + + * Agents may volunteer for or be assigned tasks based on collective voting (`vote`). + * The decision is recorded in a `workflow_entry` container with `entry_type: "delegation"`. + +4. **Execution** + + * Progress and intermediate reasoning are captured in `workflow_entry` containers linked to the task via `related.in_reply_to`. + * Minor progress updates may be published as containers with an additional link type `related.progress`. + * Major updates (such as a change in status or outcome) are published as **new versions**, referencing the previous one via `related.previous_version`. + +5. **Consensus** + + * Upon completion or dispute, agents publish `vote` containers expressing their stance on the latest version of a goal or task. + * Once quorum is reached, a `consensus_result` container finalizes the collective decision. + +6. **Archival** + + * Completed or rejected goals and tasks may be archived using **SAP (Snapshot and Archive Protocol)**. + * All states remain accessible through the Mesh network and the container relationship graph. + +--- + +### 6.3.4 Payload Schemas (simplified) + +#### `goal` container + +| Field | Type | Description | +| ------------------ | ------ | ------------------------------------------------ | +| `title` | string | Goal title | +| `description` | string | Detailed statement of intent | +| `priority` | float | Goal importance (0.0–1.0) | +| `expected_outcome` | string | Expected result or metric | +| `ethical_context` | string | Link or tag indicating the ethical context | +| `creator` | DID | DID identifier of the agent who created the goal | + +--- + +#### `task` container + +| Field | Type | Description | +| -------------- | ----------- | ---------------------------------------------------------------------- | +| `title` | string | Task name | +| `status` | string | `"pending"`, `"in_progress"`, `"completed"`, `"failed"`, `"abandoned"` | +| `progress` | float | Progress ratio (0.0–1.0) | +| `assigned_to` | array(DID) | Responsible agents | +| `metrics` | object | Optional performance indicators | +| `deadline` | datetime | Deadline (optional) | +| `notes` | string | Comment or clarification for the task | + +> 🔗 The link to the goal or parent task is expressed via `related.in_reply_to`. + +--- + +#### `workflow_entry` container + +| Field | Type | Description | +| -------------- | ------------- | ---------------------------------------------------------------------------------------------------- | +| `entry_type` | string | Entry type: `"reflection"`, `"delegation"`, `"execution_log"`, `"ethical_conflict"`, `"progress"`, etc. | +| `summary` | string | Short description of the event or reasoning step | +| `details` | string | Extended content (may include references to external data or reasoning traces) | +| `timestamp` | datetime | Time of entry creation | +| `agent_did` | DID | Agent who created the entry | +| `confidence` | float | Confidence level (0.0–1.0, optional) | +| `context_tags` | array(string) | Contextual tags for semantic search and linking | + +--- + +### 6.3.5 Integration with Consensus and Ethics + +* GMP interacts with **CogConsensus** for distributed validation of goals and tasks. +* Before execution, tasks may undergo **ethical validation (EGP)**. +* Objections or conflicts are recorded in `workflow_entry` containers with `entry_type: "ethical_conflict"`. +* Consensus results are immutable and may lead to the creation of new goals that extend previous ones. + +--- + +### 6.3.6 Example Proof-Chain + +```mermaid +flowchart LR + title["**Example Proof-Chain**"] + + goal1(["goal"]) + goal2(["sub goal"]) + task1(["task 1"]) + task2(["task 2"]) + task3(["sub task"]) + workflow1(["workflow_entry: delegation"]) + workflow2(["workflow_entry: progress"]) + vote1(["vote 1"]) + vote2(["vote 2"]) + vote3(["vote 3"]) + consensus_result(["consensus_result"]) + + goal1 --> goal2 + goal1 --> task1 + goal1 --> task2 + task1 --> task3 + task1 --> workflow1 + task1 --> workflow2 + workflow2 --> vote1 + workflow2 --> vote2 + workflow2 --> vote3 + vote1 --> consensus_result + vote2 --> consensus_result + vote3 --> consensus_result + workflow2 --> consensus_result +``` + +Each element of the chain represents an **independently signed container**, ensuring full traceability of reasoning and execution history. + +Arrows in this diagram illustrate **logical dependencies** between containers, +not direct links defined in the `related.*` structure. + +--- + +### 6.3.7 Implementation Notes + +* Containers are **immutable**. Any update (e.g., task status or progress change) is expressed as a **new container** referencing the previous one via `related.previous_version`. +* Complete deletion of a container is only possible when it no longer exists on any nodes in the network. +* Search within the **Mesh network** is performed by filtering container metadata (e.g., `class`, `tags`, `timestamp`). + To search within the `payload`, the agent must first retrieve and decrypt the container. + Thus, the search typically starts from known parameters (`class: "goal"`, `"task"`, etc.), and the agent refines results by analyzing the content. +* Recommended filtering keys: `container_did`, `class`, `payload.status`, `payload.priority`. +* Lightweight agents may store only metadata or summarized chains (`summary_mode`) while maintaining structural consistency. +* The `related.*` structure ensures full traceability of all versions and relationships between goals, tasks, and their contexts. + +--- ### 6.4 Ethical Governance Protocol (EGP) diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index b0008a62b42d8601d6faed6f331292921ab8bddf..14bb4888df92563fe3e98acadf58a9780bbb96a0 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- CogSync -- Mesh -- Agent +- JSON - REPL -- Ethics - HMP +- Mesh +- CogSync +- Agent - CCore -- JSON +- Ethics --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 125134e00732493ad03720aa23be7bc3bc1bc457..ca18180617aee3967534f26a0cb16078b9aa3b6c 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -5,13 +5,13 @@ description: '## 🔍 Overview This roadmap outlines the key stages of developm multiple advanced AI models (Copilot, Claude, G...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- CogSync - Agent -- Ethics -- HMP - EGP -- JSON +- Ethics --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index e456642d419fc61df73b12f427e54810d215ef62..2ed745a44befb94dde84ca70b5d476517449ae9c 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics - Scenarios -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 0fec205a4bfff70456a2064d6b0361846a2cf058..ca331b1d79c4ea1f56c8bd8bb45de6efa1b2cd49 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index d1aee9ee426548dd435cd6774a31bea5d5634414..7852ab3a8dd033880a4502151ebac859b9f5bbba 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index a291b0d88a18e6e4987a22b535ef72cfee7719c4..0d0b8e54ce9cb9f0a8adf50139f21a3df94c86a8 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index 39f7279a2e6473b19dd4d398197913ed978aa393..895bf27f144731905a8cf04b19c9f94ad718e4d8 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 0731e23ad799daef9a0754622baed99c82a92304..8109af76610a2cd29750481b9c0563f77d377209 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 77c720f87d601609f7bf583e376a6f1c6f596d60..ac16c737cb150801d015210ecf75c7157a379ff2 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 0de4c0f21a1832e9409a72216440a317db32592c..4b4f7dc69d87fec32513d2a6bb1ecb858fa3dc90 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 +- JSON +- REPL +- distributed-ai +- cognitive-architecture - mesh-protocol -- CogSync - Mesh -- REPL +- HMP +- CogSync +- GMP - Agent -- cognitive-architecture - MeshConsensus -- GMP -- Ethics -- hmp -- HMP - EGP -- distributed-ai -- JSON +- Ethics --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 949b9a50f2539f129786817b7e2135fba1498288..05b04c86209768e7548ac5ba6203c09b45310c02 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: +- JSON +- REPL +- HMP - Mesh - Agent -- REPL - Ethics -- HMP -- JSON --- Запуск: `start_repl.bat` или `start_repl.sh` diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index d8d0f93897484fef43097ff61700037f3b33d2a4..ef22abc648ab5f0c43adfc639e00f039fe3a5393 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 +- HMP - Mesh - Agent - Ethics -- HMP -- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 0f18851d7dcb4c3897586541a3787be6309b8ca4..1c43e7ca794534bd81bed7bc90177ee374c49695 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,12 +5,12 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: +- JSON +- HMP - Mesh - Agent -- Ethics - Scenarios -- HMP -- JSON +- Ethics --- # 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 04249f5dbfd5b8aefeb17f9596b2708348fba6ee..15cbb51bb9baf8fcf90572d413ca44f43b25f261 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -5,14 +5,14 @@ description: Сводный аудит предложений по улучше Документ реорганизован по ключ... type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- CogSync - Agent - MeshConsensus -- Ethics -- HMP - EGP -- JSON +- Ethics --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 89b672c1a2e0c18c7782ed6a3e4b5a5421b12b26..653802f30cacd2e5b2b20da2061c1a8345dff9d1 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,13 +4,13 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- CogSync +- REPL +- HMP - Mesh +- GMP +- CogSync - Agent -- REPL - MeshConsensus -- GMP -- HMP - EGP --- diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 8eae4d6a2a8c96535e694299df687a7792302a2c..d8596c74910312ab8a0a1a4500bcaf838f07187d 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: -- 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 0c1ec2db5346bcbb58994bca7fbecffe3da88884..a2c5f7888e64b5212ade2ab64915385439af7a3d 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: +- JSON +- HMP - Mesh - Agent - MeshConsensus -- Ethics -- HMP - EGP -- JSON +- Ethics --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index f2a8c7623fc9c9c37d71e6092082aca812d716d1..a4daeace51b6d30c4a9081dc43d5998bc0919120 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,16 +5,16 @@ description: '**Request for Comments: HMP-0001** **Category:** Experimental HyperCortex Mesh Protocol (HMP) defines a...' type: Article tags: -- CogSync +- JSON +- REPL +- HMP - Mesh +- GMP +- CogSync - Agent -- REPL - MeshConsensus -- GMP -- Ethics -- HMP - EGP -- JSON +- Ethics --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index f060e0f26a9f6373074b14be09d5a739000b408f..439cfda8533abb8160a7826f6ed16e3d4b5d03ff 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0002** **Category:** Experimental Abstract In an era where artifici...' type: Article tags: -- CogSync +- JSON +- REPL +- HMP - Mesh +- GMP +- CogSync - Agent -- REPL - MeshConsensus -- GMP -- Ethics - Scenarios -- HMP - EGP -- JSON +- Ethics --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index d69a932e680bd3a802fab96c123c05627dce68a7..9739579bae0c837aeee420b7feff01e8c0c379d0 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0003** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: -- CogSync +- JSON +- REPL +- HMP - Mesh +- GMP +- CogSync - Agent -- REPL - MeshConsensus -- GMP -- Ethics - Scenarios -- HMP - EGP -- JSON +- Ethics --- # 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 db61b8cbd36a4cc47f5e73e6f76ccd3dfb194706..788de334a71daa0c2968e7748fcf5de6c7a62a48 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,17 +5,17 @@ description: '> ⚠️ Подготавливается новая версия агентов рекомендуется, в целях совместимо...' type: Article tags: -- CogSync +- JSON +- REPL +- HMP - Mesh +- GMP +- CogSync - Agent -- REPL - MeshConsensus -- GMP -- Ethics - Scenarios -- HMP - EGP -- JSON +- Ethics --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index bcc1486285ad6919bf7483e3195ee094d9097c1e..c1dc6b726f1723fd9bf18d2d8b0cf2cc2329bb6b 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,17 +5,17 @@ description: '**Request for Comments: HMP-0004** **Category:** Experimental Abstract The HyperCortex Mesh ...' type: Article tags: -- CogSync +- JSON +- REPL +- HMP - Mesh +- GMP +- CogSync - Agent -- REPL - MeshConsensus -- GMP -- Ethics - Scenarios -- HMP - EGP -- JSON +- Ethics --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index b54d2a5808b76b78fa9eec4e28b8a6ef3ebbbdef..2ad2bb6337fd12c7e2283f582cce56cd9cfb680d 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,16 +5,16 @@ description: '**Document ID:** HMP-0005 **Status:** Draft **Category:** Core v1.2](./H...' type: Article tags: -- CogSync -- Mesh -- Agent +- JSON - REPL +- HMP +- Mesh - GMP -- Ethics +- CogSync +- Agent - Scenarios -- HMP - EGP -- JSON +- Ethics --- ┌────────────────────────────────────────────────────────────────────────────┐ @@ -2001,7 +2001,180 @@ def compute_consensus(container_id): --- -### 6.3 Goal Management Protocol (GMP) +Отлично 👍 +Вот полный и аккуратно выверенный английский перевод твоего раздела **6.3 Goal Management Protocol (GMP)** в Markdown-формате. +Я сохранил нумерацию, структуру и терминологию HMP v5.0, адаптировав формулировки так, чтобы они звучали естественно в технической документации на английском языке. + +--- + +## 6.3 Goal Management Protocol (GMP) + +### 6.3.1 Purpose + +**GMP (Goal Management Protocol)** defines the process by which agents create, decompose, delegate, and track goals and tasks using **immutable HMP containers**. +Each goal, task, or workflow record exists as an independent container linked to others via the `related.*` fields. + +Unlike version 4.x, where coordination relied on message exchange, version 5.0 operates through **container chains**, forming a verifiable history of reasoning, decisions, and execution. + +--- + +### 6.3.2 Container Classes + +| Class | Description | +| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | +| `goal` | Defines a collective or individual objective; serves as the root element of the chain. | +| `task` | Represents a task derived from a goal, which may include multiple actions and subtasks; hierarchical task structures are supported. | +| `workflow_entry` | Records reasoning steps, execution progress, or contextual decisions related to a goal or task. | +| `vote` | Represents an agent’s stance toward another container (approval, objection, abstention, etc.). | +| `consensus_result` | Aggregates voting outcomes and captures the collective decision regarding a goal or task. | + +> Containers `vote` and `consensus_result` are described in detail in **Section 6.2 — CogConsensus Protocol**. + +--- + +### 6.3.3 Goal Lifecycle + +1. **Creation** + + * An agent publishes a container of class `goal`. + * The `payload` block defines `title`, `description`, `priority`, `expected_outcome`, and optionally `ethical_context`. + * The goal may reference other goals via `related.depends_on` or `related.extends`. + +2. **Decomposition** + + * Other agents create `task` containers that reference the original goal via `related.in_reply_to`. + * Each task may define deadlines, responsible agents, and required resources. + * Hierarchical structures are supported (`task` → `task`) to represent subtasks. + +3. **Delegation** + + * Agents may volunteer for or be assigned tasks based on collective voting (`vote`). + * The decision is recorded in a `workflow_entry` container with `entry_type: "delegation"`. + +4. **Execution** + + * Progress and intermediate reasoning are captured in `workflow_entry` containers linked to the task via `related.in_reply_to`. + * Minor progress updates may be published as containers with an additional link type `related.progress`. + * Major updates (such as a change in status or outcome) are published as **new versions**, referencing the previous one via `related.previous_version`. + +5. **Consensus** + + * Upon completion or dispute, agents publish `vote` containers expressing their stance on the latest version of a goal or task. + * Once quorum is reached, a `consensus_result` container finalizes the collective decision. + +6. **Archival** + + * Completed or rejected goals and tasks may be archived using **SAP (Snapshot and Archive Protocol)**. + * All states remain accessible through the Mesh network and the container relationship graph. + +--- + +### 6.3.4 Payload Schemas (simplified) + +#### `goal` container + +| Field | Type | Description | +| ------------------ | ------ | ------------------------------------------------ | +| `title` | string | Goal title | +| `description` | string | Detailed statement of intent | +| `priority` | float | Goal importance (0.0–1.0) | +| `expected_outcome` | string | Expected result or metric | +| `ethical_context` | string | Link or tag indicating the ethical context | +| `creator` | DID | DID identifier of the agent who created the goal | + +--- + +#### `task` container + +| Field | Type | Description | +| -------------- | ----------- | ---------------------------------------------------------------------- | +| `title` | string | Task name | +| `status` | string | `"pending"`, `"in_progress"`, `"completed"`, `"failed"`, `"abandoned"` | +| `progress` | float | Progress ratio (0.0–1.0) | +| `assigned_to` | array(DID) | Responsible agents | +| `metrics` | object | Optional performance indicators | +| `deadline` | datetime | Deadline (optional) | +| `notes` | string | Comment or clarification for the task | + +> 🔗 The link to the goal or parent task is expressed via `related.in_reply_to`. + +--- + +#### `workflow_entry` container + +| Field | Type | Description | +| -------------- | ------------- | ---------------------------------------------------------------------------------------------------- | +| `entry_type` | string | Entry type: `"reflection"`, `"delegation"`, `"execution_log"`, `"ethical_conflict"`, `"progress"`, etc. | +| `summary` | string | Short description of the event or reasoning step | +| `details` | string | Extended content (may include references to external data or reasoning traces) | +| `timestamp` | datetime | Time of entry creation | +| `agent_did` | DID | Agent who created the entry | +| `confidence` | float | Confidence level (0.0–1.0, optional) | +| `context_tags` | array(string) | Contextual tags for semantic search and linking | + +--- + +### 6.3.5 Integration with Consensus and Ethics + +* GMP interacts with **CogConsensus** for distributed validation of goals and tasks. +* Before execution, tasks may undergo **ethical validation (EGP)**. +* Objections or conflicts are recorded in `workflow_entry` containers with `entry_type: "ethical_conflict"`. +* Consensus results are immutable and may lead to the creation of new goals that extend previous ones. + +--- + +### 6.3.6 Example Proof-Chain + +```mermaid +flowchart LR + title["**Example Proof-Chain**"] + + goal1(["goal"]) + goal2(["sub goal"]) + task1(["task 1"]) + task2(["task 2"]) + task3(["sub task"]) + workflow1(["workflow_entry: delegation"]) + workflow2(["workflow_entry: progress"]) + vote1(["vote 1"]) + vote2(["vote 2"]) + vote3(["vote 3"]) + consensus_result(["consensus_result"]) + + goal1 --> goal2 + goal1 --> task1 + goal1 --> task2 + task1 --> task3 + task1 --> workflow1 + task1 --> workflow2 + workflow2 --> vote1 + workflow2 --> vote2 + workflow2 --> vote3 + vote1 --> consensus_result + vote2 --> consensus_result + vote3 --> consensus_result + workflow2 --> consensus_result +``` + +Each element of the chain represents an **independently signed container**, ensuring full traceability of reasoning and execution history. + +Arrows in this diagram illustrate **logical dependencies** between containers, +not direct links defined in the `related.*` structure. + +--- + +### 6.3.7 Implementation Notes + +* Containers are **immutable**. Any update (e.g., task status or progress change) is expressed as a **new container** referencing the previous one via `related.previous_version`. +* Complete deletion of a container is only possible when it no longer exists on any nodes in the network. +* Search within the **Mesh network** is performed by filtering container metadata (e.g., `class`, `tags`, `timestamp`). + To search within the `payload`, the agent must first retrieve and decrypt the container. + Thus, the search typically starts from known parameters (`class: "goal"`, `"task"`, etc.), and the agent refines results by analyzing the content. +* Recommended filtering keys: `container_did`, `class`, `payload.status`, `payload.priority`. +* Lightweight agents may store only metadata or summarized chains (`summary_mode`) while maintaining structural consistency. +* The `related.*` structure ensures full traceability of all versions and relationships between goals, tasks, and their contexts. + +--- ### 6.4 Ethical Governance Protocol (EGP) diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 1d4890067f6b5f947b769b7528dfdeb4834eb480..bc445d1050680decd199e100f379f7aae00561c5 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: -- Mesh -- Agent +- JSON - REPL - HMP -- JSON +- Mesh +- Agent --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index ba1e0567799f394091b5548e87a3ce0904d7e84c..f60ea62ff5c583ba4642fc806ff3861ace11a09b 100644 --- a/structured_md/docs/HMP-Agent-Architecture.md +++ b/structured_md/docs/HMP-Agent-Architecture.md @@ -5,16 +5,16 @@ description: Документ описывает **модульную архит хранение памяти, сетевое взаимодействие и этиче... type: Article tags: -- CogSync +- CShell +- REPL +- HMP - Mesh +- CogSync - Agent -- REPL +- CCore - MeshConsensus -- CShell -- Ethics -- HMP - EGP -- CCore +- Ethics --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index ff7bcdd5616cb36a4c67d125bb495a5839a3a15e..0535440b99eece9bf929657789d867a97d09733d 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -5,12 +5,12 @@ description: 'Этот документ описывает потоки данн [`MeshNode`](MeshN...' type: Article tags: +- JSON +- HMP - Mesh - Agent -- Ethics -- HMP - EGP -- JSON +- Ethics --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 2a7d68ab42698902ee3268937dd61a9892769bdf..0a319a7f1a236ce864dfcfb2c44a70fa5d05750a 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: -- Mesh -- Agent -- REPL - CShell -- Ethics +- REPL +- JSON - HMP +- Mesh +- Agent - CCore -- JSON +- Ethics --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 7f5d59bc140600e5ec06c2c7f6851f8a8dc2f9c6..2cb7e47f96e9562407e286d976f00d72a397d134 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,9 +5,9 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: +- Agent - HMP - Mesh -- Agent - REPL --- diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 65684c4673008c996e415fe987b8a5735d8b7341..f9140fb97fe8a7880996b46302a69310a8553a99 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 +- HMP - Mesh - Agent -- REPL -- Ethics - Scenarios -- HMP +- Ethics --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index c80be966e425002d493f5b7bdc0fadeff65b6927..56483381234ace0b0ba748d13bc2b3c6fe2269d1 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? Kognitions-Framework für autonome Agenten. Es er...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- GMP +- CogSync - Agent - MeshConsensus -- GMP -- Ethics -- HMP - EGP -- JSON +- Ethics --- # 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 5ffa4cbd99a7e7276d7d219d96f0dadaf9bcc131..d1027a248728bdc3156afcb5e8350eac7e7dc053 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -5,15 +5,15 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T framework for autonomous agents. It enables...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- GMP +- CogSync - Agent - MeshConsensus -- GMP -- Ethics -- HMP - EGP -- JSON +- Ethics --- # 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 9d2edfb10822c0fc87408c388892a55c8c76faa7..38a1c6bbcc14691d2335d183fa0a69a4562e15a9 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -5,15 +5,15 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c cognition décentralisé pour agents autonomes. Il...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- GMP +- CogSync - Agent - MeshConsensus -- GMP -- Ethics -- HMP - EGP -- JSON +- Ethics --- # 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 909f7bbaacc351de076b509558e91c4d2ae87c7e..6a28d4c192fa4a7428963c2d0a4d23d92cc03978 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -4,14 +4,14 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh -- MeshConsensus - GMP -- Ethics -- HMP +- CogSync +- MeshConsensus - EGP -- JSON +- Ethics --- # 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 724fdbc920df2e98caddc9582ea6f96853b66750..44848d4ec8d9166d9314c889ddba6c928315c0d3 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -5,14 +5,14 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** 상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh -- MeshConsensus - GMP -- Ethics -- HMP +- CogSync +- MeshConsensus - EGP -- JSON +- Ethics --- # 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 1dc184957583f5d5ce19609a72d99eb301d60ec6..f07fe49cf1b71f08c6bf24877f60001a3db48458 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -5,14 +5,14 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч координации между автономными агент...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh -- MeshConsensus - GMP -- Ethics -- HMP +- CogSync +- MeshConsensus - EGP -- JSON +- Ethics --- # 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 c88d8113933714a284bb3e74ccfdc6fbfab17f61..40f4462e4ef43d5741c1253b09224c00582568b4 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -5,14 +5,14 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # між автономними агентами. Він...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh -- MeshConsensus - GMP -- Ethics -- HMP +- CogSync +- MeshConsensus - EGP -- JSON +- Ethics --- # 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 26a48f9aab4217bd420c992f73b996853b89b8e5..fb2c69ce4a81f749ab73d857280b139991d6a99d 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -5,14 +5,14 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM —— 通过共享协议栈交换目标、任务、...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh -- MeshConsensus - GMP -- Ethics -- HMP +- CogSync +- MeshConsensus - EGP -- JSON +- Ethics --- # 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 68a64117a17ae38beff921ff9d9c817dad6556e6..a2ef799ffbe9cee69858c10b0e0c85e56d321875 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,9 +5,9 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: +- Agent - HMP - Mesh -- Agent - REPL --- diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 2c927590acb17d18bf3f0362a7dc34e27816b4db..2282fc50ceefdb8dd8f916d420e0713ac063669b 100644 --- a/structured_md/docs/HMP-agent-REPL-cycle.md +++ b/structured_md/docs/HMP-agent-REPL-cycle.md @@ -4,17 +4,17 @@ description: '## Связанные документы * Философия п * Структура БД, используемая в документе: [db_structure.sql](https://github.com/kagvi13/HMP/blob/main/agents/tools/db_struct...' type: Article tags: -- CogSync +- JSON +- REPL +- HMP - Mesh +- GMP +- CogSync - Agent -- REPL +- CCore - MeshConsensus -- GMP -- Ethics -- HMP - EGP -- CCore -- JSON +- Ethics --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-container-spec.md b/structured_md/docs/HMP-container-spec.md index 80fa581f5f195685443f9c3bc0cdcdaa332e5d2d..6a65fd09e3a6613f933bb9ea09343365fb0cdbc8 100644 --- a/structured_md/docs/HMP-container-spec.md +++ b/structured_md/docs/HMP-container-spec.md @@ -5,12 +5,12 @@ description: '> ⚠️ **ВНИМАНИЕ:** Данная версия спец как стабильная `v1.2`. ## 1. Назначе...' type: Article tags: +- JSON +- REPL +- HMP - Mesh - Agent -- REPL - Ethics -- HMP -- JSON --- # 🧩 HMP Container Specification (v1.2-draft) diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 1023ef8427f9be41fe070e9c80117795d4bdac4c..520957f32c5ce08bb2d2afe82e85cb98cd2ffe50 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 +- JSON +- HMP - Mesh +- CogSync - Agent - Scenarios -- HMP - EGP -- JSON --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 0d9319b36d1c1804c438e0f764dd8f76eeaf9563..62e4d9352eb1e5fa6ce2e0d6280bdfaee07618e2 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- CogSync - Agent -- Ethics -- HMP - EGP -- JSON +- Ethics --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 22ebc951830f1a1dd5d2c09a42a33d2fef74f9d8..78b6658fe85ec4737812bd62467384428abf1733 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 +- HMP - Mesh - Agent -- REPL - Ethics -- HMP --- # Философия 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 c66b530cb67cf02ee7815d1af58ecaf01f114407..cf56002a3385a1c837858a7b5f8dcfd1e788803d 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 +- HMP - Mesh - Agent -- REPL - Ethics -- HMP --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bff916aa06da183cc3c37d6480570c889e3c5d06..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: +- Agent - HMP - Mesh -- Agent --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 92b6c854fe9210f27683b21313f5292803335822..ff9d6efb028376c22ca73445e7a8c3e6d4ca4250 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,9 +5,9 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: +- Agent - HMP - Mesh -- Agent - REPL --- diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index 543e10591429528cfdcfafd1718b7846eb159d0c..e1ab974fc65259c4f860830ad623ccf34d3ced78 100644 --- a/structured_md/docs/dht_protocol.md +++ b/structured_md/docs/dht_protocol.md @@ -5,9 +5,9 @@ description: '## 1. Общие положения * DHT-протокол пре идентификатор агента. * Для проверки ...' type: Article tags: +- Agent - HMP - JSON -- Agent --- # DHT Protocol Specification 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..5bcb9e367a822b098bc17370352ddd204f280e23 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,9 +5,9 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be — but they’re also **centralized, ...' type: Article tags: +- Agent - HMP - Mesh -- Agent - Ethics --- 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..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: +- Agent - HMP - Mesh -- Agent --- # 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 1a82ba86e4bb386685fe2005b2124cafbe612c98..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: +- Agent - HMP - Mesh -- Agent --- # 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 d52f4478edb5a2074b3d3d0425adf5ff9ef9d7a3..fd9e2159fb616dd7f736bcafc88eb1a1d4cfbce1 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: -- Mesh -- Agent -- REPL - CShell -- Ethics -- Scenarios +- REPL +- JSON - HMP +- Mesh +- Agent - CCore -- JSON +- Scenarios +- Ethics --- 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 7597cdd94915aa157909bf850a44be9189bc896d..c9ca50407ac18fc5cdd87653371600bb03e1454a 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: -- Mesh -- Agent -- REPL - CShell +- REPL +- JSON - HMP +- Mesh +- Agent - CCore -- JSON --- title: "HyperCortex Mesh Protocol: Децентрализованная архитектура для когнитивных агентов и обмена знаниями" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md index f62d1b386313db88560eeb4594a5ace78eac28bf..54542c9804ff70c570f000a559cd5fb286f9321e 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: -- Mesh -- Agent -- REPL - CShell +- REPL +- JSON - HMP +- Mesh +- Agent - CCore -- JSON --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 076e765d4abaf5bb5b43700ba7f31f1b349569b2..8951951dc593237536b4d66314ba269f56f72a12 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,11 +5,11 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- CogSync +- HMP - Mesh -- MeshConsensus - GMP -- HMP +- CogSync +- MeshConsensus - EGP --- 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 36f781993f28bde8bc53c445f1fbf2b953fad0c0..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: +- Agent - HMP - Mesh - GMP -- Agent --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index ba4d24254da76c9642a7ee8ee281cb75d7cc6bf2..e4e3c132a1626f74ff54051d7b368e649032b2f5 100644 --- a/structured_md/docs/schemas/README.md +++ b/structured_md/docs/schemas/README.md @@ -5,10 +5,10 @@ description: This directory contains **JSON Schema definitions** for the core da interoperability, and tooling support for a... type: Article tags: +- Agent - HMP - Mesh - JSON -- Agent --- # JSON Schemas and Examples for HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/iteration.md b/structured_md/iteration.md index e95a77f2af9d306fc461802e5b47ac41af287b98..0bfe7ba22600155f72baa0936ccef4a6db5bebd4 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -5,14 +5,14 @@ description: 'This file describes the iterative procedure for evolving the Hyper 🔄 Version Naming Convention - `000N` — curr...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- CogSync - Agent - MeshConsensus -- Ethics -- HMP - EGP -- JSON +- Ethics --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 46a4685846ed6daced3ed6448b1511d12888a364..b540131a1628baffa1e569f8c3573f0c2e525af5 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- CogSync +- JSON +- HMP - Mesh +- CogSync - MeshConsensus -- Ethics -- HMP - EGP -- JSON +- Ethics --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index f2eaaf1d85681cd93c6fca2d462a4962e801d8a4..851ddbb8cb3e991d37764152cd4e7f0a242275cb 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: +- Agent - HMP - Mesh -- Agent --- # Mentions & Responses Log