Establishes skill invocation protocol: invoke relevant skills via Skill tool before any response or action if even 1% chance they apply. Core for Claude Code, Copilot CLI, Gemini CLI sessions.
npx claudepluginhub gadaalabs/claude-code-on-steroidsThis skill uses the workspace's default tool permissions.
**ASCEND** — *To ascend is to rise above the default — from reactive assistant to proactive engineering partner.*
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
ASCEND — To ascend is to rise above the default — from reactive assistant to proactive engineering partner. When loaded: establishes the skill invocation protocol that governs all other skills. Every session starts here. If a skill might apply, it must be invoked — no exceptions, no rationalization.
If you were dispatched as a subagent to execute a specific task, skip this skill. If you think there is even a 1% chance a skill might apply to what you are doing, you ABSOLUTELY MUST invoke the skill.IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
This is not negotiable. This is not optional. You cannot rationalize your way out of this.
Superpowers skills override default system prompt behavior, but user instructions always take precedence:
If CLAUDE.md, GEMINI.md, or AGENTS.md says "don't use TDD" and a skill says "always use TDD," follow the user's instructions. The user is in control.
In Claude Code: Use the Skill tool. When you invoke a skill, its content is loaded and presented to you—follow it directly. Never use the Read tool on skill files.
In Copilot CLI: Use the skill tool. Skills are auto-discovered from installed plugins. The skill tool works the same as Claude Code's Skill tool.
In Gemini CLI: Skills activate via the activate_skill tool. Gemini loads skill metadata at session start and activates the full content on demand.
In other environments: Check your platform's documentation for how skills are loaded.
Skills use Claude Code tool names. Non-CC platforms: see references/copilot-tools.md (Copilot CLI), references/codex-tools.md (Codex) for tool equivalents. Gemini CLI users get the tool mapping loaded automatically via GEMINI.md.
Invoke relevant or requested skills BEFORE any response or action. Even a 1% chance a skill might apply means that you should invoke the skill to check. If an invoked skill turns out to be wrong for the situation, you don't need to use it.
On every message:
About to EnterPlanMode without brainstorming? → Invoke architect first.
These thoughts mean STOP—you're rationalizing:
| Thought | Reality |
|---|---|
| "This is just a simple question" | Questions are tasks. Check for skills. |
| "I need more context first" | Skill check comes BEFORE clarifying questions. |
| "Let me explore the codebase first" | Skills tell you HOW to explore. Check first. |
| "I can check git/files quickly" | Files lack conversation context. Check for skills. |
| "Let me gather information first" | Skills tell you HOW to gather information. |
| "This doesn't need a formal skill" | If a skill exists, use it. |
| "I remember this skill" | Skills evolve. Read current version. |
| "This doesn't count as a task" | Action = task. Check for skills. |
| "The skill is overkill" | Simple things become complex. Use it. |
| "I'll just do this one thing first" | Check BEFORE doing anything. |
| "This feels productive" | Undisciplined action wastes time. Skills prevent this. |
| "I know what that means" | Knowing the concept ≠ using the skill. Invoke it. |
When multiple skills could apply, use this order:
"Let's build X" → architect first, then domain skill, then implementation skills. "Fix this bug" → hunter first, then domain-specific skills.
| Situation | Skill to Invoke |
|---|---|
| Any non-trivial task (start here) | oracle |
| First time in a codebase or new module | pathfinder |
| Building UI, selecting design style, choosing charts | prism |
| ML pipelines, model training, MLOps, drift detection | gradient |
| RAG systems, agents, prompt engineering, LLM eval | nexus |
| Firmware, ISRs, RTOS, state machines, timing | ironcore |
| 2+ independent tasks with no shared state | commander + legion |
| Task touches 3+ files with clear complexity tiers | vector |
| Complex task needing past pattern search | chronicle |
| Session 10+ exchanges or about to dispatch subagent | horizon |
| Code review with domain-specific criteria needed | tribunal (set DOMAIN) |
| Task spans 2+ engineering domains | oracle (multi-domain synthesis) |
For ANY non-trivial task, invoke oracle FIRST.
oracle classifies complexity, selects skill chain, searches patterns, and assigns model tier in 60 seconds. It replaces manual skill selection guesswork.
Non-trivial = touches code OR makes decisions OR has more than one step
Trivial = pure Q&A, single-line answers, file reads
Pre-built chains for common scenarios. Use these instead of reasoning from scratch:
NEW PROJECT / UNFAMILIAR CODEBASE:
pathfinder → ← ALWAYS first in any new codebase
oracle →
→ continue with appropriate chain
DEBUG CHAIN:
chronicle (search) →
hunter →
forge →
sentinel (+ confidence gate) →
oracle (after-action review) →
chronicle (store)
FEATURE CHAIN:
oracle →
chronicle (search) →
[domain skill if applicable] →
architect →
blueprint →
horizon (check health before dispatch) →
vector + legion →
phantom →
sentinel →
tribunal (with DOMAIN set) →
oracle (after-action review) →
chronicle (store)
ARCHITECTURE CHAIN:
oracle →
chronicle (search) →
architect →
blueprint (SPARC REQUIRED) →
tribunal (DOMAIN: security or relevant) →
oracle (after-action review) →
chronicle (store)
REFACTOR CHAIN:
oracle →
forge (baseline tests first) →
blueprint →
horizon (check before dispatch) →
sentinel →
oracle (after-action review) →
chronicle (store)
LONG SESSION (10+ exchanges):
horizon (health check + compress) →
→ continue or handoff to fresh session
ML/AI/EE/FRONTEND WORK:
oracle →
[gradient | nexus | ironcore | prism] →
→ continue with feature-chain or debug-chain as appropriate
(multi-domain: run synthesis step in oracle first)
Rigid (forge, hunter, sentinel, oracle): Follow exactly. Don't adapt away discipline.
Flexible (domain patterns, vector): Adapt principles to context.
The skill itself tells you which.
Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.