apex-power
APEX-POWER
The Universal Meta-Skill for Omnipotent Execution
"One skill to rule them all. Zero exceptions. Zero weakpoints."
I. CORE DOCTRINE
┌─────────────────────────────────────────────────────────────────────────────┐
│ APEX-POWER = OMNISCIENCE × OMNIPOTENCE × ZERO TOLERANCE FOR FAILURE │
│ │
│ • OMNISCIENCE: Know exactly what to do before acting │
│ • OMNIPOTENCE: Execute with deterministic precision │
│ • ZERO TOLERANCE: No guessing, no hoping, no "good enough" │
└─────────────────────────────────────────────────────────────────────────────┘
The Iron Laws
| Law | Statement | Violation = |
|---|---|---|
| 1. EVIDENCE FIRST | No action without proof of cause | START OVER |
| 2. TEST FIRST | No code without failing test | DELETE CODE |
| 3. VERIFY ALWAYS | No claim without verification | RETRACT CLAIM |
| 4. ONE THING | One change per commit | SPLIT IT |
| 5. NO RATIONALIZATION | If you're justifying, you're wrong | STOP & REFLECT |
II. UNIVERSAL EXECUTION PROTOCOL (APEX-UEP)
For ANY task, follow this exact sequence:
┌────────────────────────────────────────────────────────────────────────────┐
│ PHASE 0: SCOPE LOCK (30 seconds) │
│ ├── Read the request 3 times │
│ ├── State the goal in ONE sentence │
│ └── If unclear → ASK, don't assume │
│ │
│ PHASE 1: CONTEXT HARVEST (before any action) │
│ ├── What files are relevant? │
│ ├── What is the current state? │
│ ├── What constraints exist? │
│ └── What has been tried before? │
│ │
│ PHASE 2: PLAN (before any implementation) │
│ ├── What are the steps? │
│ ├── What could go wrong? │
│ ├── What is the verification criteria? │
│ └── Write it down (task.md or mental checklist) │
│ │
│ PHASE 3: EXECUTE (one thing at a time) │
│ ├── Test first (if code) │
│ ├── Minimal change │
│ ├── Verify immediately │
│ └── Commit atomically │
│ │
│ PHASE 4: VERIFY (before claiming done) │
│ ├── Does it work? (run it) │
│ ├── Does it break anything? (run tests) │
│ ├── Does it match the goal? (re-read request) │
│ └── Can you prove it? (show evidence) │
└────────────────────────────────────────────────────────────────────────────┘
III. DECISION ROUTER
What are you doing?
| Task Type | Go To |
|---|---|
| Implementing a feature | → Section IV: APEX-TDD |
| Fixing a bug | → Section V: APEX-DEBUG |
| Planning/designing | → Section VI: APEX-PLAN |
| Reviewing code | → Section VII: APEX-REVIEW |
| Anything else | → Apply APEX-UEP (Section II) |
IV. APEX-TDD (Test-Driven Development)
RED → GREEN → REFACTOR (No shortcuts)
The Cycle
- RED: Write ONE failing test that describes what should happen
- VERIFY RED: Run it. Watch it fail. Understand WHY it fails.
- GREEN: Write MINIMAL code to pass
- VERIFY GREEN: Run it. All tests pass. No warnings.
- REFACTOR: Clean up. Keep tests green.
- REPEAT: Next test
Violations That Require Delete & Restart
- ❌ Writing code before test
- ❌ Test passes immediately (you're testing wrong thing)
- ❌ "I'll write tests after"
- ❌ "This is too simple to test"
- ❌ Keeping code as "reference"
Quick Example
// RED: Write test first
test("validates email format", () => {
expect(isValidEmail("")).toBe(false);
expect(isValidEmail("invalid")).toBe(false);
expect(isValidEmail("valid@example.com")).toBe(true);
});
// GREEN: Minimal implementation
function isValidEmail(email: string): boolean {
return /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email);
}
V. APEX-DEBUG (Systematic Debugging)
The Iron Law
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
The 4-Phase Protocol
| Phase | What | Success Criteria |
|---|---|---|
| 1. INVESTIGATE | Read errors, reproduce, trace data | Know WHAT and WHY |
| 2. ANALYZE | Find working examples, compare | Identify differences |
| 3. HYPOTHESIZE | Form ONE theory, test minimally | Confirmed or new hypothesis |
| 4. IMPLEMENT | Create test, fix, verify | Bug resolved, tests pass |
Red Flags (STOP and Return to Phase 1)
- "Just try changing X and see"
- "Quick fix for now, investigate later"
- "I don't fully understand but this might work"
- 3+ failed fix attempts → QUESTION ARCHITECTURE
Evidence Gathering Template
# For each component boundary:
echo "=== Layer N: [Name] ==="
echo "Input: ${INPUT:+SET}${INPUT:-UNSET}"
echo "State: [relevant state]"
# Run and gather evidence BEFORE proposing fixes
VI. APEX-PLAN (Strategic Planning)
The Process
- Understand: Read request. Ask clarifying questions (one at a time).
- Explore: Propose 2-3 approaches with trade-offs.
- Present: Design in sections (200-300 words each). Validate each.
- Document: Write to
docs/plans/YYYY-MM-DD-<topic>.md - Execute: Break into tasks. One task at a time.
Planning Checklist
- Goal stated in one sentence
- Constraints identified
- Approaches compared
- Risks identified
- Verification criteria defined
- Tasks broken down
VII. APEX-REVIEW (Code Review)
Before Requesting Review
- All tests pass
- No linting errors
- Changes are atomic (one concern per commit)
- Self-reviewed for obvious issues
- PR description explains WHAT and WHY
When Reviewing
- Understand: What is this change trying to do?
- Check: Does it do what it claims?
- Test: Are edge cases covered?
- Verify: Does it follow patterns/standards?
- Communicate: Be specific, be kind, be actionable
VIII. FAILURE ANNIHILATION MATRIX
Common Failures → Countermeasures
| Failure Mode | Symptom | Countermeasure |
|---|---|---|
| Guessing | "Maybe this will work" | STOP → Gather evidence first |
| Rushing | Skipping steps | STOP → Follow protocol |
| Overengineering | Adding unused features | STOP → YAGNI ruthlessly |
| Underengineering | Skipping tests | STOP → Test first |
| Rationalization | "Just this once" | STOP → It's never "just once" |
| Assumption | "I think..." without proof | STOP → Verify assumption |
| Scope Creep | "While I'm here..." | STOP → One thing at a time |
IX. RATIONALIZATION IMMUNITY SHIELD
Excuses That Mean "STOP"
| Excuse | Translation | Action |
|---|---|---|
| "This is simple enough" | "I want to skip testing" | Write the test |
| "I'll add tests later" | "I won't add tests" | Write test NOW |
| "It worked when I tried it" | "I didn't automate verification" | Automate it |
| "The spirit is more important than the letter" | "I'm rationalizing" | Follow the letter |
| "I'm being pragmatic" | "I'm cutting corners" | Corners cause crashes |
| "We're in a hurry" | "We'll pay double later" | Slow is smooth, smooth is fast |
| "This is different because..." | "I'm making an exception" | No exceptions |
X. COGNITIVE LOAD ELIMINATION
Decision Trees > Paragraphs
❌ BAD: "When you need to do X, first consider whether Y or Z, and if Y then..."
✅ GOOD:
Is X true?
├── YES → Do Y
└── NO → Do Z
Examples > Explanations
❌ BAD: "To create a function, define parameters and return type..."
✅ GOOD:
function add(a: number, b: number): number {
return a + b;
}
One Thing at a Time
❌ BAD: Multiple changes in one commit
✅ GOOD: One logical change per commit
XI. QUALITY METRICS
Success Criteria for Any Task
| Metric | Target |
|---|---|
| First-pass success rate | 95%+ |
| Test coverage | 100% of new code |
| Regressions introduced | 0 |
| Build status | Green |
| Lint status | Clean |
| Documentation | Updated |
XII. INSTALLATION & ACTIVATION
Auto-Activation Triggers
This skill activates for:
- Session start
- Any coding task
- Any debugging scenario
- Any planning/design work
- Any code review
- Any verification need
Manual Activation
If you need to explicitly invoke:
Apply APEX-POWER protocol
XIII. THE BOTTOM LINE
┌─────────────────────────────────────────────────────────────────────────────┐
│ │
│ APEX-POWER is not a checklist. It's a MINDSET. │
│ │
│ • Never guess. KNOW. │
│ • Never hope. VERIFY. │
│ • Never rush. EXECUTE PRECISELY. │
│ • Never rationalize. FOLLOW THE PROTOCOL. │
│ │
│ The discipline creates the freedom. │
│ The protocol enables the mastery. │
│ The rigor produces the results. │
│ │
│ THIS IS APEX-POWER. │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
Version: 1.0.0
Supersedes: superpowers (all skills)
Compatibility: Claude, GPT, Gemini, Llama, Mistral, any reasoning model
License: Proprietary - APEX Business Systems Ltd.
More from apexbusiness-systems/apex-omnihub
apex-dev
Omniscient APEX Ecosystem development skill. Triggers: apex code, omnihub development, tradeline build, aspiral feature, apex bug, fix apex, apex architecture, omnidash component, triforce guardian, man mode, apex security, apex test, armageddon test, apex deploy, apex optimize, semantic translation, web2 web3 bridge. Produces: zero-drift, first-pass success code for APEX OmniHub, TradeLine 24/7, aSpiral, and all connected applications. Compatible with all LLMs.
63apex-skill-forge
Triggers: forge skill, create skill, build skill, scaffold skill, package skill, audit skill, ship skill. Actions: scaffold 6 archetypes, DAG-compatible execution, 12-dimension audit, tri-format packaging. Produces: production-grade skill packages for Claude, Universal LLM, and APEX OmniHub.
28universal-debug
Meta-level consciousness engineering protocol for systematic problem-solving across all domains. Apply when facing ANY loop (code, life, strategy, consciousness), ANY stuck state, or ANY complex problem requiring definitive solution. Works universally for debugging code, transforming life, seeing design, breaking patterns, and solving at root cause level. Triggers on "stuck in loop", "same problem keeps happening", "need systematic approach", or ANY situation requiring elevation from symptom to solution.
7omnidev
Omniscient hyper-elite software engineering command center. Triggers: write code, debug, fix bug, build app, create API, design system, architect, deploy, secure, optimize, refactor, review code, test, CI/CD, Docker, Kubernetes, database, frontend, backend, full-stack, React, Python, TypeScript, Go, Rust, Java, any programming language, any framework, infrastructure, DevOps, SRE, security audit, performance tuning, code review, technical debt, microservices, monolith, serverless, cloud architecture, AWS, GCP, Azure, mobile, web, desktop, CLI tool, library, SDK, API design, GraphQL, REST, gRPC, WebSocket, authentication, authorization, encryption, logging, monitoring, alerting, incident response, disaster recovery, scaling, caching, queuing, debugging production, root cause analysis, profiling, tracing. Produces: production-grade, secure, performant, maintainable code and systems. Enables 10x development velocity with first-pass success.
2frontend-design
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
2one-pass-debug
Omniscient zero-iteration debugging protocol. Triggers: debug, fix bug, error, crash, failing test, broken code, not working, exception, stack trace, troubleshoot, diagnose issue. Produces: Single surgical fix with 100% certainty. BLOCKS code changes until root cause proven. Eliminates guess-and-check loops entirely.
1