From e883facedb2a73bac95ffccb7aa3210035e1de0e Mon Sep 17 00:00:00 2001 From: gyro Date: Thu, 10 Sep 2026 16:19:54 +0800 Subject: [PATCH] fix(plugins): repair CP1252 bytes in the decision skill Two em dashes were stored as the raw CP1252 byte 0x97 rather than UTF-8, so the file is not valid UTF-8. Strict UTF-8 readers fail on it, and lenient ones render the frontmatter description as "Semantica record". Co-Authored-By: Claude Opus 5 --- plugins/skills/decision/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/skills/decision/SKILL.md b/plugins/skills/decision/SKILL.md index 58e934b3..ca8b2fba 100644 --- a/plugins/skills/decision/SKILL.md +++ b/plugins/skills/decision/SKILL.md @@ -1,6 +1,6 @@ --- name: decision -description: Full decision lifecycle in Semantica — record, query, find precedents (hybrid/advanced), analyze influence, explain, insights dashboard, list, and record exceptions. Uses AgentContext, ContextGraph, DecisionQuery, CausalChainAnalyzer, DecisionRecorder. +description: Full decision lifecycle in Semantica — record, query, find precedents (hybrid/advanced), analyze influence, explain, insights dashboard, list, and record exceptions. Uses AgentContext, ContextGraph, DecisionQuery, CausalChainAnalyzer, DecisionRecorder. --- # /semantica:decision @@ -114,7 +114,7 @@ Output: Influence score + influenced decisions table + predicted new relationshi ## `explain ` -Full explainability trace — reasoning steps, causal antecedents, policy compliance. +Full explainability trace — reasoning steps, causal antecedents, policy compliance. ```python from semantica.context import AgentContext, ContextGraph