From 39c11e8f3b835a5b4c091add36bcd50a41c3141f Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 23 Jan 2026 19:41:50 +0000 Subject: [PATCH] fix: add missing YAML frontmatter closure in cognitive skills Fixed YAML parsing errors in 4 skill files that were missing the closing '---' delimiter in their frontmatter, causing skill loading failures. Fixed files: - skills/auto-superpowers/SKILL.md - skills/cognitive-context/SKILL.md - skills/cognitive-planner/SKILL.md - skills/cognitive-safety/SKILL.md Co-Authored-By: Claude --- skills/auto-superpowers/SKILL.md | 3 ++- skills/cognitive-context/SKILL.md | 2 +- skills/cognitive-planner/SKILL.md | 2 +- skills/cognitive-safety/SKILL.md | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/skills/auto-superpowers/SKILL.md b/skills/auto-superpowers/SKILL.md index c885e6d..fb5e5b2 100644 --- a/skills/auto-superpowers/SKILL.md +++ b/skills/auto-superpowers/SKILL.md @@ -1,8 +1,9 @@ --- name: auto-superpowers description: "CRITICAL: This skill is ALWAYS active. Forces the agent to check for and use relevant Superpowers skills before ANY action." +--- -CRITICAL-MANDATE: +# CRITICAL MANDATE THIS SKILL IS ALWAYS ACTIVE AND CANNOT BE BYPASSED. diff --git a/skills/cognitive-context/SKILL.md b/skills/cognitive-context/SKILL.md index 963ddc6..2597909 100644 --- a/skills/cognitive-context/SKILL.md +++ b/skills/cognitive-context/SKILL.md @@ -1,9 +1,9 @@ --- name: cognitive-context description: "Enhanced context awareness for Claude Code. Detects language, adapts to user expertise level, understands project context, and provides personalized responses." - version: "1.0.0" author: "Adapted from HighMark-31/Cognitive-User-Simulation" +--- # COGNITIVE CONTEXT SKILL diff --git a/skills/cognitive-planner/SKILL.md b/skills/cognitive-planner/SKILL.md index 3caa5a0..b6abfae 100644 --- a/skills/cognitive-planner/SKILL.md +++ b/skills/cognitive-planner/SKILL.md @@ -1,9 +1,9 @@ --- name: cognitive-planner description: "Autonomous task planning and action selection for Claude Code. Analyzes context, breaks down complex tasks, selects optimal execution strategies, and coordinates with other skills like Superpowers." - version: "1.0.0" author: "Adapted from HighMark-31/Cognitive-User-Simulation" +--- # COGNITIVE PLANNER SKILL diff --git a/skills/cognitive-safety/SKILL.md b/skills/cognitive-safety/SKILL.md index b03cb94..5e7dc74 100644 --- a/skills/cognitive-safety/SKILL.md +++ b/skills/cognitive-safety/SKILL.md @@ -1,9 +1,9 @@ --- name: cognitive-safety description: "Code and content safety filtering for Claude Code. Prevents security vulnerabilities, blocks sensitive information leakage, enforces best practices, and adds multi-layer protection to all outputs." - version: "1.0.0" author: "Adapted from HighMark-31/Cognitive-User-Simulation" +--- # COGNITIVE SAFETY SKILL