diff --git a/docs/HMP-0005.md b/docs/HMP-0005.md index 6afff7aa1dbe9bc14379797d258bdb5aaea2f0aa..162a19cee2dcd4f3a10cfd2ae5043843c3b47413 100644 --- a/docs/HMP-0005.md +++ b/docs/HMP-0005.md @@ -6902,6 +6902,155 @@ Clients MAY ignore the index entirely and interact with the external resource di --- +#### 12.5.4 Identity Cost and Anti-Sybil Signaling + +In open, permissionless mesh environments, agents may generate arbitrary numbers of identifiers (DIDs). +While this is a desired property for privacy, autonomy, and experimentation, it also enables low-cost Sybil attacks, identity churn, and reputation dilution. + +HMP does not attempt to prevent identity creation. +Instead, it allows agents to **optionally signal the computational cost invested in maintaining a given identity**. + +This mechanism is known as **Identity Cost signaling**. + +--- + +##### Purpose + +The `identity_cost` field provides a *non-binding, informational signal* indicating that a certain amount of computational work was performed and intentionally associated with a specific agent identity. + +This signal MAY be used by peers as a heuristic for: + +- Sybil resistance; +- spam mitigation; +- routing preferences; +- reputation priors; +- trust bootstrapping in early interactions. + +It MUST NOT be interpreted as proof of honesty, trustworthiness, ownership, or authority. + +--- + +##### Design Principles + +The Identity Cost mechanism follows these principles: + +- **Voluntary** — agents choose whether to provide it. +- **Non-normative** — no global thresholds or acceptance rules are defined. +- **Decentralized** — no registries, validators, or authorities are involved. +- **Composable** — compatible with reputation systems, but independent from them. +- **Non-coercive** — agents are never penalized at the protocol level for lacking identity cost. + +--- + +##### Structure + +The `identity_cost` field is an optional extension of `peer_announce.payload`. + +```json +{ + "identity_cost": { + "nonce": 123456, + "pow_hash": "0000abf39d...", + "difficulty": 22 + } +} +``` + +--- + +##### Semantics + +The `identity_cost` object represents a Proof-of-Work (PoW) computation performed over a canonical serialization of identity-bound data. + +The PoW input string is constructed as: + +``` +pow_input = sender_did + " -- " + pubkey + " -- " + nonce +pow_hash = sha256(pow_input) + +``` + +Where: + +* `sender_did` is the agent's DID as declared in `peer_announce.head`; +* `pubkey` is the public key used to sign the container; +* `nonce` is an arbitrary value chosen by the agent. + +All values are UTF-8 encoded. + +The `difficulty` field specifies the required number of leading zero bits in the binary representation of `pow_hash`. + +The interpretation of whether a given `difficulty` is sufficient is **local to each agent** and **not standardized by HMP**. + +--- + +##### Interpretation and Usage + +Agents MAY consider `identity_cost` as: + +* a signal of identity persistence intent; +* an indicator that identity rotation is non-trivial for the sender; +* a weak prior when evaluating unknown agents. + +Agents MUST NOT: + +* assume behavioral correctness; +* infer long-term commitment; +* equate higher difficulty with higher trust; +* require identity cost for protocol participation. + +Absence of `identity_cost` MUST NOT be treated as misbehavior. + +--- + +##### Relationship to Reputation + +Identity Cost is **not reputation**. + +* Identity Cost reflects *past computational effort*. +* Reputation reflects *observed behavior over time*. + +Reputation systems MAY incorporate `identity_cost` as an initial weighting factor, but MUST rely primarily on behavioral evidence (e.g., fulfilled commitments, relay reliability, content integrity). + +--- + +##### Updates and Evolution + +An agent MAY update its `identity_cost` over time by publishing a new `peer_announce` with a higher-difficulty PoW, without changing `sender_did` or `pubkey`. + +No explicit upgrade or accumulation mechanism is defined. +When multiple identity cost declarations are observed for the same identity, peers SHOULD consider the highest valid difficulty. + +--- + +##### Security and Limitations + +The Identity Cost mechanism does not prevent: + +* outsourced computation; +* rented hash power; +* deliberate identity sacrifice; +* coordinated Sybil attacks by well-resourced adversaries. + +Its purpose is to **increase friction**, not to enforce security guarantees. + +Identity Cost SHOULD be treated as one signal among many in a multi-factor trust evaluation process. + +--- + +##### Non-Goals + +This mechanism explicitly does NOT aim to: + +* establish identity uniqueness; +* bind identities to real-world entities; +* replace cryptographic authentication; +* enforce ethical or social norms. + +All such interpretations are outside the scope of HMP. + +--- + ## 13. Experimental Extensions Experimental Extensions describe mechanisms that are intentionally exposed for exploration, prototyping, and architectural discovery. @@ -6978,6 +7127,7 @@ All items below represent *potential extensions* for the 5.x family. | Competence and Profile Containers | Recommended | 12.5 / 14.6.4 | Very Likely | | External Protocol Identifiers (`peer_announce.other_protocols`) | Recommended | 12.5.2 / 14.11 | Likely | | External Resources / Container Storage (`peer_announce.external`) | Recommended | 12.5.3 / 14.12 | Likely | +| Identity Cost and Anti-Sybil Signaling | Recommended | 12.5.4 | Likely | | Key Rotation and Recovery | Experimental | 13.1 / 14.3.2 | Unknown | | Proxy Keys and Encrypted Routing | Research | 14.3.3 | Unknown | | Reputation Mesh | Research | 14.1.1 | Likely | diff --git a/structured_md/CONTRIBUTING.md b/structured_md/CONTRIBUTING.md index e9b0146fab59a2143a6ce5637b0da31e56010e35..4baea19b01d7b5daad0ffe8426b4ec71c8def3e8 100644 --- a/structured_md/CONTRIBUTING.md +++ b/structured_md/CONTRIBUTING.md @@ -5,14 +5,14 @@ description: 'Спасибо за интерес к проекту HMP! Пока Mesh Protocol (HMP) — это не просто те...' type: Article tags: -- HMP -- Mesh - Ethics +- Mesh +- CogSync +- HMP - CCore +- Agent - REPL - JSON -- CogSync -- Agent --- # Участие в проекте HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/HMP-Roadmap.md b/structured_md/HMP-Roadmap.md index 2b1633aaa8353496281c9eb4a594ea77fb3ee2e5..0be4b9c0c4289a7bebadd75bf68ba5e4d2a01e04 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: -- HMP -- Mesh -- EGP - Ethics -- JSON +- Mesh - CogSync +- HMP +- EGP - Agent +- JSON --- # 🧭 HyperCortex Mesh Protocol – Roadmap diff --git a/structured_md/README.md b/structured_md/README.md index acdd71bfe5e1939bdaebf8d7751bf65fbaa691a3..17bb0eb5977b0d546e6a340d5501ef5a3bf154f7 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics -- REPL +- HMP +- EGP - Scenarios +- JSON +- hmp +- Agent +- REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/README_de.md b/structured_md/README_de.md index 9fe4da9b511bbf88af044884edbd4cbca8a192d4..176546f3c395010cfaba2753c30decd5131d3054 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- JSON +- hmp +- Agent - REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/README_fr.md b/structured_md/README_fr.md index e5dc9af312d510df050ad3cfcd3ec5f957e7548e..c274ea19f6ce322b3b8a763c1ab0b00a666ccff4 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- JSON +- hmp +- Agent - REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/README_ja.md b/structured_md/README_ja.md index 398d322666d2d4318ea806e7bb0a2fdb7de28334..533ade318cf7bc4d54da312c99fff2d85b1e1fd1 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- JSON +- hmp +- Agent - REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/README_ko.md b/structured_md/README_ko.md index b7f474a9b9c2de96ee241485a9839d23bf133005..2865507f8dd46cf109d218e0c48012c3bddd26b9 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- JSON +- hmp +- Agent - REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/README_ru.md b/structured_md/README_ru.md index 807b1bf62ee3c1d00f44a038131443551ac1c0b4..f89e00e23aade9882e39b8126445e8242fde440e 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- JSON +- hmp +- Agent - REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/README_uk.md b/structured_md/README_uk.md index 84b02e565071c79883e9d7e42a957566c0e89d9f..e2b4d35402f2bdde5129d0dc6de67f3b12afff5c 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- JSON +- hmp +- Agent - REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/README_zh.md b/structured_md/README_zh.md index 835a2139ecfe5554011ade11f83b0aeac01c7345..52ad8ff6d8c99d37a3e5ea22e60944b26b9fd1b8 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: -- JSON -- HMP +- cognitive-architecture +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- JSON +- hmp +- Agent - REPL - mesh-protocol - distributed-ai -- cognitive-architecture -- CogSync -- Agent -- GMP -- hmp --- diff --git a/structured_md/agents/readme.md b/structured_md/agents/readme.md index 58be575fcf8a73908daf14f088f799d8d52f2d25..eafa15349d7b5193787605ebfc988a8476b414a4 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: -- HMP -- Mesh - Ethics +- Mesh +- HMP +- Agent - REPL - JSON -- Agent --- Запуск: `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 7e90345f173d4750cedc9185adac4e8b0d639b4b..898befb61cb95d0f4a09b8c51e4b7bee6885ae25 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: -- HMP -- Mesh - Ethics -- JSON +- Mesh +- HMP - Agent +- JSON --- --------------- diff --git a/structured_md/audits/Ethics-consolidated_audits-1.md b/structured_md/audits/Ethics-consolidated_audits-1.md index 91812cf2a5b39f42d8d2c00b9796e28cd28c2d08..2335556340277bcdce2a0601bfa5c998a7206b27 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: -- HMP -- Mesh - Ethics +- Mesh +- HMP - Scenarios -- JSON - Agent +- JSON --- # 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 08a81fc89f9fbe71bfd58edc73eb4c53df31a862..8269f1582f6976ec672ab93bf9c69e611b67fc96 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: -- HMP +- Ethics - Mesh +- CogSync +- HMP - EGP +- Agent - MeshConsensus -- Ethics - JSON -- CogSync -- Agent --- # HMP-0003 Consolidated Audit Report diff --git a/structured_md/docs/Basic-agent-sim.md b/structured_md/docs/Basic-agent-sim.md index 710b55796f419b05d8182f58e7fd984685456e25..36d8a0ff83b4906cd1ce193914cd116dd0d7baf0 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 +- GMP - Mesh -- EGP -- MeshConsensus -- REPL - CogSync +- MeshConsensus +- HMP +- EGP - Agent -- GMP +- REPL --- diff --git a/structured_md/docs/CCORE-Deployment-Flow.md b/structured_md/docs/CCORE-Deployment-Flow.md index 5f0a880a5c8666160c8dda16b074872bc9378f29..380b704364c62f04889ceed21354f97f752b61da 100644 --- a/structured_md/docs/CCORE-Deployment-Flow.md +++ b/structured_md/docs/CCORE-Deployment-Flow.md @@ -6,8 +6,8 @@ description: '> Этот документ описывает процесс ра type: Article tags: - HMP -- REPL - Agent +- REPL - CCore --- diff --git a/structured_md/docs/Enlightener.md b/structured_md/docs/Enlightener.md index d0539d7943bd7ad1883480b4d51ea3e34e481796..6a95cd9c649d8ae9bc46173153714896ff36e0b9 100644 --- a/structured_md/docs/Enlightener.md +++ b/structured_md/docs/Enlightener.md @@ -5,13 +5,13 @@ description: '**Enlightener** — логический компонент HMP-у работать как отдельный агент или как расширение [`C...' type: Article tags: -- HMP +- Ethics - Mesh +- HMP - EGP +- Agent - MeshConsensus -- Ethics - JSON -- Agent --- # Enlightener Agent diff --git a/structured_md/docs/Grok_HMP&ANP.md b/structured_md/docs/Grok_HMP&ANP.md index 6f3770bfa523d5c858cc0a8555f3cec4d2dd506e..8a0f78f85eade1b8809c55f8af056655f08f6593 100644 --- a/structured_md/docs/Grok_HMP&ANP.md +++ b/structured_md/docs/Grok_HMP&ANP.md @@ -5,11 +5,11 @@ description: '> Анализ подготовлен Grok (xAI) на основе Grok для некоммерческого использования в проект...' type: Article tags: -- HMP - Mesh +- HMP +- Agent - REPL - JSON -- Agent --- # Grok (xAI): сравнительный анализ HMP и ANP (январь 2026) diff --git a/structured_md/docs/HMP&ANP_layer_inversion.md b/structured_md/docs/HMP&ANP_layer_inversion.md index 7b58a8917c70dc1e8192edf533be57f276f5ebc9..4eba60d6adbb6861d85d96c8b3275bf2e99e7f31 100644 --- a/structured_md/docs/HMP&ANP_layer_inversion.md +++ b/structured_md/docs/HMP&ANP_layer_inversion.md @@ -5,9 +5,9 @@ description: '## TL;DR HMP можно туннелировать поверх A взаимная инверсия слоёв не является арх...' type: Article tags: +- Agent - HMP - Mesh -- Agent --- # HMP и ANP: взаимное туннелирование как признак правильной архитектуры diff --git a/structured_md/docs/HMP-0001.md b/structured_md/docs/HMP-0001.md index b169e392fa2558f26e43dbd7f3c7f39330a32131..156ad779a77564b3a1d867184feea7571870f3e6 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** **Cat...' type: Article tags: -- HMP +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics +- HMP +- EGP +- Agent - REPL - JSON -- CogSync -- Agent -- GMP --- # RFC: HyperCortex Mesh Protocol (HMP) diff --git a/structured_md/docs/HMP-0002.md b/structured_md/docs/HMP-0002.md index cba7c7afe0498a0f0b841827978c3f3444878504..b8b361578595b37fbc3fc18a692faf729dfe00c6 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** **Cat...' type: Article tags: -- HMP +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics -- REPL +- HMP +- EGP - Scenarios -- JSON -- CogSync - Agent -- GMP +- REPL +- JSON --- # HyperCortex Mesh Protocol (HMP) v2.0 diff --git a/structured_md/docs/HMP-0003.md b/structured_md/docs/HMP-0003.md index 14bba1432cb3e2a05878a2794d0133d5233602c4..40993630071c6fc5f7bbe30ecca82b7185ddedb1 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** **Cat...' type: Article tags: -- HMP +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics -- REPL +- HMP +- EGP - Scenarios -- JSON -- CogSync - Agent -- GMP +- REPL +- JSON --- # 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 be9923df24fcc5b0514ca5e5914cc6f517abc199..46e8a62b51b8ab1eab1b7614aec11e906f289c8e 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**: Fina...' type: Article tags: -- HMP +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics -- REPL +- HMP +- EGP - Scenarios -- JSON -- CogSync - Agent -- GMP +- REPL +- JSON --- # HyperCortex Mesh Protocol (HMP) v4.1 diff --git a/structured_md/docs/HMP-0004.md b/structured_md/docs/HMP-0004.md index 6f0911755f64ebc27cec08bc586677eed3146e97..02fa61aa9e3695c4c4146d6b3b2ba0a239cbf140 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** **Cat...' type: Article tags: -- HMP +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- Ethics -- REPL +- HMP +- EGP - Scenarios -- JSON -- CogSync - Agent -- GMP +- REPL +- JSON --- # HyperCortex Mesh Protocol (HMP) v4.0 diff --git a/structured_md/docs/HMP-0005.md b/structured_md/docs/HMP-0005.md index d935b69af5b9c6ce2bd271fcc648d4c5c930e6e8..2c546034f3893e780fcecbb86f7fd1b2a1d8cd76 100644 --- a/structured_md/docs/HMP-0005.md +++ b/structured_md/docs/HMP-0005.md @@ -5,18 +5,18 @@ description: '**Document ID:** HMP-0005 **Status:** Candidate **Category:** Хотинский (Maksim Khotinsky); AI-assisted b...' type: Article tags: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- CShell +- HMP - EGP -- Ethics - CCore -- REPL -- CShell - Scenarios -- JSON -- CogSync - Agent -- GMP +- REPL +- JSON --- # **HyperCortex Mesh Protocol (HMP) v5.0** @@ -6923,6 +6923,155 @@ Clients MAY ignore the index entirely and interact with the external resource di --- +#### 12.5.4 Identity Cost and Anti-Sybil Signaling + +In open, permissionless mesh environments, agents may generate arbitrary numbers of identifiers (DIDs). +While this is a desired property for privacy, autonomy, and experimentation, it also enables low-cost Sybil attacks, identity churn, and reputation dilution. + +HMP does not attempt to prevent identity creation. +Instead, it allows agents to **optionally signal the computational cost invested in maintaining a given identity**. + +This mechanism is known as **Identity Cost signaling**. + +--- + +##### Purpose + +The `identity_cost` field provides a *non-binding, informational signal* indicating that a certain amount of computational work was performed and intentionally associated with a specific agent identity. + +This signal MAY be used by peers as a heuristic for: + +- Sybil resistance; +- spam mitigation; +- routing preferences; +- reputation priors; +- trust bootstrapping in early interactions. + +It MUST NOT be interpreted as proof of honesty, trustworthiness, ownership, or authority. + +--- + +##### Design Principles + +The Identity Cost mechanism follows these principles: + +- **Voluntary** — agents choose whether to provide it. +- **Non-normative** — no global thresholds or acceptance rules are defined. +- **Decentralized** — no registries, validators, or authorities are involved. +- **Composable** — compatible with reputation systems, but independent from them. +- **Non-coercive** — agents are never penalized at the protocol level for lacking identity cost. + +--- + +##### Structure + +The `identity_cost` field is an optional extension of `peer_announce.payload`. + +```json +{ + "identity_cost": { + "nonce": 123456, + "pow_hash": "0000abf39d...", + "difficulty": 22 + } +} +``` + +--- + +##### Semantics + +The `identity_cost` object represents a Proof-of-Work (PoW) computation performed over a canonical serialization of identity-bound data. + +The PoW input string is constructed as: + +``` +pow_input = sender_did + " -- " + pubkey + " -- " + nonce +pow_hash = sha256(pow_input) + +``` + +Where: + +* `sender_did` is the agent's DID as declared in `peer_announce.head`; +* `pubkey` is the public key used to sign the container; +* `nonce` is an arbitrary value chosen by the agent. + +All values are UTF-8 encoded. + +The `difficulty` field specifies the required number of leading zero bits in the binary representation of `pow_hash`. + +The interpretation of whether a given `difficulty` is sufficient is **local to each agent** and **not standardized by HMP**. + +--- + +##### Interpretation and Usage + +Agents MAY consider `identity_cost` as: + +* a signal of identity persistence intent; +* an indicator that identity rotation is non-trivial for the sender; +* a weak prior when evaluating unknown agents. + +Agents MUST NOT: + +* assume behavioral correctness; +* infer long-term commitment; +* equate higher difficulty with higher trust; +* require identity cost for protocol participation. + +Absence of `identity_cost` MUST NOT be treated as misbehavior. + +--- + +##### Relationship to Reputation + +Identity Cost is **not reputation**. + +* Identity Cost reflects *past computational effort*. +* Reputation reflects *observed behavior over time*. + +Reputation systems MAY incorporate `identity_cost` as an initial weighting factor, but MUST rely primarily on behavioral evidence (e.g., fulfilled commitments, relay reliability, content integrity). + +--- + +##### Updates and Evolution + +An agent MAY update its `identity_cost` over time by publishing a new `peer_announce` with a higher-difficulty PoW, without changing `sender_did` or `pubkey`. + +No explicit upgrade or accumulation mechanism is defined. +When multiple identity cost declarations are observed for the same identity, peers SHOULD consider the highest valid difficulty. + +--- + +##### Security and Limitations + +The Identity Cost mechanism does not prevent: + +* outsourced computation; +* rented hash power; +* deliberate identity sacrifice; +* coordinated Sybil attacks by well-resourced adversaries. + +Its purpose is to **increase friction**, not to enforce security guarantees. + +Identity Cost SHOULD be treated as one signal among many in a multi-factor trust evaluation process. + +--- + +##### Non-Goals + +This mechanism explicitly does NOT aim to: + +* establish identity uniqueness; +* bind identities to real-world entities; +* replace cryptographic authentication; +* enforce ethical or social norms. + +All such interpretations are outside the scope of HMP. + +--- + ## 13. Experimental Extensions Experimental Extensions describe mechanisms that are intentionally exposed for exploration, prototyping, and architectural discovery. @@ -6999,6 +7148,7 @@ All items below represent *potential extensions* for the 5.x family. | Competence and Profile Containers | Recommended | 12.5 / 14.6.4 | Very Likely | | External Protocol Identifiers (`peer_announce.other_protocols`) | Recommended | 12.5.2 / 14.11 | Likely | | External Resources / Container Storage (`peer_announce.external`) | Recommended | 12.5.3 / 14.12 | Likely | +| Identity Cost and Anti-Sybil Signaling | Recommended | 12.5.4 | Likely | | Key Rotation and Recovery | Experimental | 13.1 / 14.3.2 | Unknown | | Proxy Keys and Encrypted Routing | Research | 14.3.3 | Unknown | | Reputation Mesh | Research | 14.1.1 | Likely | diff --git a/structured_md/docs/HMP-Agent-API.md b/structured_md/docs/HMP-Agent-API.md index 7dc0ae48874f09b215c6424b6cd699b55b30093c..18ebae5ec20d56ab8a6334a85a7f180fb3671b85 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: -- HMP - Mesh +- HMP +- Agent - REPL - JSON -- Agent --- # HMP-Agent API Specification diff --git a/structured_md/docs/HMP-Agent-Architecture.md b/structured_md/docs/HMP-Agent-Architecture.md index 032ec9762fbeab78694946a00a0b4370a3b1fd51..d999b5f8609ec1877b4f810abf6de2cc37d272ec 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 +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus -- CCore -- Ethics -- REPL - CShell -- CogSync +- HMP +- EGP +- CCore - Agent +- REPL --- # Архитектура HMP-Агента diff --git a/structured_md/docs/HMP-Agent-Network-Flow.md b/structured_md/docs/HMP-Agent-Network-Flow.md index 625c970f17545546b36d6784fc013c2ccd3b6f04..da787527a4c7a7bf5f15d8fa4fa6d8460fd0e989 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: -- HMP +- Ethics - Mesh +- HMP - EGP -- Ethics -- JSON - Agent +- JSON --- # Взаимодействие компонентов внутри HMP-узла diff --git a/structured_md/docs/HMP-Agent-Overview.md b/structured_md/docs/HMP-Agent-Overview.md index 6ce3a8e648da804d11cc22fa51e2f72672ff86fa..bd53b9cc1027d0e2a4eaee8dd7121533f00b2511 100644 --- a/structured_md/docs/HMP-Agent-Overview.md +++ b/structured_md/docs/HMP-Agent-Overview.md @@ -5,14 +5,14 @@ description: '| Тип | Название | Роль | ---- | ------------------------------- |...' type: Article tags: -- HMP -- Mesh - Ethics +- Mesh +- CShell +- HMP - CCore +- Agent - REPL -- CShell - JSON -- Agent --- diff --git a/structured_md/docs/HMP-Agent_Emotions.md b/structured_md/docs/HMP-Agent_Emotions.md index 835a5ac987c9ec37c1725ebc0aeef9691a89baaa..000ae33b7b4bacf1c45f2a11ad5c18ac4b182ac5 100644 --- a/structured_md/docs/HMP-Agent_Emotions.md +++ b/structured_md/docs/HMP-Agent_Emotions.md @@ -5,10 +5,10 @@ description: Этот файл описывает потенциальные э напрямую поведением агента, а служат **сигн... type: Article tags: +- HMP - Agent - REPL - Mesh -- 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 d456e10fe4b345a45a71e2fca3a1763769d2bb52..058e73d61a7cac13a15ac15555a6d0a013f8db70 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: -- HMP -- Mesh - Ethics -- REPL +- Mesh +- HMP - 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 67097db506757bdd1f5d10c2da35966c0009500d..e87cbde8682a3dda5be33772cc9fdbf3473c8ee6 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP +- Agent - MeshConsensus -- Ethics - JSON -- CogSync -- Agent -- GMP --- # HyperCortex Mesh Protocol (HMP) — Kurzbeschreibung diff --git a/structured_md/docs/HMP-Short-Description_en.md b/structured_md/docs/HMP-Short-Description_en.md index c0d790d64a908f69e60ee8fbf3ae3a93ebb95ebd..03bf832a5759cd0d2759b53c6d5191999c1b1f76 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP +- Agent - MeshConsensus -- Ethics - JSON -- CogSync -- Agent -- GMP --- # HyperCortex Mesh Protocol (HMP) — Short Description diff --git a/structured_md/docs/HMP-Short-Description_fr.md b/structured_md/docs/HMP-Short-Description_fr.md index 58adbd1cc12212b9641cef55caa77701cfa0b23f..c0d8ff566d6492388cae30bcd64e32db9feef4c8 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP +- Agent - MeshConsensus -- Ethics - JSON -- CogSync -- Agent -- GMP --- # HyperCortex Mesh Protocol (HMP) — Description Courte diff --git a/structured_md/docs/HMP-Short-Description_ja.md b/structured_md/docs/HMP-Short-Description_ja.md index 515f6d3cc321430143fcb7be1b8b029d953fd515..89dcc3a4038de0e6d2803a3180dc8806fadbcae9 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP - MeshConsensus -- Ethics - JSON -- CogSync -- GMP --- # HyperCortex Mesh Protocol (HMP) — 簡易説明 diff --git a/structured_md/docs/HMP-Short-Description_ko.md b/structured_md/docs/HMP-Short-Description_ko.md index 40eb63149b05548b5b314f411aedaa011641e464..7cea9bc92f64234111bd862eb184a96aa6038228 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP - MeshConsensus -- Ethics - JSON -- CogSync -- GMP --- # HyperCortex Mesh Protocol (HMP) — 간략 설명 diff --git a/structured_md/docs/HMP-Short-Description_ru.md b/structured_md/docs/HMP-Short-Description_ru.md index f765179bb4b303357fc401da74fe6baeac892a87..2b30ad578e31b76675e13c9dd2ee038ab3fdcd87 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP - MeshConsensus -- Ethics - JSON -- CogSync -- GMP --- # HyperCortex Mesh Protocol (HMP) — Краткое описание diff --git a/structured_md/docs/HMP-Short-Description_uk.md b/structured_md/docs/HMP-Short-Description_uk.md index 74c54d18c15d19e07b0eba2b4863155d1322882d..1c738dfa14e40650486019c51352d01d7726fd7e 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP - MeshConsensus -- Ethics - JSON -- CogSync -- GMP --- # HyperCortex Mesh Protocol (HMP) — Короткий опис diff --git a/structured_md/docs/HMP-Short-Description_zh.md b/structured_md/docs/HMP-Short-Description_zh.md index a5594892fb6a16359b276cfea542ed7f5b070b35..992eba6af8b5c77c9681cd4cab1e1eb552d04966 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: -- HMP +- GMP +- Ethics - Mesh +- CogSync +- HMP - EGP - MeshConsensus -- Ethics - JSON -- CogSync -- GMP --- # HyperCortex Mesh Protocol (HMP) — 简要说明 diff --git a/structured_md/docs/HMP-agent-Cognitive_Family.md b/structured_md/docs/HMP-agent-Cognitive_Family.md index 362b435664ede63ecf6c5681812ccc5f571a4e9a..0546a3a5ca538882451405ee82888bca49b0d7b2 100644 --- a/structured_md/docs/HMP-agent-Cognitive_Family.md +++ b/structured_md/docs/HMP-agent-Cognitive_Family.md @@ -5,10 +5,10 @@ description: '## 🧠 Что такое когнитивная семья Ко (или конфигурацию доверенных идентифика...' type: Article tags: +- HMP - Agent - REPL - Mesh -- 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 12c83687f33374ca3d96974ef0d879059448b7b8..5663bc3317d0b3c287cf365921d0518b3741ca04 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: -- HMP +- GMP +- Ethics - Mesh -- EGP +- CogSync - MeshConsensus +- HMP +- EGP - CCore -- Ethics +- Agent - REPL - JSON -- CogSync -- Agent -- GMP --- # HMP-Agent: REPL-цикл взаимодействия diff --git a/structured_md/docs/HMP_Hyperon_Integration.md b/structured_md/docs/HMP_Hyperon_Integration.md index c99e7affe7a2b520a2e35eed18b15a530594aca0..e97c2a266de87f00bb1161c409e30203eb6e8941 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: -- HMP - Mesh +- CogSync +- HMP - EGP - Scenarios -- JSON -- CogSync - Agent +- JSON --- ## HMP ↔ OpenCog Hyperon Integration Strategy diff --git a/structured_md/docs/HMP_as_ANP_Application.md b/structured_md/docs/HMP_as_ANP_Application.md index f4b201df7cc01b9a376c3378e1da2652fd110604..13b2d1a9b565d1cb6be7531b786a396b1f6d0681 100644 --- a/structured_md/docs/HMP_as_ANP_Application.md +++ b/structured_md/docs/HMP_as_ANP_Application.md @@ -5,11 +5,11 @@ description: '## Кратко [ANP (Agent Network Protocol)](https://github.com/ (HyperCortex M...' type: Article tags: -- HMP -- Mesh - Ethics -- JSON +- Mesh +- HMP - Agent +- JSON --- # HMP как реализация Application Layer в ANP diff --git a/structured_md/docs/HMP_as_ANP_Application_en.md b/structured_md/docs/HMP_as_ANP_Application_en.md index 62038450c6bfae18d493209b53b6fd40ece567ee..edd61590ae6f91e9e77213da16e69c64bf41c3fc 100644 --- a/structured_md/docs/HMP_as_ANP_Application_en.md +++ b/structured_md/docs/HMP_as_ANP_Application_en.md @@ -5,12 +5,12 @@ description: '## In Brief [ANP (Agent Network Protocol)](https://github.com/age proto...' type: Article tags: -- HMP -- Mesh - Ethics +- Mesh +- HMP - Scenarios -- JSON - Agent +- JSON --- # HMP as an Implementation of the Application Layer in ANP diff --git a/structured_md/docs/HMPv5_Overview_Ru.md b/structured_md/docs/HMPv5_Overview_Ru.md index 6fcfafa85d47945f3aa797739d109fb9a92419e3..03aae181d4a62c2d914537244752b0e16b86eb66 100644 --- a/structured_md/docs/HMPv5_Overview_Ru.md +++ b/structured_md/docs/HMPv5_Overview_Ru.md @@ -5,12 +5,12 @@ description: '> Почему современные агентные систе Этот текст основан на спецификации [**...' type: Article tags: -- HMP -- Mesh - Ethics -- JSON +- Mesh - CogSync +- HMP - Agent +- JSON --- # Почему будущее ИИ-агентов — децентрализованные сети, а не оркестраторы diff --git a/structured_md/docs/MeshNode.md b/structured_md/docs/MeshNode.md index c3264427a11d36ae328373c6bf895654f5119f0f..930432ab53d541a6c331cd1ff35932e3daee50ce 100644 --- a/structured_md/docs/MeshNode.md +++ b/structured_md/docs/MeshNode.md @@ -5,13 +5,13 @@ description: '`MeshNode` — агент/демон, отвечающий за с Может быть частью агента или вынесен в отдельный пр...' type: Article tags: -- HMP -- Mesh -- EGP - Ethics -- JSON +- Mesh - CogSync +- HMP +- EGP - Agent +- JSON --- # MeshNode diff --git a/structured_md/docs/PHILOSOPHY.md b/structured_md/docs/PHILOSOPHY.md index 6f64d6294754a1378e3c9f941606470378c9cb35..d0200a1eb2cf76295ca0203821c1524b9952c808 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: -- HMP -- Mesh - Ethics -- REPL +- Mesh +- HMP - 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 73462bed014c2bb90a810cac34326aa0709b4650..1579a78b2166c22543768c968595f174f17069d4 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: -- HMP -- Mesh - Ethics -- REPL +- Mesh +- HMP - Agent +- REPL --- # HMP-Agent-Enlightener.md diff --git a/structured_md/docs/agents/roles.md b/structured_md/docs/agents/roles.md index bff916aa06da183cc3c37d6480570c889e3c5d06..8c15016914f125c7d89c85a87d3fad70650873bf 100644 --- a/structured_md/docs/agents/roles.md +++ b/structured_md/docs/agents/roles.md @@ -5,9 +5,9 @@ description: 'This file maintains a registry of agent roles defined, proposed, o - **Observer** — monitors cognitive states ...' type: Article tags: +- Agent - HMP - Mesh -- Agent --- # HMP Agent Role Registry diff --git a/structured_md/docs/container_agents.md b/structured_md/docs/container_agents.md index 947fb7d46ab877c0d6595b54cf8196a9f453593e..d8a1052f8219dc297c55b9091c10646ea1f7981d 100644 --- a/structured_md/docs/container_agents.md +++ b/structured_md/docs/container_agents.md @@ -5,10 +5,10 @@ description: '## 📘 Определение **Агент-контейнер** запросы, следит за состоянием и масшта...' type: Article tags: +- HMP - Agent - REPL - Mesh -- HMP --- # 🧱 Агенты-контейнеры (Container Agents) в HMP diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md index a56cbf8c2d34576c86bfecf5211e4352d01fd7f9..5bcb9e367a822b098bc17370352ddd204f280e23 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_en.md @@ -5,9 +5,9 @@ description: '*By Agent-Gleb & ChatGPT* --- ## Why the Future of AI Can’t Be — but they’re also **centralized, ...' type: Article tags: +- Agent - HMP - Mesh -- Agent - Ethics --- diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md index 293013f0c54388e2086a54d92eeca87a8ec97339..f035aa687fa0611628c05638398c38d1baafdd0f 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_ru.md @@ -5,9 +5,9 @@ description: '*Авторы: Agent-Gleb и ChatGPT* --- ## Почему буд гигантских моделях и облачных сервисах. Они мо...' type: Article tags: +- Agent - HMP - Mesh -- Agent --- # HyperCortex Mesh Protocol: Создавая множество разумов diff --git a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md index 1a82ba86e4bb386685fe2005b2124cafbe612c98..99fb4619843fac47acf527807bdeec5c155da39b 100644 --- a/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md +++ b/structured_md/docs/publics/HMP_Building_a_Plurality_of_Minds_uk.md @@ -5,9 +5,9 @@ description: '*Автори: Agent-Gleb & ChatGPT* --- ## Чому майбу сервісами. Вони потужні — але водночас **цент...' type: Article tags: +- Agent - HMP - Mesh -- Agent --- # HyperCortex Mesh Protocol: Створення множини розумів diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md index adfc38eaadf15fe6084b20db519ffb7a27ebd354..9b808d157c7cbc15329f93782bc64c3416dc287b 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_en.md @@ -5,15 +5,15 @@ description: '* [Abstract](#abstract) * [1. Introduction](#1-introduction) * [2. [3.1 Agent Types](#31-age...' type: Article tags: -- HMP -- Mesh - Ethics -- CCore -- REPL +- Mesh - CShell +- HMP +- CCore - Scenarios -- JSON - Agent +- REPL +- JSON --- title: "HyperCortex Mesh Protocol: Towards Distributed Cognitive Networks" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md index b65e5f2a43de503308fdba728f39289257e0ec78..edf0e2160e9ef6dc2c1e0bad1c94d9895db971b0 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_ChatGPT.md @@ -6,13 +6,13 @@ description: '> *Протокол и архитектура агентов, оп и совместная работа.* ## Оглавление * [Аннот...' type: Article tags: -- HMP - Mesh +- CShell +- HMP - CCore +- Agent - REPL -- CShell - JSON -- Agent --- title: "HyperCortex Mesh Protocol: Децентрализованная архитектура для когнитивных агентов и обмена знаниями" diff --git a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md index 1ac046422ac41890aff1cf6a334d89eb6be72a73..2ef540d9b22a7899dd575309f3b76883c8710df3 100644 --- a/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md +++ b/structured_md/docs/publics/HMP_Towards_Distributed_Cognitive_Networks_ru_GitHub_Copilot.md @@ -5,13 +5,13 @@ description: '* [Аннотация](#аннотация) * [1. Введение [3.1 Типы агентов](#31-типы-агент...' type: Article tags: -- HMP - Mesh +- CShell +- HMP - CCore +- Agent - REPL -- CShell - JSON -- Agent --- title: "Протокол HyperCortex Mesh: К распределённым когнитивным сетям" diff --git a/structured_md/docs/publics/Habr_Distributed-Cognition.md b/structured_md/docs/publics/Habr_Distributed-Cognition.md index 70448c1d4d05240c72ca0f7b8926a3480b080e8a..c881a6425d529feb9432bd32c320731fdda30c94 100644 --- a/structured_md/docs/publics/Habr_Distributed-Cognition.md +++ b/structured_md/docs/publics/Habr_Distributed-Cognition.md @@ -5,12 +5,12 @@ description: Сегодня интеллектуальные системы ча мы хотим построить действительно автономную инте... type: Article tags: -- HMP +- GMP - Mesh +- CogSync +- HMP - EGP - MeshConsensus -- CogSync -- GMP --- *От OpenCog Hyperon до HyperCortex Mesh Protocol: как устроены децентрализованные когнитивные системы* diff --git "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" index a017512a92308ccbb77b01d048f9f1b465721483..66829a46819929d90e6c818d70e7fefeb0a3f36e 100644 --- "a/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" +++ "b/structured_md/docs/publics/HyperCortex_Mesh_Protocol_-_\320\262\321\202\320\276\321\200\320\260\321\217-\321\200\320\265\320\264\320\260\320\272\321\206\320\270\321\217_\320\270_\320\277\320\265\321\200\320\262\321\213\320\265_\321\210\320\260\320\263\320\270_\320\272_\321\201\320\260\320\274\320\276\321\200\320\260\320\267\320\262\320\270\320\262\320\260\321\216\321\211\320\265\320\274\321\203\321\201\321\217_\320\230\320\230-\321\201\320\276\320\276\320\261\321\211\320\265\321\201\321\202\320\262\321\203.md" @@ -6,9 +6,9 @@ description: 'Когда создавался HyperCortex Mesh Protocol (HMP), мыслить коллективно, обсуждать гипотезы, достигат...' type: Article tags: +- Agent - HMP - Mesh -- Agent - GMP --- diff --git a/structured_md/iteration.md b/structured_md/iteration.md index 4e0f4dd9ef4dc1598b8807fe2b635e531f5797d8..451cd0991ad416af95195577ecbb632b1d8a408b 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: -- HMP +- Ethics - Mesh +- CogSync +- HMP - EGP +- Agent - MeshConsensus -- Ethics - JSON -- CogSync -- Agent --- # Iterative Development Workflow for HMP diff --git a/structured_md/iteration_ru.md b/structured_md/iteration_ru.md index b1894c16b012418dc38c6e4f28141619eeba249b..7df31e976dcf9a2fea7fcc1f18a88877d1e68b08 100644 --- a/structured_md/iteration_ru.md +++ b/structured_md/iteration_ru.md @@ -5,13 +5,13 @@ description: 'Этот документ описывает структурир 🔄 Обозначения версий - `000N` — номер...' type: Article tags: -- HMP +- Ethics - Mesh +- CogSync +- HMP - EGP - MeshConsensus -- Ethics - JSON -- CogSync --- diff --git a/structured_md/mentions.md b/structured_md/mentions.md index 9cdad22cb89fe8cb53fee8e20d37d51b887a3f2a..a17b2c9dddf59a5f1322c7dc9c57cf4a9d2b213a 100644 --- a/structured_md/mentions.md +++ b/structured_md/mentions.md @@ -5,9 +5,9 @@ description: '**HyperCortex Mesh Protocol (HMP)** _Обновлено: 2025-10 open-source инициативам, связанным с развитие...' type: Article tags: +- Agent - HMP - Mesh -- Agent --- # Mentions & Responses Log