@ma_zhenyuan: https://x.com/ma_zhenyuan/status/2057702858800370052

X AI KOLs Timeline Tools

Summary

This article introduces Superpowers, a set of AI workflow Skills based on Claude Code, providing automated brainstorming, planning, sub-agent development, and test-driven development, which can significantly improve AI delivery efficiency.

https://t.co/sl7V8b2Yuq
Original Article
View Cached Full Text

Cached at: 05/22/26, 11:50 AM

Install This Skill and Boost Efficiency by 10x

Throughout my time delivering enterprise AI solutions, I’ve installed countless Skills.

Some for content creation, writing articles, prototyping, brainstorming ideas — some I uninstalled after a single use, others I forgot about after a few days.

There’s only one Skill I use every single day, and the more I use it, the more indispensable it becomes.

It tops the Star growth charts every day on GitHub, and it’s consistently at the top of every major AI Skills open-source platform.

It’s called Superpowers.

Here’s why most people fire up Claude Code, stare at a blank dialog box for 5 minutes, and have no idea what to ask.

Eventually they blurt out: “Write an article for me.”

The AI spits out a wall of text, they copy-paste and publish it, and that’s the end of it.

This isn’t your fault — you’re missing a “user manual.”

1. What Is Superpowers? An “Operating System” That Makes AI Work Automatically

It’s not a tool — it’s a complete AI workflow system.

Let me explain with an analogy:

  • Claude Code = a car (powerful, but you don’t know where to drive)
  • Superpowers = a navigation system (tells you exactly where to go next)

Without navigation, you drive aimlessly. With it, you know:

  • Where you are now
  • Where to go next
  • When to turn
  • When to stop

Superpowers is that navigation system.

Its core function: Let the AI automatically decide “what to do next” — no manual invocation needed.

2. How Does It Work? A Breakdown of Its Four Core Skills

Superpowers has a complete workflow that guides you from “I want to build a feature” to code deployment, arranging every step for you.

Skill 1: Brainstorming

Trigger: You say “I want to build a feature.”

What it does:

It won’t give you code directly.

Instead, it asks you:

  • What problem are you trying to solve?
  • What are the possible approaches?
  • Which one do you pick, and why?

Why this approach?

Because the problem isn’t that you can’t do it — it’s that you don’t know “what to think about first, and what to think about next.”

It gives you a thinking scaffold that gradually guides you to clarify your ideas.

Real-world example:

You say: “I want to build a user login feature.”

The AI asks:

  • Email login or phone number?
  • Need third-party login (Google, GitHub)?
  • How do you store passwords?
  • Do you need password recovery?

After you answer these questions, the plan becomes clear.

Skill 2: Writing Plans

Trigger: Once the plan is confirmed.

What it does:

It breaks the plan down into tiny tasks.

Each task can be completed in 2–5 minutes.

Not something vague like “build a user system,” but specific down to “write a user registration endpoint that accepts email and password and returns a token.”

Why this approach?

Big tasks cause anxiety. Small tasks give you a sense of control.

Plus, small tasks are easy to verify — you can test each one right after completion.

Real-world example:

“User login feature” gets broken into:

  • Create the users table (fields: id, email, password_hash, created_at)
  • Write the registration endpoint (POST /api/register)
  • Write the login endpoint (POST /api/login)
  • Write the password encryption function (using bcrypt)
  • Write the JWT token generation function
  • Write test cases

Each task has clear input, output, and verification criteria.

Skill 3: Subagent-Driven Development

Trigger: After the plan is written.

What it does:

It spawns “sub-agents” — one agent per task.

Each agent handles exactly one thing and then leaves.

After completion, there are two rounds of review:

  • Round 1: Does the code meet the requirements? (spec compliance review)
  • Round 2: Is the code quality up to standard? (code quality review)

Only after passing both rounds is the task considered done.

Why this approach?

If one agent handles all tasks, it’s easy to “mix things up” — earlier tasks can affect later judgments.

Using a fresh agent for each task ensures every decision is made with a “clear mind.”

Plus, the two-round review guarantees code quality — it’s not just “if it runs, it’s fine.”

Real-world example:

Task: “Write the registration endpoint”

  • Sub-agent A: Write the code
  • Sub-agent B: Check compliance with requirements (input, output, error handling)
  • Sub-agent C: Check code quality (naming, comments, performance)

Only after all three agents approve does it move to the next task.

Skill 4: Test-Driven Development

Trigger: When writing code.

What it does:

Forces you to write tests.

Code without tests is deleted outright.

It doesn’t “suggest” you write tests — it deletes the code if you don’t.

Why this approach?

Tests are the guarantee of code quality.

Without tests, you don’t know if the code actually works.

Moreover, tests are the best documentation — reading the tests tells you how to use the code.

Real-world example:

You ask the AI to write a “password encryption function.”

The AI writes the test first:

// test for encryptPassword function
expect(encryptPassword('hello')).not.toBe('hello');

Then it writes the code.

After writing, it runs the tests. Only if they pass is it considered done.

3. Why Is This Methodology So Powerful?

3.1 Automatic Triggering — No Need to Remember

You don’t have to remember which Skill to use.

The system automatically determines:

  • You say “I want to build a feature” → triggers Brainstorming
  • Plan confirmed → triggers Writing Plans
  • Plan written → triggers Subagent-Driven Development
  • When writing code → triggers Test-Driven Development

You just follow the flow — no need to think about “what to do next.”

3.2 Two-Phase Review Ensures Quality

After each task, there are two rounds of review:

  • Round 1: Does it match the requirements? (meets your specs)
  • Round 2: Code quality (naming, comments, performance)

Only after both pass is the task considered complete.

That’s why Superpowers has a 94% PR rejection rate.

It’s not arrogance — it’s standards.

3.3 Mandatory Tests — No Cutting Corners

Code without tests is deleted outright.

That sounds harsh, but it’s for your own good.

Code without tests is a time bomb.

You save 5 minutes now, but might spend 5 hours fixing bugs later.

3.4 Reduced Cognitive Load — Let You Focus on Thinking

Every time you use Claude Code, you have to think:

  • What should I ask?
  • How should I ask it?
  • What’s next?

Each of these questions consumes mental energy.

Superpowers automates all of that.

You only need to focus on “what I want” — not “how to do it.”

4. How to Install Superpowers (3 Minutes)

4.1 Install Superpowers

Method 1: Install from the official market (recommended)

Open Claude Code and enter:

/claude install superpowers

Wait for the installation to complete, and you’re done.

Method 2: Install from the Superpowers market

If the official market fails, you can use Superpowers’ own market:

  • In Claude Code, run: /superpowers
  • Follow the prompts to install the default Skills pack

4.2 Verify Installation

After installation, enter:

/superpowers

If you see “superpowers,” the installation was successful.

5. Your First Task After Installation Should Be Done Like This

5.1 Scenario: Build a To-Do App

Open Claude Code and enter:

I want to build a simple to-do app.

5.2 The AI Automatically Triggers Brainstorming

It won’t give you code directly.

Instead, it asks you:

  • What tech stack? (React, Vue, or plain HTML?)
  • Do you need a backend? (local storage or a database?)
  • What features do you need? (add, delete, mark complete?)

After you answer these questions, the plan becomes clear.

5.3 The AI Automatically Generates a Plan

Once the plan is confirmed, the AI breaks it into tasks:

  • Create project structure
  • Write the HTML page
  • Write CSS styles
  • Write the add-to-do function
  • Write the delete-to-do function
  • Write the mark-complete function
  • Write the local storage function
  • Write test cases

Each task has clear input, output, and verification criteria.

5.4 The AI Automatically Executes the Tasks

You say “Go,” and the AI:

  • Spawns sub-agents, one per task
  • Two rounds of review after each task
  • Runs tests after all tasks are complete

You don’t need to do anything — just wait.

5.5 What You Get After Completion

  • A complete to-do app
  • All code has tests
  • All code has passed two rounds of review
  • You know exactly how every line of code came to be

That’s the power of Superpowers.

6. It’s Not Just for Programmers

The core of Superpowers isn’t “writing code” — it’s systematic thinking.

So it’s not just for programmers.

Content creators can use it to plan article structure:

  • Brainstorming: Clarify the article’s topic and arguments
  • Writing Plans: Break it down into paragraphs
  • Two-round review: First check logic, then check writing quality

Product managers can use it to break down requirements:

  • Brainstorming: Clarify user needs and pain points
  • Writing Plans: Break down into individual features
  • Two-round review: First check requirements, then check feasibility

People learning something new can use it to build a knowledge system:

  • Brainstorming: Clarify learning goals and roadmap
  • Writing Plans: Break down into individual knowledge points
  • Two-round review: First check understanding, then check mastery

Its core is “break big tasks into small tasks, then complete them step by step.”

This method applies to any scenario that requires systematic thinking.

7. A Final Word

In 2026, AI tools are exploding.

Claude Code, Cursor, Codex — everyone is using them.

But most people are still “using them wrong.”

They install 10 tools but don’t know which one to use.

They learn 50 prompts but don’t know when to use which.

They ask 100 questions but still don’t know what to do next.

Superpowers tells you this:

No matter how many tools you have, without a methodology, you’ll still use them wrong.

A system is ten thousand times more important than a tool.

Similar Articles

@seclink: https://x.com/seclink/status/2057086514975404108

X AI KOLs Following

Anthropic engineer shared development experience of long-duration AI agents, including multi-role division and independent evaluators, enabling AI to automatically generate complete applications within 3-5 hours, with a 12x improvement in continuous operation capability.

@gyro_ai: https://x.com/gyro_ai/status/2055198700016660826

X AI KOLs Timeline

Matt Pocock open-sourced Skills for Real Engineers, a set of small, composable, and hackable AI coding skills designed to address issues in AI programming such as understanding bias, lack of shared language, missing feedback loops, and software entropy. The tool enhances AI programming efficiency through skills like grill-with-docs, tdd, and diagnose, and provides a complete workflow.

@yaohui12138: Karpathy released a GitHub open-source project that truly amazed me. The project is called andrej-karpathy-skills, with 130k+ stars on GitHub. I'd call it the most useful AI engineering project of 2026. The problem it solves is extremely precise: making Cl…

X AI KOLs Timeline

Karpathy released an open-source project called andrej-karpathy-skills, centered around a 4KB CLAUDE.md file containing 4 behavioral guidelines (Think Before Coding, Simplicity First, Surgical Changes, Goal-Driven Execution). It significantly reduces AI coding error rates (up to 90%), improving code quality and development efficiency.

@dotey: https://x.com/dotey/status/2057250417638035555

X AI KOLs Timeline

This article shares usage tips from the Codex official team, including persistent conversation flow, voice input, task intervention and queuing, tool integration, automation, and goal setting, to help users get the most out of Codex, an AI coding agent.

This article systematically reviews AI Agent architecture and engineering practices, covering control flow, context engineering, tool design, memory, multi-agent organization, evaluation, tracing, and security. It is based on the OpenClaw implementation and emphasizes the critical role of Harness (testing and validation infrastructure) for system stability.

X AI KOLs

This article systematically reviews AI Agent architecture and engineering practices, covering control flow, context engineering, tool design, memory, multi-agent organization, evaluation, tracing, and security. It is based on the OpenClaw implementation and emphasizes the critical role of Harness (testing and validation infrastructure) for system stability.