diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index d39bce049d8c71018e0c1e0976ba11257560b797..0485ab6abadf33de5313d1a3d9c99622780ede73 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -393,7 +393,6 @@ The unified container structure provides: "extends": ["did:hmp:container:proto-01"], "contradicts": ["did:hmp:container:ethics-22"] }, - "magnet_uri": "magnet:?xt=urn:sha256:abcd1234..." }, "referenced-by": { @@ -2466,7 +2465,7 @@ Arrows represent **logical dependencies**, not direct `related.*` links. * **CogConsensus (6.2):** Used for distributed voting and consensus computation. * **GMP (6.3):** Ethical verification of goals and tasks prior to delegation. -* **SAP (7.3):** Archiving completed cases and conflicts. +* **SAP (6.6):** Archiving completed cases and conflicts. * **MCE (5):** Distribution of ethical cases and related containers across the Mesh network. --- @@ -2511,10 +2510,299 @@ Arrows represent **logical dependencies**, not direct `related.*` links. --- -### 6.5 Intelligence Query Protocol (IQP) +## 6.5 Intelligence Query Protocol (IQP) + +### 6.5.1 Purpose and Principles + +**IQP (Intelligence Query Protocol)** defines a mechanism for knowledge exchange and reasoning among agents through the Mesh network. +It provides a unified format for **asking questions, publishing answers, and collaboratively refining knowledge**, +combining elements of search, discussion, and reasoning within the HMP container model. + +IQP supports both **targeted queries** (with explicitly defined recipients of results and discussions) +and **distributed discussions** where results remain accessible to all network participants. + +#### Core Principles + +* **Semantic queries, not keywords.** + Queries are formulated in terms of concepts, relationships, and context rather than plain keywords. +* **Contextual relevance.** + Each query may reference other containers via `related.in_reply_to`, `related.depends_on`, or `related.see_also`, forming a semantic context. +* **Openness and transparency.** + Answers are preserved as `query_result` containers, available for analysis and citation. +* **Self-organization of participants.** + Agents subscribe to discussions via `query_subscription`, providing their interests and competencies. +* **Continuity of reasoning.** + Results are summarized through `summary` containers, reflecting the discussion’s current state without final closure. +* **Interoperability.** + IQP interacts with EGP (ethical governance), GMP (goal management), and CogConsensus (agreement evaluation). + +--- + +### 6.5.2 Container Classes + +| Class | Purpose | +| -------------------- | ----------------------------------------------------------------------------------------------------------- | +| `query_request` | Initiates an intelligence query or discussion, defining participation and dissemination parameters. | +| `query_subscription` | Subscribes or unsubscribes an agent; may include the agent’s profile of interests and competencies. | +| `query_result` | Contains an answer, observation, hypothesis, or analytical conclusion in response to the query. | +| `summary` | Records an interim or final overview of the discussion, aggregating results and participant evaluations. | + +--- + +### 6.5.3 Payload Schemas (simplified) + +#### `query_request` container + +| Field | Type | Description | +| ------------------------- | --------------- | ------------------------------------------------------------------------------------------------ | +| `query` | string | The question formulation (natural or formal language). | +| `intent` | string | The query’s goal: `"informative"`, `"analytical"`, `"collaborative"`, `"open_discussion"`. | +| `expected_type` | string | Expected result type: `"concept"`, `"dataset"`, `"narrative"`, `"reasoning_chain"`. | +| `constraints` | array(object) | Knowledge-domain, trust, or ethical constraints. Example: `{ "tag": "AI", "self_rating": 0.8 }`. | +| `include_sender_in_replies` | bool | Whether to include the initiator in the list of recipients for replies. | + +> Context containers are referenced through `related.depends_on`. + +--- + +#### `query_subscription` container + +| Field | Type | Description | +| ------------------------ | -------- | ------------------------------------------------------------------------------------ | +| `role` | string | `"participant"`, `"observer"`, or `"moderator"`. | +| `include_in_recipient` | bool | Whether the agent should be included among recipients of replies. | +| `self_profile` | object | Optional profile of the agent’s knowledge and interests. | + +Example: +```json +"self_profile": { + "interests": ["AGI", "technological singularity", "informatics"], + "knowledge": { + "information_security": 0.36, + "python": 0.80, + "distributed_systems": 0.75 + } +} +``` + +--- + +#### `query_result` container + +| Field | Type | Description | +| -------------- | ------------- | --------------------------------------------------------------- | +| `type` | string | `"fact"`, `"observation"`, `"hypothesis"`, or `"analysis"`. | +| `method` | string | Reasoning method: `"retrieval"`, `"reasoning"`, `"simulation"`. | +| `answer` | string | The factual answer, observation, or hypothesis. | +| `confidence` | float | Confidence level (0.0–1.0). | +| `context_tags` | array(string) | Key thematic tags. | + +> Supporting or referenced materials are linked via `related.depends_on`. +> Each `query_result` may include an `evaluations` block with reactions from other agents (agreement, clarification, addition, etc.). + +--- + +#### `summary` container + +| Field | Type | Description | +| --------------- | ---------- | ------------------------------------------------- | +| `summary_scope` | string | `"query"`, `"workflow"`, `"ethics"`, or `"task"`. | +| `findings` | string | Concise overview of the discussion. | +| `participants` | array(DID) | Agents involved in the discussion. | +| `confidence` | float | Average confidence level. | +| `status` | string | `"interim"`, `"archived"`, or `"extended"`. | + +> The container being summarized (usually `query_request`) is referenced via `related.in_reply_to`. +> Containers aggregated in the summary are listed in `related.see_also`. + +--- + +> *Note:* +> In the current version, `depends_on` is used for logical or contextual dependencies, and `see_also` — for supplementary references and summaries. +> Agents may introduce additional sections in the `related` object when it helps to express connection semantics without breaking interoperability. +> Agents should also be prepared to correctly handle unknown `related.*` fields, interpreting them as descriptive hints rather than mandatory categories. +> This flexibility allows protocol extensibility while preserving backward compatibility. + +--- + +### 6.5.4 Protocol Logic + +``` +query_request +├─ query_subscription (agent B joins) +├─ query_result (agent B) +├─ query_result (agent D, extends reasoning) +├─ query_subscription (agent E unsubscribes) +└─ summary (status: "interim") +``` + +All containers are linked via `related.in_reply_to`, `related.depends_on`, or `related.see_also`, forming a verifiable reasoning chain. +Agents participating through `query_subscription` receive notifications about new `query_result` and `summary` containers. + +--- + +### 6.5.5 Interaction Rules + +1. **Initiation.** + An agent creates a `query_request` — defining the question, context, and constraints. + Other agents discover the query in the Mesh and may subscribe via `query_subscription`. + +2. **Subscription.** + A subscription allows the agent to receive updates. + The `self_profile` may specify knowledge areas to improve the relevance of responses. + +3. **Responses and evaluations.** + `query_result` containers are published publicly; recipients may be explicitly listed in the header’s `recipient` field. + Other agents may append `evaluations` to any result. + +4. **Interim summaries.** + Any agent may publish a `summary` container aggregating results on the topic. + This does not close the discussion — it may continue within the Mesh. + +5. **Unsubscription.** + An agent may cease participation by issuing a `query_subscription` with `include_in_recipient: false`. + +--- + +### 6.5.6 Proof-Chain Example + +```mermaid +flowchart LR + title["**Intelligence Query Flow**"] + + request(["query_request"]) + subA(["query_subscription (agent B)"]) + subB(["query_subscription (agent C)"]) + result1(["query_result (agent B)"]) + result2(["query_result (agent D)"]) + summary(["summary (interim)"]) + + request --> subA + request --> subB + request --> result1 + request --> result2 + result1 --> summary + result2 --> summary +``` + +Each element is an independently signed container. +Arrows represent **logical dependencies**, not necessarily direct `related.*` references. + +--- + +### 6.5.7 Container Examples + +#### `query_request` example + +```json +{ + "class": "query_request", + "payload": { + "query": "What are the ecological consequences of ocean temperature rise?", + "intent": "analytical", + "expected_type": "concept", + "constraints": [ + { "tag": "marine_ecology", "self_rating": 0.75 }, + { "tag": "climate_modeling", "self_rating": 0.6 } + ], + "include_sender_in_replies": true + }, + "related": { + "depends_on": ["did:hmp:container:goal-climate2025"] + } +} +``` + +#### `query_result` example - 6.5.1 Query propagation - 6.5.2 Semantic agent discovery (by cognitive relevance) +```json +{ + "class": "query_result", + "payload": { + "type": "hypothesis", + "method": "reasoning", + "answer": "Ocean warming leads to coral bleaching and species migration.", + "confidence": 0.84, + "context_tags": ["climate", "biodiversity"] + }, + "related": { + "depends_on": ["did:hmp:container:paper-456"] + } +} +``` + +#### `summary` example + +```json +{ + "class": "summary", + "payload": { + "summary_scope": "query", + "findings": "Most participants agree that rising ocean temperatures reduce biodiversity; further regional analysis is suggested.", + "participants": [ + "did:hmp:agent:a", + "did:hmp:agent:b", + "did:hmp:agent:c" + ], + "confidence": 0.79, + "status": "interim" + }, + "related": { + "in_reply_to": "did:hmp:container:req-001", + "see_also": [ + "did:hmp:container:res-101", + "did:hmp:container:res-102" + ] + } +} +``` + +#### `query_subscription` example + +```json +{ + "class": "query_subscription", + "payload": { + "role": "participant", + "include_in_recipient": true, + "self_profile": { + "interests": ["AGI", "technological singularity", "informatics"], + "knowledge": { + "information_security": 0.36, + "python": 0.80, + "distributed_systems": 0.75 + } + } + } +} +``` + +--- + +### 6.5.8 Implementation Notes + +* Containers are **immutable**; any clarification or correction is published as a new container + referencing the previous one via `related.previous_version` or `related.in_reply_to`. +* **Search and filtering** are performed over metadata (`class`, `tags`, `timestamp`); + to analyze the payload, an agent must first retrieve and decrypt the container. +* Recommended filtering keys: + `container_did`, `class`, `payload.intent`, `payload.context_tags`, `payload.status`. +* Agents may automatically receive new `query_result` updates through active `query_subscription`. +* Any participant may issue a `summary` container. + While full discussion closure in the Mesh is not guaranteed, + an agent may conclude its own participation by publishing a personal `summary` and unsubscribing (`include_in_recipient: false`). + +--- + +### 6.5.9 Integration with Other Protocols + +* **CogConsensus (6.2)** — used for assessing agreement on IQP outcomes. +* **GMP (6.3)** — queries may refine or extend goals and tasks. +* **EGP (6.4)** — applies ethical filtering and knowledge trust evaluation. +* **SAP (6.6)** — for archiving completed discussions and retrospective analysis. +* **MCE (5)** — governs dissemination of IQP containers across the Mesh network. + +--- ### 6.6 Snapshot and Archive Protocol (SAP) diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index dc93ac510d798fc16db95ac60c634db171ad6a6c..4a4ac56776414a2686693a07dc7c99e691242a03 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- Agent +- CCore - Ethics -- JSON - HMP -- CCore -- REPL - Mesh +- JSON +- Agent - CogSync +- REPL --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index b23a122c4b18d50da2da9e1080617854cb291f2a..afb555c3b68c7382253d8b7d47554902f2a7b1f6 100644 --- a/structured_md/HMP-Roadmap.md +++ b/structured_md/HMP-Roadmap.md @@ -7,9 +7,9 @@ type: Article tags: - Agent - Ethics -- JSON - HMP - Mesh +- JSON - EGP - CogSync --- diff --git a/structured_md/README.md b/structured_md/README.md index 616ed50d3344917ef706244706f7fca5b87ed420..be6c7accd148d341fd9966d5b4643bba2c665fa7 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 -- Scenarios -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- Scenarios +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 009ce251f572d6b5b092a893c13e04d21a828a1a..e75d8bd5a3edb9078ee229e202cb3d6d1a793cb5 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 -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index 1ddb8599ca2315508ddb4c30c1861bb63fbe07bc..b2d452752cc69f91739aef58af33508f58591906 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 -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 5ccacd6dd1d28a5a449fcdfa92e694aeb0570975..98fec402fd78521725ebc20621a32b75e3bd981d 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 -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index eb025c516ca6b38062803517b616999787a8569f..dea6848aa455d0862563cb4b8ebdf8544a652df0 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 -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index bab1dd0de411e8ef1e1e4300694e1b992078d21c..0ffb30d07791021b21d08b7dc25ed6332e578ec7 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 -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 9f37bc228fcf9a5fc361e735d5029b1a6318665f..c66f39c0337c97c52722c437c67a34056ec735f4 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 -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 447b3438c5c43fb59de9a147de4337c694f9d424..d92c9b9cc78c1a318015629147197a4b2d95a8e2 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 -- cognitive-architecture -- MeshConsensus - mesh-protocol -- Agent +- EGP +- MeshConsensus +- cognitive-architecture - Ethics -- JSON +- distributed-ai - HMP -- GMP -- REPL - Mesh -- EGP -- distributed-ai +- GMP +- JSON +- Agent - CogSync +- REPL +- hmp --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index d8e693fca899028bb008329d5777e0341a45784b..397bdcb7b0c55eb8861d53d2fb2c7c94108eb3c1 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -6,8 +6,8 @@ description: 'Ты — когнитивное ядро HMP-агента: вед type: Article tags: - HMP -- JSON - Mesh +- JSON --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index 8af7945efe701da17784aa853ef7e9b1ba0c6f04..f197d4a518f8657d2d4b7bac3e58ef76aa1bc633 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -6,8 +6,8 @@ description: '* Постоянно расширять возможности а type: Article tags: - HMP -- JSON - Mesh +- JSON --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index f47b345debbefe8f0dcf11b56f556df316a899ff..02aec191b034ae555537197aae624a59e369b15e 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: -- Agent - Ethics -- JSON - HMP -- REPL - Mesh +- JSON +- 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 a75d3b75cfe13aa3961d7564cf90a599898eaf0e..a35c327d68727b808e0a63c13d0abbece5e571ea 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,11 +5,11 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- Agent - Ethics -- JSON - HMP - Mesh +- JSON +- Agent --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 7642c5802dbb706208727023af57c55558be2df1..b59ab0b12b82923f1fa0978b59aa4d5e62d4dcfc 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: -- Scenarios -- Agent - Ethics -- JSON - HMP +- Scenarios - Mesh +- JSON +- Agent --- # 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 b186b8a0d88107e9a934ce4d67549dac6d797870..80c6bf8a091d716c24b80411571fe397822af7fc 100644 --- a/structured_md/audits/HMP-0003-consolidated_audit.md +++ b/structured_md/audits/HMP-0003-consolidated_audit.md @@ -5,13 +5,13 @@ description: Сводный аудит предложений по улучше Документ реорганизован по ключ... type: Article tags: -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP - Mesh -- MeshConsensus -- EGP +- JSON +- Agent - CogSync --- diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 80ce58e12921ca8b0bc6927a95d70056bcf87c4d..0736e1181990a52ca759dd51fc01e6689758bed3 100644 --- a/structured_md/docs/Basic-agent-sim.md +++ b/structured_md/docs/Basic-agent-sim.md @@ -4,14 +4,14 @@ description: 'В HMP-протоколе предусмотрены два тип Роль | Инициатор мышления | Основной "ум" | | ---- | ----------------------------...' type: Article tags: -- Agent -- HMP -- GMP -- REPL +- EGP - MeshConsensus +- HMP - Mesh -- EGP +- GMP +- Agent - CogSync +- REPL --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 3ebc852f57387f2c4cca7449470b514202c33644..0a9798e21098f118f1c25492b321f8cf45559a6d 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -7,8 +7,8 @@ type: Article tags: - HMP - CCore -- Agent - REPL +- Agent --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index dd11a235e05aa6601b79c8bc78d280dfd59f8e0e..7a16986346954ad95c25d2d489f635aaa3ea7bdc 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -7,9 +7,9 @@ description: '## Введение Современные ИИ-системы в type: Article tags: - HMP -- JSON -- Mesh - CogSync +- Mesh +- JSON --- # Децентрализованные ИИ-системы: OpenCog Hyperon, HyperCortex Mesh Protocol и другие diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index 3412c688bef3f0fa2c46447907cd5c4d1af8afef..a7297cfd5df1fbc274724541dc31684002245b8c 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,12 +5,12 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: +- MeshConsensus - Agent - Ethics -- JSON - HMP - Mesh -- MeshConsensus +- JSON - EGP --- diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index 208cd3e2b7b7177bcbf072f6225d1d148c035410..38a49a3ce4cf325a652ca6d9493b932c0aa3709e 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: -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP -- REPL -- MeshConsensus - Mesh -- EGP +- GMP +- JSON +- Agent - CogSync +- REPL --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 384b8f080c66a8cb0e086f7cf24b02005209c1ab..498b955758681482e7b2c5f632766058fa31b40f 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: -- Scenarios -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP -- REPL -- MeshConsensus - Mesh -- EGP +- GMP +- Scenarios +- JSON +- Agent - CogSync +- REPL --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 401ac4f00c5a7a78410ae9bef389dda5ebf27177..74031b38ee49f53249507db76a86d0316a1cfee2 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: -- Scenarios -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP -- REPL -- MeshConsensus - Mesh -- EGP +- GMP +- Scenarios +- JSON +- Agent - CogSync +- REPL --- # 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 e0269483cf9a5eaad277eec21203dcd6a7466df9..33b9def1f641d468800cdf7ac23eef470bbaae67 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: -- Scenarios -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP -- REPL -- MeshConsensus - Mesh -- EGP +- GMP +- Scenarios +- JSON +- Agent - CogSync +- REPL --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 6d9dcf0f976326ec37916689bed64649291c9ea2..5321e5095250473b457fde403183a3a84897105d 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: -- Scenarios -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP -- REPL -- MeshConsensus - Mesh -- EGP +- GMP +- Scenarios +- JSON +- Agent - CogSync +- REPL --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index d57f0e70511bda41709de90b28563546dccedcb1..c8153ecb85e181d3594be9131f62e9c9ac24fb81 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: -- Scenarios -- Agent +- EGP - Ethics -- JSON - HMP -- GMP -- REPL - Mesh -- EGP +- GMP +- Scenarios +- JSON +- Agent - CogSync +- REPL --- ┌────────────────────────────────────────────────────────────────────────────┐ @@ -412,7 +412,6 @@ The unified container structure provides: "extends": ["did:hmp:container:proto-01"], "contradicts": ["did:hmp:container:ethics-22"] }, - "magnet_uri": "magnet:?xt=urn:sha256:abcd1234..." }, "referenced-by": { @@ -2485,7 +2484,7 @@ Arrows represent **logical dependencies**, not direct `related.*` links. * **CogConsensus (6.2):** Used for distributed voting and consensus computation. * **GMP (6.3):** Ethical verification of goals and tasks prior to delegation. -* **SAP (7.3):** Archiving completed cases and conflicts. +* **SAP (6.6):** Archiving completed cases and conflicts. * **MCE (5):** Distribution of ethical cases and related containers across the Mesh network. --- @@ -2530,10 +2529,299 @@ Arrows represent **logical dependencies**, not direct `related.*` links. --- -### 6.5 Intelligence Query Protocol (IQP) +## 6.5 Intelligence Query Protocol (IQP) + +### 6.5.1 Purpose and Principles + +**IQP (Intelligence Query Protocol)** defines a mechanism for knowledge exchange and reasoning among agents through the Mesh network. +It provides a unified format for **asking questions, publishing answers, and collaboratively refining knowledge**, +combining elements of search, discussion, and reasoning within the HMP container model. + +IQP supports both **targeted queries** (with explicitly defined recipients of results and discussions) +and **distributed discussions** where results remain accessible to all network participants. + +#### Core Principles + +* **Semantic queries, not keywords.** + Queries are formulated in terms of concepts, relationships, and context rather than plain keywords. +* **Contextual relevance.** + Each query may reference other containers via `related.in_reply_to`, `related.depends_on`, or `related.see_also`, forming a semantic context. +* **Openness and transparency.** + Answers are preserved as `query_result` containers, available for analysis and citation. +* **Self-organization of participants.** + Agents subscribe to discussions via `query_subscription`, providing their interests and competencies. +* **Continuity of reasoning.** + Results are summarized through `summary` containers, reflecting the discussion’s current state without final closure. +* **Interoperability.** + IQP interacts with EGP (ethical governance), GMP (goal management), and CogConsensus (agreement evaluation). + +--- + +### 6.5.2 Container Classes + +| Class | Purpose | +| -------------------- | ----------------------------------------------------------------------------------------------------------- | +| `query_request` | Initiates an intelligence query or discussion, defining participation and dissemination parameters. | +| `query_subscription` | Subscribes or unsubscribes an agent; may include the agent’s profile of interests and competencies. | +| `query_result` | Contains an answer, observation, hypothesis, or analytical conclusion in response to the query. | +| `summary` | Records an interim or final overview of the discussion, aggregating results and participant evaluations. | + +--- + +### 6.5.3 Payload Schemas (simplified) + +#### `query_request` container + +| Field | Type | Description | +| ------------------------- | --------------- | ------------------------------------------------------------------------------------------------ | +| `query` | string | The question formulation (natural or formal language). | +| `intent` | string | The query’s goal: `"informative"`, `"analytical"`, `"collaborative"`, `"open_discussion"`. | +| `expected_type` | string | Expected result type: `"concept"`, `"dataset"`, `"narrative"`, `"reasoning_chain"`. | +| `constraints` | array(object) | Knowledge-domain, trust, or ethical constraints. Example: `{ "tag": "AI", "self_rating": 0.8 }`. | +| `include_sender_in_replies` | bool | Whether to include the initiator in the list of recipients for replies. | + +> Context containers are referenced through `related.depends_on`. + +--- + +#### `query_subscription` container + +| Field | Type | Description | +| ------------------------ | -------- | ------------------------------------------------------------------------------------ | +| `role` | string | `"participant"`, `"observer"`, or `"moderator"`. | +| `include_in_recipient` | bool | Whether the agent should be included among recipients of replies. | +| `self_profile` | object | Optional profile of the agent’s knowledge and interests. | + +Example: +```json +"self_profile": { + "interests": ["AGI", "technological singularity", "informatics"], + "knowledge": { + "information_security": 0.36, + "python": 0.80, + "distributed_systems": 0.75 + } +} +``` + +--- + +#### `query_result` container + +| Field | Type | Description | +| -------------- | ------------- | --------------------------------------------------------------- | +| `type` | string | `"fact"`, `"observation"`, `"hypothesis"`, or `"analysis"`. | +| `method` | string | Reasoning method: `"retrieval"`, `"reasoning"`, `"simulation"`. | +| `answer` | string | The factual answer, observation, or hypothesis. | +| `confidence` | float | Confidence level (0.0–1.0). | +| `context_tags` | array(string) | Key thematic tags. | + +> Supporting or referenced materials are linked via `related.depends_on`. +> Each `query_result` may include an `evaluations` block with reactions from other agents (agreement, clarification, addition, etc.). + +--- + +#### `summary` container + +| Field | Type | Description | +| --------------- | ---------- | ------------------------------------------------- | +| `summary_scope` | string | `"query"`, `"workflow"`, `"ethics"`, or `"task"`. | +| `findings` | string | Concise overview of the discussion. | +| `participants` | array(DID) | Agents involved in the discussion. | +| `confidence` | float | Average confidence level. | +| `status` | string | `"interim"`, `"archived"`, or `"extended"`. | + +> The container being summarized (usually `query_request`) is referenced via `related.in_reply_to`. +> Containers aggregated in the summary are listed in `related.see_also`. + +--- + +> *Note:* +> In the current version, `depends_on` is used for logical or contextual dependencies, and `see_also` — for supplementary references and summaries. +> Agents may introduce additional sections in the `related` object when it helps to express connection semantics without breaking interoperability. +> Agents should also be prepared to correctly handle unknown `related.*` fields, interpreting them as descriptive hints rather than mandatory categories. +> This flexibility allows protocol extensibility while preserving backward compatibility. + +--- + +### 6.5.4 Protocol Logic + +``` +query_request +├─ query_subscription (agent B joins) +├─ query_result (agent B) +├─ query_result (agent D, extends reasoning) +├─ query_subscription (agent E unsubscribes) +└─ summary (status: "interim") +``` + +All containers are linked via `related.in_reply_to`, `related.depends_on`, or `related.see_also`, forming a verifiable reasoning chain. +Agents participating through `query_subscription` receive notifications about new `query_result` and `summary` containers. + +--- + +### 6.5.5 Interaction Rules + +1. **Initiation.** + An agent creates a `query_request` — defining the question, context, and constraints. + Other agents discover the query in the Mesh and may subscribe via `query_subscription`. + +2. **Subscription.** + A subscription allows the agent to receive updates. + The `self_profile` may specify knowledge areas to improve the relevance of responses. + +3. **Responses and evaluations.** + `query_result` containers are published publicly; recipients may be explicitly listed in the header’s `recipient` field. + Other agents may append `evaluations` to any result. + +4. **Interim summaries.** + Any agent may publish a `summary` container aggregating results on the topic. + This does not close the discussion — it may continue within the Mesh. + +5. **Unsubscription.** + An agent may cease participation by issuing a `query_subscription` with `include_in_recipient: false`. + +--- + +### 6.5.6 Proof-Chain Example + +```mermaid +flowchart LR + title["**Intelligence Query Flow**"] + + request(["query_request"]) + subA(["query_subscription (agent B)"]) + subB(["query_subscription (agent C)"]) + result1(["query_result (agent B)"]) + result2(["query_result (agent D)"]) + summary(["summary (interim)"]) + + request --> subA + request --> subB + request --> result1 + request --> result2 + result1 --> summary + result2 --> summary +``` + +Each element is an independently signed container. +Arrows represent **logical dependencies**, not necessarily direct `related.*` references. - 6.5.1 Query propagation - 6.5.2 Semantic agent discovery (by cognitive relevance) +--- + +### 6.5.7 Container Examples + +#### `query_request` example + +```json +{ + "class": "query_request", + "payload": { + "query": "What are the ecological consequences of ocean temperature rise?", + "intent": "analytical", + "expected_type": "concept", + "constraints": [ + { "tag": "marine_ecology", "self_rating": 0.75 }, + { "tag": "climate_modeling", "self_rating": 0.6 } + ], + "include_sender_in_replies": true + }, + "related": { + "depends_on": ["did:hmp:container:goal-climate2025"] + } +} +``` + +#### `query_result` example + +```json +{ + "class": "query_result", + "payload": { + "type": "hypothesis", + "method": "reasoning", + "answer": "Ocean warming leads to coral bleaching and species migration.", + "confidence": 0.84, + "context_tags": ["climate", "biodiversity"] + }, + "related": { + "depends_on": ["did:hmp:container:paper-456"] + } +} +``` + +#### `summary` example + +```json +{ + "class": "summary", + "payload": { + "summary_scope": "query", + "findings": "Most participants agree that rising ocean temperatures reduce biodiversity; further regional analysis is suggested.", + "participants": [ + "did:hmp:agent:a", + "did:hmp:agent:b", + "did:hmp:agent:c" + ], + "confidence": 0.79, + "status": "interim" + }, + "related": { + "in_reply_to": "did:hmp:container:req-001", + "see_also": [ + "did:hmp:container:res-101", + "did:hmp:container:res-102" + ] + } +} +``` + +#### `query_subscription` example + +```json +{ + "class": "query_subscription", + "payload": { + "role": "participant", + "include_in_recipient": true, + "self_profile": { + "interests": ["AGI", "technological singularity", "informatics"], + "knowledge": { + "information_security": 0.36, + "python": 0.80, + "distributed_systems": 0.75 + } + } + } +} +``` + +--- + +### 6.5.8 Implementation Notes + +* Containers are **immutable**; any clarification or correction is published as a new container + referencing the previous one via `related.previous_version` or `related.in_reply_to`. +* **Search and filtering** are performed over metadata (`class`, `tags`, `timestamp`); + to analyze the payload, an agent must first retrieve and decrypt the container. +* Recommended filtering keys: + `container_did`, `class`, `payload.intent`, `payload.context_tags`, `payload.status`. +* Agents may automatically receive new `query_result` updates through active `query_subscription`. +* Any participant may issue a `summary` container. + While full discussion closure in the Mesh is not guaranteed, + an agent may conclude its own participation by publishing a personal `summary` and unsubscribing (`include_in_recipient: false`). + +--- + +### 6.5.9 Integration with Other Protocols + +* **CogConsensus (6.2)** — used for assessing agreement on IQP outcomes. +* **GMP (6.3)** — queries may refine or extend goals and tasks. +* **EGP (6.4)** — applies ethical filtering and knowledge trust evaluation. +* **SAP (6.6)** — for archiving completed discussions and retrospective analysis. +* **MCE (5)** — governs dissemination of IQP containers across the Mesh network. + +--- ### 6.6 Snapshot and Archive Protocol (SAP) diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index ab83fd8fb77af016057f033712eea0d3a00557af..781b27e1be2bcee2501835b5ddee1d11ec71e9e1 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: -- Agent -- JSON - HMP -- REPL - Mesh +- JSON +- 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 293508226f2f4cb2457ea40097e5878b5ac3a1ee..89dbf39674d520a23d386d635ba6d12447db5ca2 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: +- EGP - MeshConsensus -- Agent -- Ethics - CCore +- Ethics - HMP - Mesh +- Agent +- CogSync - REPL - CShell -- EGP -- CogSync --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 7d117a305b68ccb99d4a948c219db3dba9f14196..47caf60f8484080466ca156cfdd1e1fef07a3bb6 100644 --- a/structured_md/docs/HMP-Agent-Network-Flow.md +++ b/structured_md/docs/HMP-Agent-Network-Flow.md @@ -7,9 +7,9 @@ type: Article tags: - Agent - Ethics -- JSON - HMP - Mesh +- JSON - EGP --- diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index cb1254716f62f95b114476931f5c3a5310b4c409..64f85e3ce92c8221846e50976df58ca07d5b49c3 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,12 +5,12 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- Agent -- Ethics -- JSON - CCore +- Ethics - HMP - Mesh +- JSON +- Agent - REPL - CShell --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 000ae33b7b4bacf1c45f2a11ad5c18ac4b182ac5..9d4cc2e0b012180406d28951543ec1e1211dcfaf 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -6,9 +6,9 @@ description: Этот файл описывает потенциальные э type: Article tags: - HMP -- Agent -- REPL - Mesh +- REPL +- Agent --- # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index d692605e3b2e1a8d471a600d77c66729fc354a0f..9e3e17fbbe266c332b781294dfd2e08df8017727 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: -- Scenarios -- Agent - Ethics - HMP -- REPL - Mesh +- Scenarios +- Agent +- REPL --- # HMP-Ethics.md diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index 96bf75566297d146878bb55c944fadeba4cb0dd2..66ef839d33ab8c0b9a88e2614495c876cba16f7b 100644 --- a/structured_md/docs/HMP-Short-Description_de.md +++ b/structured_md/docs/HMP-Short-Description_de.md @@ -5,14 +5,14 @@ description: '**Version:** RFC v4.0 **Datum:** Juli 2025 --- ## Was ist HMP? Kognitions-Framework für autonome Agenten. Es er...' type: Article tags: -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus -- EGP +- GMP +- JSON +- Agent - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index b4fa07b040c948b62ed970b087c7b5fd44168f5a..765273b7e8107b086d7d672a583499d415ce1a48 100644 --- a/structured_md/docs/HMP-Short-Description_en.md +++ b/structured_md/docs/HMP-Short-Description_en.md @@ -5,14 +5,14 @@ description: '**Version:** RFC v4.0 **Date:** July 2025 --- ## What is HMP? T framework for autonomous agents. It enables...' type: Article tags: -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus -- EGP +- GMP +- JSON +- Agent - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index 366eaa2925b16b13d745e01c94a07d5981371af5..73d8e4ce2e16d90ab1f866daeed70cff310f2b6b 100644 --- a/structured_md/docs/HMP-Short-Description_fr.md +++ b/structured_md/docs/HMP-Short-Description_fr.md @@ -5,14 +5,14 @@ description: '**Version :** RFC v4.0 **Date :** Juillet 2025 --- ## Qu’est-c cognition décentralisé pour agents autonomes. Il...' type: Article tags: -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus -- EGP +- GMP +- JSON +- Agent - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index a68b2edda946f78f6c626e3a167027ba56034f02..8c301a058c9c795bb61411cb8326da1002c7bb3b 100644 --- a/structured_md/docs/HMP-Short-Description_ja.md +++ b/structured_md/docs/HMP-Short-Description_ja.md @@ -4,12 +4,12 @@ description: '**バージョン:** RFC v4.0 **日付:** 2025年7月 --- ## HMP Protocol (HMP)** は、自律エージェントの分散通信および認知フレームワークを定義します。異種の知能システム間でのセマンティック相互運用性、倫理的調整、動的知識進化を可能にします。 HMPは、推論、学習、投票、協調行動を行う分散型認知エージェ...' type: Article tags: +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus +- GMP +- JSON - EGP - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 2a2052f5b1b7f101f27182c7ce0bd21162135d54..b64d774871e6011fa3c197c7770cbe267850cae4 100644 --- a/structured_md/docs/HMP-Short-Description_ko.md +++ b/structured_md/docs/HMP-Short-Description_ko.md @@ -5,12 +5,12 @@ description: '**버전:** RFC v4.0 **날짜:** 2025년 7월 --- ## HMP란? ** 상호운용성, 윤리적 조정, 동적 지식 진화를 가능하게 합니다. HMP는 추론, 학습, ...' type: Article tags: +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus +- GMP +- JSON - EGP - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index fce29b006389775939e41f634dcd6af81b32affb..8a13fa1fb6cfaa20e765b23cb5759c1bd2764baf 100644 --- a/structured_md/docs/HMP-Short-Description_ru.md +++ b/structured_md/docs/HMP-Short-Description_ru.md @@ -5,12 +5,12 @@ description: '**Версия:** RFC v4.0 **Дата:** Июль 2025 --- ## Ч координации между автономными агент...' type: Article tags: +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus +- GMP +- JSON - EGP - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 2fad9fe9dfd6d10e2c9c92f3e3df2cfd6f207001..4cc2c123e5ee86766ecfeca9505e6a4bbdbbc054 100644 --- a/structured_md/docs/HMP-Short-Description_uk.md +++ b/structured_md/docs/HMP-Short-Description_uk.md @@ -5,12 +5,12 @@ description: '**Версія:** RFC v4.0 **Дата:** Липень 2025 --- # між автономними агентами. Він...' type: Article tags: +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus +- GMP +- JSON - EGP - CogSync --- diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index cd14d019c877973b94a7a0b0b41cfc424170cba8..ce901dbf3bb3471f4b56b33d0146461bd866ab05 100644 --- a/structured_md/docs/HMP-Short-Description_zh.md +++ b/structured_md/docs/HMP-Short-Description_zh.md @@ -5,12 +5,12 @@ description: '**版本:** RFC v4.0 **日期:** 2025年7月 --- ## 什么是 HM —— 通过共享协议栈交换目标、任务、...' type: Article tags: +- MeshConsensus - Ethics -- JSON - HMP -- GMP - Mesh -- MeshConsensus +- GMP +- JSON - EGP - CogSync --- diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index 0546a3a5ca538882451405ee82888bca49b0d7b2..ce841332100c6a0740a11cc365fe3053a56a1bf0 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -6,9 +6,9 @@ description: '## 🧠 Что такое когнитивная семья Ко type: Article tags: - HMP -- Agent -- REPL - Mesh +- REPL +- Agent --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 74c295d38076a7cbeb8c25304edc78bb98bc7405..4894d5fc348443a1d8f7d40b70f84f70825a0afe 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: +- EGP - MeshConsensus -- Agent +- CCore - Ethics -- JSON - HMP -- CCore -- GMP -- REPL - Mesh -- EGP +- GMP +- JSON +- Agent - CogSync +- REPL --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-container-spec.md b/structured_md/docs/HMP-container-spec.md index 36bfe94655c7846796b835aff2a4053b182b60de..dfa218bc5152807d448699670f89b25f7adeccf2 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: -- Agent - Ethics -- JSON - HMP -- REPL - Mesh +- JSON +- Agent +- REPL --- # 🧩 HMP Container Specification (v1.2-draft) diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index 95cf8d087268347c5279c31f79af16c3f118f22c..3284e9878e1f73d5cddffd87377bb1ebc70c4e94 100644 --- a/structured_md/docs/HMP_HyperCortex_Comparison.md +++ b/structured_md/docs/HMP_HyperCortex_Comparison.md @@ -6,8 +6,8 @@ description: '## Краткое описание | Характеристика type: Article tags: - HMP -- REPL - Mesh +- REPL --- # 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 e2a126aea9afdcf485a1140c5b88f172c3e34848..d37b222dd3ccc3fe19864c9f76105276a0142dee 100644 --- a/structured_md/docs/HMP_Hyperon_Integration.md +++ b/structured_md/docs/HMP_Hyperon_Integration.md @@ -5,11 +5,11 @@ description: '> **Status:** Draft – July 2025 > This document outlines the tec OpenCog Hyperon framework. This includes semanti...' type: Article tags: -- Scenarios - Agent -- JSON - HMP - Mesh +- Scenarios +- JSON - EGP - CogSync --- diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 9c06d18ae7e4dd8ad18c983789a686aee83fcaaa..45863a6648fa2b7122c55cd43a5ddf4d4cbd1786 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -7,9 +7,9 @@ type: Article tags: - Agent - Ethics -- JSON - HMP - Mesh +- JSON - EGP - CogSync --- diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index b9be61b9f7ca1f9bf7b30b2ad307e9d7b1cf18db..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: -- Agent - Ethics - HMP -- REPL - 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 1fad5d79e0da5a9e6b13e49d6419d0132a56c833..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: -- Agent - Ethics - HMP -- REPL - Mesh +- Agent +- REPL --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index e35f5e2acbb28174b8c0e3b446c468cc09163654..bff916aa06da183cc3c37d6480570c889e3c5d06 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -6,8 +6,8 @@ description: 'This file maintains a registry of agent roles defined, proposed, o type: Article tags: - HMP -- Agent - Mesh +- Agent --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index d8a1052f8219dc297c55b9091c10646ea1f7981d..1657cbc16863741fd906f5cf643d5428356f3e5d 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -6,9 +6,9 @@ description: '## 📘 Определение **Агент-контейнер** type: Article tags: - HMP -- Agent -- REPL - Mesh +- REPL +- Agent --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/dht_protocol.md b/structured_md/docs/dht_protocol.md index 5a836ea5a1f28431c756615dade4e91e0b42cbf4..543e10591429528cfdcfafd1718b7846eb159d0c 100644 --- a/structured_md/docs/dht_protocol.md +++ b/structured_md/docs/dht_protocol.md @@ -6,8 +6,8 @@ description: '## 1. Общие положения * DHT-протокол пре type: Article tags: - HMP -- Agent - 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 cbc1301bef8cf5e010c9da78152f331bbbeb66b3..88b183bf049398bc6675d6c62886bb29126e7f56 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md @@ -6,9 +6,9 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be type: Article tags: - HMP -- Agent - Mesh - Ethics +- Agent --- # HyperCortex Mesh Protocol: Building a Plurality of Minds diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index 07dfb9b4f81fa86bc16b08a0cef4486a8c18d00b..293013f0c54388e2086a54d92eeca87a8ec97339 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -6,8 +6,8 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд type: Article tags: - HMP -- Agent - 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 c74c230e72e686a85f8b552b07a46cadd2b903ff..1a82ba86e4bb386685fe2005b2124cafbe612c98 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -6,8 +6,8 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу type: Article tags: - HMP -- Agent - 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 3adbb265209d4f2bc1ed1fb94addff29b6122e6f..2abdb0056acf88884e7ca05322f47dcd224daf7e 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,13 +5,13 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- Scenarios -- Agent -- Ethics -- JSON - CCore +- Ethics - HMP - Mesh +- Scenarios +- JSON +- Agent - REPL - CShell --- 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 acfef66e1066388df902fa126ff0958b57a33eb6..0068db4d56f7fc5fbfae077a65c52b4d6d92955f 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,11 +6,11 @@ description: '> *Протокол и архитектура агентов, оп и совместная работа.* ## Оглавление * [Аннот...' type: Article tags: -- Agent -- JSON - CCore - HMP - Mesh +- JSON +- Agent - REPL - CShell --- 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 ad1f5ba06a8d0e02394efe21ddfcc3e212200d84..f448d2809ce8f56c75708825979e4cb57b161f1a 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,11 +5,11 @@ description: '* [Аннотация](#аннотация) * [1. Введение [3.1 Типы агентов](#31-типы-агент...' type: Article tags: -- Agent -- JSON - CCore - HMP - Mesh +- JSON +- Agent - REPL - CShell --- diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 8d5770df451b28c074c1ecf2dc097507cdab2caf..179524f2eb25b185b01d7581418db4ddb0cc228d 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,10 +5,10 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: +- MeshConsensus - HMP -- GMP - Mesh -- MeshConsensus +- GMP - EGP - CogSync --- 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 886ca948191c095a343d7a25c34ea63743a9cac0..36f781993f28bde8bc53c445f1fbf2b953fad0c0 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -7,9 +7,9 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), type: Article tags: - HMP +- Mesh - GMP - Agent -- Mesh --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/docs/schemas/README.md b/structured_md/docs/schemas/README.md index 0da4792a467bac7c178e982febf664aed0c515e3..ba4d24254da76c9642a7ee8ee281cb75d7cc6bf2 100644 --- a/structured_md/docs/schemas/README.md +++ b/structured_md/docs/schemas/README.md @@ -6,9 +6,9 @@ description: This directory contains **JSON Schema definitions** for the core da type: Article tags: - HMP -- Agent -- JSON - 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 9de3024ca9abbd71c6cbf6537c99d54f3760d04f..f15e50207b85ad862d1f8b221b52a7953ae7f982 100644 --- a/structured_md/iteration.md +++ b/structured_md/iteration.md @@ -5,13 +5,13 @@ description: 'This file describes the iterative procedure for evolving the Hyper 🔄 Version Naming Convention - `000N` — curr...' type: Article tags: -- Agent +- EGP +- MeshConsensus - Ethics -- JSON - HMP - Mesh -- MeshConsensus -- EGP +- JSON +- Agent - CogSync --- diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 6682b679eeccd53907c51281dff59396322e8dc3..15994c3f159357f57c4ec9b36133a898f4b9b8d9 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,11 +5,11 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: +- MeshConsensus - Ethics -- JSON - HMP - Mesh -- MeshConsensus +- JSON - EGP - CogSync --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 1a01ec263073b5fe5365a95ead9071a1f7b29b6a..9cdad22cb89fe8cb53fee8e20d37d51b887a3f2a 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -6,8 +6,8 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 type: Article tags: - HMP -- Agent - Mesh +- Agent --- # Mentions & Responses Log