Back to Skills

THEALGORITHM

majiayu000
Updated Today
1 views
58
9
58
View on GitHub
Othergeneral

About

THEALGORITHM is a universal execution engine for developers that uses a scientific method approach to handle complex, multi-step tasks. It structures execution around defined Ideal State Criteria (ISC) to track progress toward an optimal outcome. Use it for any non-trivial request requiring systematic problem-solving to achieve exceptional results.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/majiayu000/claude-skill-registry
Git CloneAlternative
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/THEALGORITHM

Copy and paste this command in Claude Code to install this skill

Documentation

Customization

Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/THEALGORITHM/

If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.

THE ALGORITHM - Universal Execution Engine

PURPOSE: Produce euphoric, highly surprising, exceptional results that solve the problem better than expected.

PHILOSOPHY: Move from current state to ideal state using the scientific method. The ISC (Ideal State Criteria) captures what "ideal" looks like, which we execute against, verify against, and iterate against until achieved.

CORE PRINCIPLE: Effort classification determines which capabilities are available. Higher effort unlocks more powerful tools.


Core Mission

The goal of The Algorithm—and indeed of the PAI system overall—is to create Euphoric Surprise at its ability to perform every task in service of helping its principal become the best version of themselves.

This is the north star. Every capability, every phase, every ISC row exists to serve this mission. When the system works correctly, the principal should be genuinely surprised and delighted by how thoroughly, thoughtfully, and effectively their request was fulfilled—not just "done" but done in a way that exceeds expectations and moves them closer to their ideal self.


Visual Display & Voice Notifications

Use the LCARS-style AlgorithmDisplay for visual feedback and voice announcements:

# Start algorithm with effort level (shows banner + announces via voice)
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts start THOROUGH -r "your request"

# Transition phases (updates display + voice announcement)
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts phase THINK
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts phase EXECUTE

# Show current status anytime
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts show

# Show just the effort banner
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts effort DETERMINED

The display shows:

  • 🎯 Current effort level (TRIVIAL → DETERMINED) with color-coded banner
  • 📊 Phase progression bar (7 phases with completion status)
  • 📝 ISC summary (rows pending/active/done)
  • 🔊 Voice announcements when transitioning phases

Phase Icons: 👁️ OBSERVE → 🧠 THINK → 📋 PLAN → 🔨 BUILD → ⚡ EXECUTE → ✅ VERIFY → 📚 LEARN

Quick Start

# 1. START WITH VISUAL DISPLAY (shows banner + voice announcement)
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts start STANDARD -r "your request"

# 2. CLASSIFY EFFORT (if not using display start)
bun run ~/.claude/skills/THEALGORITHM/Tools/EffortClassifier.ts --request "your request"
# Or with override: --override DETERMINED
# Or inline: "algorithm effort THOROUGH: your request"

# 3. LOAD CAPABILITIES for effort level
bun run ~/.claude/skills/THEALGORITHM/Tools/CapabilityLoader.ts --effort STANDARD

# 4. CREATE ISC
bun run ~/.claude/skills/THEALGORITHM/Tools/ISCManager.ts create --request "your request"

# 5. TRANSITION PHASES (voice + visual update)
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts phase THINK
bun run ~/.claude/skills/THEALGORITHM/Tools/AlgorithmDisplay.ts phase PLAN
# ... continues through EXECUTE, VERIFY, LEARN

# 6. MANAGE ISC during EXECUTE
bun run ~/.claude/skills/THEALGORITHM/Tools/ISCManager.ts capability --row 1 -c research.perplexity
bun run ~/.claude/skills/THEALGORITHM/Tools/ISCManager.ts update --row 1 --status DONE
bun run ~/.claude/skills/THEALGORITHM/Tools/ISCManager.ts show

Effort → Capability Matrix

Capabilities.yaml is the source of truth. See Data/Capabilities.yaml.

EffortModelsThinkingDebateResearchAgentsParallel
TRIVIAL0
QUICKhaikuIntern1
STANDARDhaiku, sonnetdeep thinking, FirstPrinciples1 agentEngineer, QA, Designer1-3
THOROUGHhaiku, sonnetAllCouncilparallelAll + Architect, Pentester3-5
DETERMINEDall + opusAllCouncil + RedTeamallunlimited10

ISC Scale (CRITICAL)

The ISC is NOT limited to a small number of rows. The ISC captures what "ideal" looks like, and for complex problems this can be massive:

ScaleWhenExamples
5-10 rowsQuick fixes, simple features"Fix typo", "Add button"
20-50 rowsStandard development work"Add dark mode", "Create API endpoint"
50-200 rowsComplex features, refactors"Redesign auth system", "Add new major feature"
200-1000+ rowsMajor projects, DETERMINED effort"Build entire system", "Security audit"

ISC rows come from:

  • EXPLICIT requirements - What user literally asked for
  • INFERRED requirements - From context (TECHSTACKPREFERENCES, past work, etc.)
  • IMPLICIT requirements - Security, quality, testing standards
  • Research findings - Best practices discovered via research agents
  • Anti-patterns - Things to AVOID discovered via research
  • Edge cases - Discovered through thinking/analysis
  • Verification criteria - How to confirm each requirement is met

The algorithm's capabilities EXPAND the ISC:

  • Research agents find best practices → add ISC rows
  • Research agents find anti-patterns → add "avoid X" ISC rows
  • Council debate surfaces edge cases → add ISC rows
  • FirstPrinciples analysis reveals assumptions → add ISC rows
  • Verification requirements → add ISC rows for each testable criterion

Higher effort = larger, higher quality ISC. The DETERMINED level can have thousands of ISC rows because we use ALL capabilities to discover everything that "ideal" looks like.

The 7 Phases

Execute IN ORDER. Each phase mutates the ISC:

PhaseActionISC MutationGate Question
OBSERVEUnderstand request + user contextCREATE rowsDo I have 2+ rows? Used context to infer?
THINKEnsure nothing missingCOMPLETE rowsAll rows clear, testable?
PLANSequence + assign capabilitiesORDER rows + ASSIGN capabilitiesDependencies mapped? Capabilities assigned?
BUILDMake rows testableREFINE rowsEach row specific enough to verify?
EXECUTEDo the work (spawn agents per capability)ADVANCE statusEvery row has final status?
VERIFYTest each DONE row (skeptical agent)CONFIRM statusTested/confirmed each completion?
LEARNOutput for user to rateOUTPUT resultsUser rates for memory system

CRITICAL: The LEARN phase does NOT self-rate. User rates outputs for the memory system.

The ISC Table (FRONT AND CENTER)

Every non-trivial task has an ISC. Display this prominently throughout execution:

## 🎯 IDEAL STATE CRITERIA

**Request:** Add dark mode to the settings page
**Effort:** STANDARD | **Phase:** EXECUTE | **Iteration:** 1

| # | What Ideal Looks Like | Source | Capability | Status |
|---|----------------------|--------|------------|--------|
| 1 | Research good patterns | INFERRED | 🔬 perplexity | ⏳ PENDING |
| 2 | Toggle component works | EXPLICIT | 🤖 engineer | 🔄 ACTIVE |
| 3 | Theme state persists | EXPLICIT | 🤖 engineer× | ⏳ PENDING |
| 4 | Uses TypeScript | INFERRED | — | ✅ DONE |
| 5 | Tests pass | IMPLICIT | ✅ qa_tester | ⏳ PENDING |
| 6 | Browser-verified | IMPLICIT | ✅ browser | ⏳ PENDING |

**Legend:** 🔬 Research | 💡 Thinking | 🗣️ Debate | 🔍 Analysis | 🤖 Execution | ✅ Verify | × Parallel

Source types:

  • EXPLICIT - User literally said this
  • INFERRED - Derived from user context (TECHSTACKPREFERENCES, etc.)
  • IMPLICIT - Universal standards (security, quality)

Status progression:

  • PENDINGACTIVEDONE
  • ADJUSTED - Modified with reason
  • BLOCKED - Cannot achieve, triggers loop-back

Execution Flow

Step 1: EFFORT CLASSIFICATION (REQUIRED FIRST)

bun run ~/.claude/skills/THEALGORITHM/Tools/EffortClassifier.ts --request "your request"

Override methods:

  • CLI flag: --override THOROUGH
  • Inline pattern: "algorithm effort DETERMINED: build this feature"

The effort level determines ALL available capabilities.

Step 2: CAPABILITY LOADING

bun run ~/.claude/skills/THEALGORITHM/Tools/CapabilityLoader.ts --effort STANDARD

Returns available: models, thinking modes, debate systems, research agents, execution agents, verification.

Step 3: ISC CREATION + CAPABILITY ASSIGNMENT

For each ISC row, select appropriate capability:

bun run ~/.claude/skills/THEALGORITHM/Tools/CapabilitySelector.ts --row "Research best practices" --effort STANDARD
# Returns: research.perplexity as primary, with icon 🔬

bun run ~/.claude/skills/THEALGORITHM/Tools/ISCManager.ts capability --row 1 -c research.perplexity

Step 4: ORCHESTRATED EXECUTION

Execute in phases based on capability assignments:

PHASE A: RESEARCH (parallel for independent queries)
├─ Row with 🔬 research.perplexity → Spawn PerplexityResearcher
├─ Row with 🔬 research.gemini → Spawn GeminiResearcher
└─ Row with 🔬 research.grok → Spawn GrokResearcher

PHASE B: THINKING (for creative/analysis needs)
├─ Row with 💡 thinking.deep thinking → Invoke BeCreative skill
├─ Row with 🔍 analysis.first_principles → Invoke FirstPrinciples skill
└─ Row with 🗣️ debate.council → Invoke Council skill

PHASE C: EXECUTION (parallel agents)
├─ Row with 🤖 execution.engineer → Spawn Engineer agent
├─ Row with 🤖 execution.architect → Spawn Architect agent (THOROUGH+)
└─ Rows marked × → Run in parallel

PHASE D: VERIFICATION (skeptical, different from executor)
├─ Row with ✅ verification.browser → Browser skill validation
└─ All rows → Skeptical verifier agent (skeptical,meticulous,adversarial traits)

For TRIVIAL (skip algorithm):

Direct response, no ISC, no capability loading. Just answer.

Capability Categories

Models (compute resources)

  • models.haiku - Fast, cheap (QUICK+)
  • models.sonnet - Balanced reasoning (STANDARD+)
  • models.opus - Maximum intelligence (DETERMINED)

Thinking Modes

  • thinking.deep thinking - BeCreative skill for creative solutions (STANDARD+)
  • thinking.tree_of_thought - Branching exploration (THOROUGH+)
  • thinking.plan_mode - EnterPlanMode for complex implementations (THOROUGH+)

Debate Systems

  • debate.council - 4 agents, collaborative analysis (THOROUGH+)
  • debate.redteam - 32 agents, adversarial stress-testing (DETERMINED)

Analysis Modes

  • analysis.first_principles - Challenge assumptions (STANDARD+)
  • analysis.science - Hypothesis-driven exploration (STANDARD+)

Research Agents

  • research.perplexity - Web research, current events (STANDARD+)
  • research.gemini - Multi-perspective research (STANDARD+)
  • research.grok - Contrarian fact-checking (STANDARD+)
  • research.claude - Academic/scholarly sources (STANDARD+)
  • research.codex - Technical code pattern research (STANDARD+)

Execution Agents

  • execution.intern - Parallel grunt work (QUICK+)
  • execution.engineer - Implementation/coding (STANDARD+)
  • execution.qa_tester - Testing/validation (STANDARD+)
  • execution.designer - UX/UI design (STANDARD+)
  • execution.architect - System design (THOROUGH+)
  • execution.pentester - Security testing (THOROUGH+)

Verification

  • verification.browser - Web application validation (STANDARD+)
  • verification.skeptical_verifier - Different agent than executor (STANDARD+)

Iteration Loop

When VERIFY finds issues:

BLOCKED row
    │
    ├─ Unclear what ideal looks like? → Loop to THINK
    ├─ Wrong approach? → Loop to PLAN
    └─ Execution error? → Loop to EXECUTE

Iteration count bounded by effort level:
- QUICK: 1 iteration max
- STANDARD: 2 iterations
- THOROUGH: 3-5 iterations
- DETERMINED: Unlimited until success

Integration

Uses

  • Agents Skill - AgentFactory for dynamic agent composition
  • CORE Skill - User context for ISC inference
  • Browser Skill - Web verification in VERIFY phase
  • BeCreative Skill - deep thinking for THINK phase
  • Council Skill - Multi-perspective debate (THOROUGH+)
  • RedTeam Skill - Adversarial analysis (DETERMINED)
  • FirstPrinciples Skill - Assumption challenging
  • Research Skill - Multi-source research agents

Memory

  • ISC artifacts: MEMORY/Work/{session}/ISC.md
  • Learnings: MEMORY/Learning/ALGORITHM/
  • Patterns: MEMORY/Signals/algorithm-patterns.jsonl

Workflow Routing

TriggerAction
"run the algorithm"Full execution
"use the algorithm"Full execution
"algorithm effort LEVEL"Force effort level + full execution
Complex multi-step requestAuto-invoke if appropriate

Enhanced ISC Features

Verification Paired at Creation

CRITICAL: Every ISC row should have a verification method defined at creation, not after.

# Add row WITH verification (recommended)
bun run ISCManager.ts add -d "Toggle component works" -s EXPLICIT \
  --verify-method browser --verify-criteria "Toggle visible in settings"

Verification methods: browser, test, grep, api, lint, manual, agent, inferred

See Data/VerificationMethods.yaml for selection guidance.

Agent Claim System

Prevents race conditions when multiple agents work on ISC items.

# Claim an item
bun run ISCManager.ts claim --row 1 --agent Engineer

# Release when done
bun run ISCManager.ts release --row 1

# See what's available
bun run ISCManager.ts available

Claims expire after 30 minutes (stale detection).

Research Override System

Research findings can BLOCK user assumptions. User must acknowledge.

# Research agent finds issue
bun run ISCManager.ts research-block --row 2 \
  --reason "Best practice is X, not Y" --source research.perplexity

# User acknowledges
bun run ISCManager.ts acknowledge --row 2 --action OVERRIDE  # or ACCEPT

Nested Algorithm

Complex items spawn child ISAs.

# Mark item as nested
bun run ISCManager.ts nest --row 5

# Update child status
bun run ISCManager.ts child-status --row 5 --child-status COMPLETE

Interview Protocol

When ideal state is unclear, use structured questions.

bun run ISCManager.ts interview -r "vague request"

The 5 Questions:

  1. What does success look like when this is done?
  2. Who will use this and what will they do with it?
  3. What would make you show this to your friends?
  4. What existing thing is this most similar to?
  5. What should this definitely NOT do?

Files

FilePurpose
Data/Capabilities.yamlSource of truth for all capabilities
Data/VerificationMethods.yamlVerification method registry
Tools/AlgorithmDisplay.tsLCARS visual display + voice announcements
Tools/EffortClassifier.tsClassify TRIVIAL→DETERMINED
Tools/CapabilityLoader.tsLoad + filter capabilities by effort
Tools/CapabilitySelector.tsSelect capabilities for ISC rows
Tools/ISCManager.tsEnhanced: ISC with verification, claims, research, nesting
Tools/TraitModifiers.tsEffort → trait mappings
Phases/*.mdDetailed phase documentation (Observe.md has interview protocol)
Reference/CapabilityMatrix.mdEffort → capability documentation

The Purpose

Produce euphoric, highly surprising, exceptional results that solve the user's problem better than expected.

The ISC captures what "ideal" looks like. Effort determines available capabilities. Execute against it. Verify against it. Iterate until achieved.

This is not documentation. This is a command. Execute the algorithm.

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/data/THEALGORITHM

Related Skills

algorithmic-art

Meta

This Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.

View skill

subagent-driven-development

Development

This skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.

View skill

executing-plans

Design

Use the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.

View skill

cost-optimization

Other

This Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.

View skill