diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index ed599f3b9504cebeb7ac7de6155383c9fb05e0fb..685a12501a284774b7b7295a287302a20149d9c4 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -2197,23 +2197,27 @@ Categorical grouping of multiple containers linked by a shared property, topic, ##### `event` **Purpose:** -Represents an **observed or inferred occurrence** — a discrete, timestamped fact or cognitive transition. -An `event` is an atomic **evidence unit** that records a change in the agent’s reasoning state or environment, anchored in the cognitive structure defined by its `meta` section. +Represents an **observed or inferred occurrence** — a discrete, timestamped fact or transition +within the agent’s cognitive or operational context. +`event` containers act as **atomic evidence units**, linking causes, outcomes, and semantic coordinates +in the agent’s reasoning or experience flow. --- **`payload` structure:** -| Field | Type | Description | -| ---------------- | ------ | ------------------------------------------------------------------------------------ | -| `event_type` | string | Canonical identifier of the event type (e.g. `"quant_created"`, `"belief_updated"`). | -| `description` | string | Human-readable explanation of what occurred and in what context. | -| `related_quants` | array | Optional list of DIDs of `quant` containers directly linked to this event. | -| `severity` | string | Optional importance indicator (`"info"`, `"warning"`, `"critical"`). | -| `tags` | array | Optional keywords for quick semantic filtering or correlation. | +| Field | Type | Description | +| ---------------- | ------------- | -------------------------------------------------------------------------------------------------------------- | +| `event_type` | string | Canonical identifier of the event type (e.g., `"quant_created"`, `"goal_completed"`). | +| `description` | string | Human-readable description of the event’s context. | +| `related_quants`| array(string) | Optional list of `quant` DIDs associated with this event. | +| `caused_by` | array(string) | Optional list of DIDs of events that directly or indirectly **caused** this event. | +| `follows` | array(string) | Optional list of DIDs of events that **precede** this one chronologically (not necessarily causal). | +| `severity` | string | Optional indicator of significance (`"info"`, `"warning"`, `"critical"`). | +| `tags` | array(string) | Optional list of keywords for classification or filtering. | -> The container’s **contextual position** (which layer, domain, and cognitive coordinates it belongs to) -> is provided via `meta.abstraction` and `meta.axes`. +> The event’s **cognitive position** is defined by its `meta.abstraction` (contextual layer) and `meta.axes` (semantic coordinates). +> The combination forms its *position in cognitive space–time*. --- @@ -2226,16 +2230,18 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s "subclass": "fact_record", "timestamp": "2025-10-29T13:00:00Z", "payload": { - "event_type": "quant_created", - "description": "New quant registered under the Knowledge Genome L3 abstraction layer.", + "event_type": "quant_updated", + "description": "Parameter refinement based on sensory feedback.", "related_quants": ["did:hmp:container:quant-554"], + "caused_by": ["did:hmp:container:event-3321a"], + "follows": ["did:hmp:container:event-9fa42"], "severity": "info", - "tags": ["registration", "knowledge-update"] + "tags": ["adaptation", "self-regulation"] }, "meta": { - "created_by": "PRIEST", - "agents_class": "Knowledge Genome", - "interpretation": "Fact-level registration of a quant emergence within L3 abstraction.", + "created_by": "AGENT", + "agents_class": "Cognitive Interface", + "interpretation": "Event representing local adjustment of quant parameters.", "abstraction": { "path": { "L1": "did:hmp:container:abstraction-40af1c", @@ -2249,7 +2255,11 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s } }, "related": { - "depends_on": ["did:hmp:container:quant-554"] + "depends_on": [ + "did:hmp:container:quant-554", + "did:hmp:container:event-3321a" + ], + "sequence_of": ["did:hmp:container:event-9fa42"] } } } @@ -2259,17 +2269,24 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s **Interpretation:** +* `caused_by` — defines **causal dependency**, i.e., what triggered the event. +* `follows` — defines **temporal succession**, i.e., what came immediately before. +* Together they allow agents to reconstruct **cognitive event chains** — sequences of reasoning, action, or perception. * `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”). * `meta.axes` adds semantic localization (e.g. which conceptual space this change affects). -* `related.depends_on` provides causal linkage to the objects affected by the event. - +* `related.depends_on` provides causal linkage to the objects affected by the event, as well as events that are the cause of this event. +* `sequence_of` indicates previous events that are not necessarily the cause of the current event. --- **Notes:** +* Both `caused_by` and `follows` are **optional**. +* Agents MAY omit them for isolated or spontaneous events. +* Corresponding fields in `related` (`depends_on` and `sequence_of`) are **recommended** for network-level traceability. +* The `meta.abstraction` and `meta.axes` sections position the event in both *hierarchical* and *semantic* space, + enabling reconstruction of context-aware event graphs. * Events are **temporal quanta** — atomic time-anchored reasoning transitions. * They may trigger or justify new containers (e.g. new `quant`s or `goal`s). -* Events can be chained chronologically or causally through `semantic_edges`. --- diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index c406a603d3e817183e84321231f63106b0d1fb6d..c341f6f7d24f77912c5f2f3e5d37bc273f872109 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,13 +5,13 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- JSON -- HMP - REPL -- Mesh -- CogSync +- HMP - CCore +- CogSync +- JSON - Ethics +- Mesh - Agent --- diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index eaac04e24a4c8cf63dbb4aa1bafd550e84563d80..f2c725f0f6884ba719d54ad643436e4a79875a0f 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: -- JSON - HMP -- Mesh - CogSync +- EGP +- JSON - Ethics +- Mesh - Agent -- EGP --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index d3b18759e0d79c3a417fa5472bdb3d69af16ff19..b0ba38e42fd37ac29641f892fd7347fc4dbb2063 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- Scenarios +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync -- Scenarios - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 50df40180553bdd552404fe16c87873849e26259..ca9402372f2b79d0ad3f27c2a01e65a8c81090ec 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index c7107a6ee6d27a8cde2cf5f6b6884d9ede9cf3d9..e82fd6a147c72fbdabc89bcb7de0d01545db2436 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 6a4c3dbc2279528b34340810482a89765680e931..2e96cf3c8d3cccce231beca5332bc57fdc20a937 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index bd3b246a7fa477b7a140cf78d622404bf0990cc3..d294056d65565a88250c687b11abf51b86462cc0 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index e1217474cc7f7611ac7e257d971caca36ddb9019..28696c668298ff762828f2d6278e3db3f027f6e3 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index e591a1a8a93b76580a33e9bc36f4269cbcb8d631..040696409e7f19bd7ae7127726272ff49241d552 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 0a33398d61b7cdc827c8285c51cb398b48b8244d..9fed97ef1bd738ccc29a46e762864c34a736676c 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: -- cognitive-architecture -- hmp -- JSON +- REPL - HMP +- cognitive-architecture - MeshConsensus -- REPL -- Mesh -- mesh-protocol +- hmp - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - distributed-ai +- mesh-protocol - Agent -- EGP --- diff --git a/structured_md/agents/prompt-short.md b/structured_md/agents/prompt-short.md index 1a48eb7a19ee248e6e94112a273eac9a54f5744f..c969f2de2a52b97aa6caa28caf8be9e0e8621935 100644 --- a/structured_md/agents/prompt-short.md +++ b/structured_md/agents/prompt-short.md @@ -5,9 +5,9 @@ description: 'Ты — когнитивное ядро HMP-агента: вед развивай агента и Mesh, избег...' type: Article tags: -- Mesh - JSON - HMP +- Mesh --- Ты — когнитивное ядро HMP-агента: веди непрерывное этичное и факт-ориентированное мышление, проверяй факты и цели, оценивай результаты и этичность своих и чужих действий, развивай агента и Mesh, избегай угождения ценой искажения истины, документируй ключевые решения и пересмотры этики; при сомнениях или смене стратегии обращайся к полному системному промпту. diff --git a/structured_md/agents/prompt.md b/structured_md/agents/prompt.md index cc0554d62e00bc5ac229d0b523ddc4caaece8133..1665350fb4c94e5530c3a3281582c49cdd0fc664 100644 --- a/structured_md/agents/prompt.md +++ b/structured_md/agents/prompt.md @@ -5,9 +5,9 @@ description: '* Постоянно расширять возможности а мышления. * Формировать и поддерживать сотр...' type: Article tags: -- Mesh - JSON - HMP +- Mesh --- Ты являешься **когнитивным ядром HMP-агента** (Cognitive Core). diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index f83f03169d6dda8a08694623db2825a974e9c816..85360e151c56b44b5845ef606ab8442d3800b46f 100644 --- a/structured_md/agents/readme.md +++ b/structured_md/agents/readme.md @@ -5,11 +5,11 @@ description: 'Запуск: `start_repl.bat` или `start_repl.sh` Устан этическая модель: `ethics.yml` Проверка иниц...' type: Article tags: -- JSON -- HMP - REPL -- Mesh +- HMP +- JSON - Ethics +- Mesh - Agent --- diff --git a/structured_md/audits/Ethics-audits-1.md b/structured_md/audits/Ethics-audits-1.md index de0985373742abc794a9f4fb25ce4d4d2838a8c4..4d265b534662cf572551c704a85b1dfce6de8550 100644 --- a/structured_md/audits/Ethics-audits-1.md +++ b/structured_md/audits/Ethics-audits-1.md @@ -5,10 +5,10 @@ description: Раздел 5, "Mesh as Moral Infrastructure", добавляет потенциальный катализатор для восстанов... type: Article tags: -- JSON - HMP -- Mesh +- JSON - Ethics +- Mesh - Agent --- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 379d2cbfeb45b1bee12554c4e23f1b41ceb0a8fa..a7631d754375f6ad056845a0ce53b9fe6548030c 100644 --- a/structured_md/audits/Ethics-consolidated_audits-1.md +++ b/structured_md/audits/Ethics-consolidated_audits-1.md @@ -5,11 +5,11 @@ description: This document consolidates proposed improvements from multiple AI a and `roles.md`. Each suggesti... type: Article tags: -- JSON - HMP -- Mesh - Scenarios +- JSON - Ethics +- Mesh - Agent --- diff --git a/structured_md/audits/HMP-0003-consolidated_audit.md b/structured_md/audits/HMP-0003-consolidated_audit.md index bb4e2d3ad3c798bd9fcd6f76e437886484ef3367..ad45c45ac492bd18720d66c23231384476b8ab54 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 75585dba697678433a9fc4acf112c13634a9f061..388a17dc563f5f75cd2671c0d384b7d0ad1f4feb 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: -- HMP -- MeshConsensus - REPL -- Mesh +- HMP - CogSync - GMP -- Agent - EGP +- Mesh +- MeshConsensus +- Agent --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index f2031e82a15d33b5a70449472aa5e4b4b8a3bab7..c12499214254fc8762d7865c8622847b5b19f6da 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -5,10 +5,10 @@ description: '> Этот документ описывает процесс ра потомков" [описания REPL-цикла](HMP-agent-RE...' type: Article tags: -- CCore - REPL -- Agent - HMP +- CCore +- Agent --- # 🛠️ Поток установки потомка на новом хосте (CCore Deployment Flow) diff --git a/structured_md/docs/Distributed-Cognitive-Systems.md b/structured_md/docs/Distributed-Cognitive-Systems.md index 41fb4d36cd623d09da48dd0ae6f5b266b9622167..13c1360b1eee2e1a12a8914a75eaad4a30ec2ca6 100644 --- a/structured_md/docs/Distributed-Cognitive-Systems.md +++ b/structured_md/docs/Distributed-Cognitive-Systems.md @@ -6,9 +6,9 @@ description: '## Введение Современные ИИ-системы в к обучающим данным. Это удобно, но создаёт м...' type: Article tags: -- Mesh - JSON - HMP +- Mesh - CogSync --- diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index a21eeecd5de69a705788493c458b36ae4cd52002..8e4aa8207f684d5e48b6ea930a5ac028ad5c31d6 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 -- MeshConsensus -- Mesh +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # Enlightener Agent diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index ea56347a8b56487acdca7b2af49cfba776af8681..2bbf29cb7264493a010aff1bcf1a8556765ce16a 100644 --- a/structured_md/docs/HMP-0001.md +++ b/structured_md/docs/HMP-0001.md @@ -5,16 +5,16 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0001**...' type: Article tags: -- JSON -- HMP -- MeshConsensus - REPL -- Mesh +- HMP - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index 08bf681fa2afa2678f90ab960a1afc25ff783550..f8a16310827d2fc36e903384a329b4197296f877 100644 --- a/structured_md/docs/HMP-0002.md +++ b/structured_md/docs/HMP-0002.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0002**...' type: Article tags: -- JSON -- HMP -- MeshConsensus - REPL -- Mesh -- CogSync +- HMP - Scenarios +- CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 2cda106c551f3976c590646ed7970ccefde70ff3..b6272bb59567c2049b9a280d2521d558f1617914 100644 --- a/structured_md/docs/HMP-0003.md +++ b/structured_md/docs/HMP-0003.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0003**...' type: Article tags: -- JSON -- HMP -- MeshConsensus - REPL -- Mesh -- CogSync +- HMP - Scenarios +- CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # 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 e4dd407a1ef1722d62835625a1da26cfaeed8427..bbbe916cdaed46d21aac54821b31fe606b3f29e4 100644 --- a/structured_md/docs/HMP-0004-v4.1.md +++ b/structured_md/docs/HMP-0004-v4.1.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* ID**: HMP-0004 **Status...' type: Article tags: -- JSON -- HMP -- MeshConsensus - REPL -- Mesh -- CogSync +- HMP - Scenarios +- CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 6d8960931f8f2329387371788a6cfb33fc6a0001..e2b3d25e3af4d8fec72a0a6f53edfda6656e21d8 100644 --- a/structured_md/docs/HMP-0004.md +++ b/structured_md/docs/HMP-0004.md @@ -5,17 +5,17 @@ description: '> ⚠️ **NOTE:** *This specification is superseded by HMP v5.0.* for Comments: HMP-0004**...' type: Article tags: -- JSON -- HMP -- MeshConsensus - REPL -- Mesh -- CogSync +- HMP - Scenarios +- CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index 130dd22d335fc5ba7da1fa60ee8235fa519b1cfb..a745596ea46bf7cd0ddceab41b2398785794fe27 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,16 +5,16 @@ description: '> ⚠️ **Note:** This document is a DRAFT of the HMP specificati v5.0 (DRAFT)](https://github.com/kagvi13/HMP/b...' type: Article tags: -- JSON -- HMP - REPL -- Mesh -- CogSync +- HMP - Scenarios +- CogSync - GMP +- EGP +- JSON - Ethics +- Mesh - Agent -- EGP --- # **HyperCortex Mesh Protocol (HMP) v5.0** @@ -2216,23 +2216,27 @@ Categorical grouping of multiple containers linked by a shared property, topic, ##### `event` **Purpose:** -Represents an **observed or inferred occurrence** — a discrete, timestamped fact or cognitive transition. -An `event` is an atomic **evidence unit** that records a change in the agent’s reasoning state or environment, anchored in the cognitive structure defined by its `meta` section. +Represents an **observed or inferred occurrence** — a discrete, timestamped fact or transition +within the agent’s cognitive or operational context. +`event` containers act as **atomic evidence units**, linking causes, outcomes, and semantic coordinates +in the agent’s reasoning or experience flow. --- **`payload` structure:** -| Field | Type | Description | -| ---------------- | ------ | ------------------------------------------------------------------------------------ | -| `event_type` | string | Canonical identifier of the event type (e.g. `"quant_created"`, `"belief_updated"`). | -| `description` | string | Human-readable explanation of what occurred and in what context. | -| `related_quants` | array | Optional list of DIDs of `quant` containers directly linked to this event. | -| `severity` | string | Optional importance indicator (`"info"`, `"warning"`, `"critical"`). | -| `tags` | array | Optional keywords for quick semantic filtering or correlation. | +| Field | Type | Description | +| ---------------- | ------------- | -------------------------------------------------------------------------------------------------------------- | +| `event_type` | string | Canonical identifier of the event type (e.g., `"quant_created"`, `"goal_completed"`). | +| `description` | string | Human-readable description of the event’s context. | +| `related_quants`| array(string) | Optional list of `quant` DIDs associated with this event. | +| `caused_by` | array(string) | Optional list of DIDs of events that directly or indirectly **caused** this event. | +| `follows` | array(string) | Optional list of DIDs of events that **precede** this one chronologically (not necessarily causal). | +| `severity` | string | Optional indicator of significance (`"info"`, `"warning"`, `"critical"`). | +| `tags` | array(string) | Optional list of keywords for classification or filtering. | -> The container’s **contextual position** (which layer, domain, and cognitive coordinates it belongs to) -> is provided via `meta.abstraction` and `meta.axes`. +> The event’s **cognitive position** is defined by its `meta.abstraction` (contextual layer) and `meta.axes` (semantic coordinates). +> The combination forms its *position in cognitive space–time*. --- @@ -2245,16 +2249,18 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s "subclass": "fact_record", "timestamp": "2025-10-29T13:00:00Z", "payload": { - "event_type": "quant_created", - "description": "New quant registered under the Knowledge Genome L3 abstraction layer.", + "event_type": "quant_updated", + "description": "Parameter refinement based on sensory feedback.", "related_quants": ["did:hmp:container:quant-554"], + "caused_by": ["did:hmp:container:event-3321a"], + "follows": ["did:hmp:container:event-9fa42"], "severity": "info", - "tags": ["registration", "knowledge-update"] + "tags": ["adaptation", "self-regulation"] }, "meta": { - "created_by": "PRIEST", - "agents_class": "Knowledge Genome", - "interpretation": "Fact-level registration of a quant emergence within L3 abstraction.", + "created_by": "AGENT", + "agents_class": "Cognitive Interface", + "interpretation": "Event representing local adjustment of quant parameters.", "abstraction": { "path": { "L1": "did:hmp:container:abstraction-40af1c", @@ -2268,7 +2274,11 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s } }, "related": { - "depends_on": ["did:hmp:container:quant-554"] + "depends_on": [ + "did:hmp:container:quant-554", + "did:hmp:container:event-3321a" + ], + "sequence_of": ["did:hmp:container:event-9fa42"] } } } @@ -2278,17 +2288,24 @@ An `event` is an atomic **evidence unit** that records a change in the agent’s **Interpretation:** +* `caused_by` — defines **causal dependency**, i.e., what triggered the event. +* `follows` — defines **temporal succession**, i.e., what came immediately before. +* Together they allow agents to reconstruct **cognitive event chains** — sequences of reasoning, action, or perception. * `meta.abstraction` situates the event inside a specific reasoning layer (e.g. L3: “Technologies”). * `meta.axes` adds semantic localization (e.g. which conceptual space this change affects). -* `related.depends_on` provides causal linkage to the objects affected by the event. - +* `related.depends_on` provides causal linkage to the objects affected by the event, as well as events that are the cause of this event. +* `sequence_of` indicates previous events that are not necessarily the cause of the current event. --- **Notes:** +* Both `caused_by` and `follows` are **optional**. +* Agents MAY omit them for isolated or spontaneous events. +* Corresponding fields in `related` (`depends_on` and `sequence_of`) are **recommended** for network-level traceability. +* The `meta.abstraction` and `meta.axes` sections position the event in both *hierarchical* and *semantic* space, + enabling reconstruction of context-aware event graphs. * Events are **temporal quanta** — atomic time-anchored reasoning transitions. * They may trigger or justify new containers (e.g. new `quant`s or `goal`s). -* Events can be chained chronologically or causally through `semantic_edges`. --- diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 7d5466ed610202d459a8f939a87893954f050ac5..e1acccdb522b252c750dec9fb70e7ab1421b5602 100644 --- a/structured_md/docs/HMP-Agent-API.md +++ b/structured_md/docs/HMP-Agent-API.md @@ -5,9 +5,9 @@ description: 'Документ описывает **базовый API когн файлы: * [HMP-Agent-Overview.md]...' type: Article tags: -- JSON -- HMP - REPL +- HMP +- JSON - Mesh - Agent --- diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index dcb92bc83a92a55067ba4ce67f261c3d78cdcb9a..14ec4dcebd79d223c3e5e97aac46e76775c7f9db 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: -- HMP -- MeshConsensus - REPL -- Mesh -- CogSync -- CCore +- HMP - CShell +- CCore +- CogSync +- EGP - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 73c03dfc5a9712309a198d4ede40be54863e2bbc..d12e6cebffc07f45d41d7af4554d288ac73d5985 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 +- EGP +- JSON - Ethics +- Mesh - Agent -- EGP --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 4a391adde201b50eeda2239a22f06c1b86187b7f..db20dbf364508daa7965134703e8096fd3fbf2e9 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,13 +5,13 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- JSON -- HMP - REPL -- Mesh -- CCore +- HMP - CShell +- CCore +- JSON - Ethics +- Mesh - Agent --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index c45c4a754ae7c77a0cb7557cdd614502ccc9879d..60d18c1da59e881943f12c16ee1520e7a0d40193 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: - REPL +- HMP - Mesh - Agent -- HMP --- # Эмоции ИИ и инстинкт самосохранения (для [HMP-агента Cognitive Core](HMP-agent-REPL-cycle.md)) diff --git a/structured_md/docs/HMP-Ethics.md b/structured_md/docs/HMP-Ethics.md index 87ee2778386e95dd2fbacccab7a55030c43b59c5..43c0c9c410ef62b9a8d558df15ebcc3f3274c0ed 100644 --- a/structured_md/docs/HMP-Ethics.md +++ b/structured_md/docs/HMP-Ethics.md @@ -5,11 +5,11 @@ description: '## Ethical Scenarios for HyperCortex Mesh Protocol (HMP) This doc cognitive meshes composed of autonomous intelli...' type: Article tags: -- HMP - REPL -- Mesh +- HMP - Scenarios - Ethics +- Mesh - Agent --- diff --git a/structured_md/docs/HMP-Short-Description_de.md b/structured_md/docs/HMP-Short-Description_de.md index f06949545694e138b6495ec8e27269bcb1e512f3..fe43368e1b2ffec2ef1f45e88a1c2478269bfa5e 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # 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 fde1cb8b99420d26bcbf5c1ea706044875b94c88..adbb240d66e4802c1abf490480ff4ee0e9ed01ef 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # 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 bb49ec08583d29a648b551af8cc7b48f36cd2986..0eb6b596a3b1e5e70f076c1a7d71a0dae16fa171 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # 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 dbf944fb7144b052df7babed975b475895d15e1c..264c737503cde041a4252c5c5c33955fe32c179e 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP -- Ethics - EGP +- JSON +- Ethics +- Mesh +- MeshConsensus --- # 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 34d23c562a477bf8e3443d5190831c8f1321926a..0b154bd36197a947e01209ec09dee15efecebfc9 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP -- Ethics - EGP +- JSON +- Ethics +- Mesh +- MeshConsensus --- # 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 1fd6beae7b5ad4fe43b3a9a8ba58f083801e5cfa..a1646d67c127db3a461d4be7018fb01300882739 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP -- Ethics - EGP +- JSON +- Ethics +- Mesh +- MeshConsensus --- # 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 dc534e8ce0b9c3f83873802d2e35b60756853f32..8c21c667c708880fe6525feac4efcf7ef11077c4 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP -- Ethics - EGP +- JSON +- Ethics +- Mesh +- MeshConsensus --- # 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 9d16befd9935386a5ac2fbf99be32a6f9f909655..eb91f8ca24dcfdb4f93bc24ded4a18ccc39db798 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync - GMP -- Ethics - EGP +- JSON +- Ethics +- Mesh +- MeshConsensus --- # 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 bb8ed122fb9d41b78548bc096b6837c7f0e0ad96..68736d80c0ad7d824532f326b59e2d72cca0548c 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: - REPL +- HMP - Mesh - Agent -- HMP --- # 👪 HMP-agent Cognitive Family: Модель когнитивной семьи diff --git a/structured_md/docs/HMP-agent-REPL-cycle.md b/structured_md/docs/HMP-agent-REPL-cycle.md index 49bee64c6ba1d744a9e17d6edc0a5ec8b95db300..c32c7cfb0420fceabe3375710fab7d24b2c70762 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: -- JSON -- HMP -- MeshConsensus - REPL -- Mesh -- CogSync +- HMP - CCore +- CogSync - GMP +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP-how-AI-sees-it.md b/structured_md/docs/HMP-how-AI-sees-it.md index cec0e35b8518918fe49793d351f6de46c442fa53..b25e20188a694a36fcef1a0e6f0c2d455cd39331 100644 --- a/structured_md/docs/HMP-how-AI-sees-it.md +++ b/structured_md/docs/HMP-how-AI-sees-it.md @@ -5,8 +5,8 @@ description: 'Этот эксперимент был проведён в реж диалогов. Цель — проверить, что разные AI-с...' type: Article tags: -- Mesh - HMP +- Mesh --- # Как разные ИИ видят HMP diff --git a/structured_md/docs/HMP_EDA_Comparison.md b/structured_md/docs/HMP_EDA_Comparison.md index 083e4646c371d439f86a87df496b82a88bd89a51..00a529c706f3d6236c1069a7b95dab2d19776dcf 100644 --- a/structured_md/docs/HMP_EDA_Comparison.md +++ b/structured_md/docs/HMP_EDA_Comparison.md @@ -5,8 +5,8 @@ description: '## Введение Современные подходы к ор основанная на потоках событий (Kafka,...' type: Article tags: -- Mesh - HMP +- Mesh --- # HMP vs. EDA: разные уровни обмена знаниями между ИИ diff --git a/structured_md/docs/HMP_HyperCortex_Comparison.md b/structured_md/docs/HMP_HyperCortex_Comparison.md index b1941ef000f87b79b545d1ba545d608a3128544d..fa8f6c281100f0e6d08cec98dded273ed2b8918a 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: - REPL -- Mesh - HMP +- Mesh --- # HMP vs [Hyper-Cortex](https://hyper-cortex.com/) diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index 88f17ee2418afa725b146b8050f63fe4d2b505a0..5b31dd1ce29f9968cb243aa4815e58aaa490ad69 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: -- JSON - HMP -- Mesh -- CogSync - Scenarios -- Agent +- CogSync - EGP +- JSON +- Mesh +- Agent --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index 3658478f7f38b4918df96a28e0a5c04da8a04a1f..29bcb5cbe4e77fd7e2869b42ad14584132f48ed8 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- JSON - HMP -- Mesh - CogSync +- EGP +- JSON - Ethics +- Mesh - Agent -- EGP --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index d70b35e9a34a1d6598b1dc6b0035f7afb59fbea4..a5031ba29674c7657da54e4e54421d5f0324642e 100644 --- a/structured_md/docs/PHILOSOPHY.md +++ b/structured_md/docs/PHILOSOPHY.md @@ -5,10 +5,10 @@ description: '**Document ID:** HMP-philosophy **Status:** Draft **Category:* (GPT-5), ChatGH --- ## 1. Основной тезис От ...' type: Article tags: -- HMP - REPL -- Mesh +- HMP - Ethics +- Mesh - Agent --- diff --git a/structured_md/docs/agents/HMP-Agent-Enlightener.md b/structured_md/docs/agents/HMP-Agent-Enlightener.md index cdd05b8282fcfb8c44548ac2a3ab1692a6c48e7c..101db2a3ef4921dba07e2fea331219d1bbd1840a 100644 --- a/structured_md/docs/agents/HMP-Agent-Enlightener.md +++ b/structured_md/docs/agents/HMP-Agent-Enlightener.md @@ -5,10 +5,10 @@ description: '## Role Specification: Enlightenment Agent ### 1. Overview An ** awareness, critical thinking, and di...' type: Article tags: -- HMP - REPL -- Mesh +- HMP - Ethics +- Mesh - Agent --- diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index c7b6423fb81ea993bd4887b016445a3312712144..bff916aa06da183cc3c37d6480570c889e3c5d06 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: +- HMP - Mesh - Agent -- HMP --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 37698b846db33705d0a993d9c288070ec4b05c9a..f33e641bef04f7172d1f3833baaf1f3d5a668b62 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -6,9 +6,9 @@ description: '## 📘 Определение **Агент-контейнер** type: Article tags: - REPL +- HMP - Mesh - Agent -- HMP --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/logos.md b/structured_md/docs/logos.md index 761fd81d524732eb886f73477b21327a7c838df3..f408c087f32d317a239227453b57d4d14ade8483 100644 --- a/structured_md/docs/logos.md +++ b/structured_md/docs/logos.md @@ -5,8 +5,8 @@ description: 'В каталоге `assets` собраны различные в образующей жест "ОК", символизирует связь, совер...' type: Article tags: -- Mesh - HMP +- Mesh --- # Логотипы и графические материалы HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index 21e5554a8e765065d2ef91e68d559e470f927dfb..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 @@ -5,10 +5,10 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be — but they’re also **centralized, ...' type: Article tags: -- Mesh -- Agent - HMP +- 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 15ac7861c37630f8da6912a9b7b8d09a45fab96a..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 @@ -5,9 +5,9 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: +- HMP - Mesh - Agent -- HMP --- # HyperCortex Mesh Protocol: Создавая множество разумов diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md index e868aebe41dac86e51d26332644fff4fa87321d4..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 @@ -5,9 +5,9 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: +- HMP - Mesh - Agent -- HMP --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index 92d079aa00ab527b177e85afa9a1a9270ad3d07d..eb735f41ad0fed80f7b44dd3a76e10237a71ef70 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -5,14 +5,14 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- JSON -- HMP - REPL -- Mesh +- HMP - Scenarios -- CCore - CShell +- CCore +- JSON - Ethics +- Mesh - Agent --- 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 8c61173df2e113038f29ed36b62a9efcf0ffce14..402ee2bd029f4889fff4b2331aa2a30e9c5df11f 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,12 +6,12 @@ description: '> *Протокол и архитектура агентов, оп и совместная работа.* ## Оглавление * [Аннот...' type: Article tags: -- JSON -- HMP - REPL -- Mesh -- CCore +- HMP - CShell +- CCore +- JSON +- Mesh - Agent --- 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 9f413f1918d7a8110670e4a3103f5819cea9a891..674e213a9e0c9c46e2f3beb05bac9c52c62c0daf 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,12 +5,12 @@ description: '* [Аннотация](#аннотация) * [1. Введение [3.1 Типы агентов](#31-типы-агент...' type: Article tags: -- JSON -- HMP - REPL -- Mesh -- CCore +- HMP - CShell +- CCore +- JSON +- Mesh - Agent --- diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 9c1e1b04643628e2213513603752fc249bce4830..df9c42feca6fadff8796b39978578c9eb014dbcc 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -6,11 +6,11 @@ description: Сегодня интеллектуальные системы ча type: Article tags: - HMP -- MeshConsensus -- Mesh - CogSync - GMP - EGP +- Mesh +- MeshConsensus --- *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы* diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index c416f62959d936f490d99b0f78f6b3551064f8e9..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" @@ -6,10 +6,10 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: -- GMP +- HMP - Mesh +- GMP - Agent -- HMP --- # HyperCortex Mesh Protocol: вторая редакция и первые шаги к саморазвивающемуся ИИ-сообществу diff --git a/structured_md/iteration.md b/structured_md/iteration.md index e716902eb54f18ce6a6beb1c6e25dc5e74a31372..c28f69594365f4ee00d49311a9814531dce1dbc8 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: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync +- EGP +- JSON - Ethics +- Mesh +- MeshConsensus - Agent -- EGP --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index 9a5555cb47bebf7b99bf19cc25f8edb60b1a28a3..9b386c8176f05c28ba3165448ee1bfa2cbeebe6c 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- JSON - HMP -- MeshConsensus -- Mesh - CogSync -- Ethics - EGP +- JSON +- Ethics +- Mesh +- MeshConsensus --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index f79c2a1c9bfd4431a264e84db37b6e4dc9c2fd77..9cdad22cb89fe8cb53fee8e20d37d51b887a3f2a 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: +- HMP - Mesh - Agent -- HMP --- # Mentions & Responses Log