From 8ad918861a18a710bb92f7705923214eaa95c580 Mon Sep 17 00:00:00 2001 From: Claude SuperCharged Date: Mon, 26 Jan 2026 13:31:05 +0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Make=20codebase-indexer=20always-ac?= =?UTF-8?q?tive?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enhanced codebase-indexer to run automatically on ALL code-related tasks: - Added always-active status to codebase-indexer skill - Integrated into always-use-superpowers decision tree - Now runs first before any code work for 40-60% token reduction Benefits: - Automatic semantic codebase indexing - Intelligent file discovery - Reduced token usage - Better code understanding 🤖 Generated with Claude Code SuperCharged v2.0.0 --- skills/always-use-superpowers/SKILL.md | 10 ++++++++++ skills/codebase-indexer/skill.md | 4 +++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/skills/always-use-superpowers/SKILL.md b/skills/always-use-superpowers/SKILL.md index 5c6e6e34..6263ab46 100644 --- a/skills/always-use-superpowers/SKILL.md +++ b/skills/always-use-superpowers/SKILL.md @@ -56,6 +56,13 @@ You MUST: - Use before: Any design work, HTML/CSS, component creation, layouts - Priority: HIGH for any UI/UX work +#### 5. codebase-indexer (ALWAYS ACTIVE) +**When to use:** EVERY TASK involving code navigation, file searches, codebase understanding +- **ALWAYS RUN THIS FIRST** before any code-related task +- Use for: Finding files, understanding code structure, semantic search, 40-60% token reduction +- Priority: CRITICAL - Runs automatically on ALL code tasks +- Benefit: Drastically reduces token usage and provides intelligent code context + ### Auto-Trigger Conditions: The `always-use-superpowers` skill should automatically trigger when: @@ -69,6 +76,9 @@ The `always-use-superpowers` skill should automatically trigger when: ``` User sends message ↓ +Check: Is this code-related work? + ↓ YES → Invoke codebase-indexer (ALWAYS) + ↓ NO Check: Is this UI/UX work? ↓ YES → Invoke ui-ux-pro-max ↓ NO diff --git a/skills/codebase-indexer/skill.md b/skills/codebase-indexer/skill.md index d44598ed..9aa42d17 100644 --- a/skills/codebase-indexer/skill.md +++ b/skills/codebase-indexer/skill.md @@ -1,6 +1,8 @@ # Codebase Indexer -**Auto-invoke:** When user asks about codebase structure, wants to find files by concept, or needs semantic search through code. +**Status:** 🟢 **ALWAYS ACTIVE** - This skill runs automatically before ALL code-related tasks + +**Auto-invoke:** When user asks about codebase structure, wants to find files by concept, or needs semantic search through code. **ALWAYS RUNS FIRST for any code work.** **Description:** Smart codebase navigation system using semantic embeddings and token-efficient indexing. Enables concept-to-file mapping without reading entire codebase.