@kasong2048: Why was Superpowers so popular before, but recently Grill with Docs? Because they are best practices at different stages of Agent development. Superpowers' process outputs a detailed execution plan, which implies the assumption: 1. Agent cannot execute long-range tasks, so...
Summary
The tweet thread compares two AI agent development frameworks (Superpowers and Grill with Docs) as best practices from different eras, highlighting how their planning strategies reflect assumptions about agent capabilities for long-range tasks.
View Cached Full Text
Cached at: 07/02/26, 02:23 PM
Why was Superpowers so popular before, and recently Grill with Docs? Because they are best practices at different stages of Agent development.
Superpowers’ process outputs a detailed execution plan, which implies it assumes:
- The Agent cannot execute long-term tasks, so it needs a Plan’s TODO as a compact execution anchor.
- The Agent’s long-term execution may deviate, so the execution plan needs to be detailed down to “what to do at each step”.
Grill with Docs’ /implement command is just 5 sentences, defining a standard Goal format:
- What is the goal: check PRD or issue
- How to do it: TDD
- Execution constraints: run tests and type checks periodically
- Acceptance criteria: pass via /review
- Delivery standard: commit
The essence is: assume the Agent already has good Goal capabilities.
Similar Articles
@kasong2048: https://x.com/kasong2048/status/2074449455122960448
This article provides a comprehensive comparison of two popular AI coding workflows, grill-me and Superpowers, covering their design philosophies, query methods, execution processes, and applicable scenarios, helping developers choose the right tool based on their needs.
@ma_zhenyuan: https://x.com/ma_zhenyuan/status/2057702858800370052
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.
@teach_fireworks: AI Coding is now entering a very interesting phase. In the past, discussions focused heavily on model capabilities, context length, Agent Loops, Tool Use, and automated programming. However, once Agents are placed in real-world development environments for extended periods, many teams realize the issue isn't just about 'whether code can be generated...',
Introducing re_gent, an open-source tool that provides runtime-level version control and observability infrastructure for AI coding Agents, addressing code traceability and audit issues arising from long-running Agent sessions.
@xxm459259: 已经从 superpowers 换到 mattpocock/skills 两三周了。superpowers 的那套 brainstorming,spec,plan 再到 subagents + worktree 绝大部分时候都不适合我。
Matt Pocock released v1.1 of his skills tool, featuring new commands for planning, specification, implementation, and code review. The poster switched from superpowers to this tool.
@kasong2048: https://x.com/kasong2048/status/2075425094915252235
Summarizes the professional terminology used in Matt Pocock's Grill-Me series of Skills (such as Tracer Bullet, Seam, Design Tree, Throwaway Prototype), and explains how they help AI understand and generate more efficient development solutions.