{
  "markdown": "# Super\n\nSuper is a complete software development methodology for your coding agents, built on top of a set of composable skills and some initial instructions that make sure your agent uses them.\n\n> Super is a rebranded fork of [obra/superpowers](https://github.com/obra/superpowers).\n\n## Quickstart\n\nGive your agent Super: [Claude Code](#claude-code), [Antigravity](#antigravity), [Codex App](#codex-app), [Codex CLI](#codex-cli), [Cursor](#cursor), [Factory Droid](#factory-droid), [Gemini CLI](#gemini-cli), [GitHub Copilot CLI](#github-copilot-cli), [Kimi Code](#kimi-code), [OpenCode](#opencode), [Pi](#pi).\n\n## How it works\n\nIt starts from the moment you fire up your coding agent. As soon as it sees that you're building something, it *doesn't* just jump into trying to write code. Instead, it steps back and asks you what you're really trying to do. \n\nOnce it's teased a spec out of the conversation, it shows it to you in chunks short enough to actually read and digest. \n\nAfter you've signed off on the design, your agent puts together an implementation plan that's clear enough for an enthusiastic junior engineer with poor taste, no judgement, no project context, and an aversion to testing to follow. It emphasizes true red/green TDD, YAGNI (You Aren't Gonna Need It), and DRY. \n\nNext up, once you say \"go\", it launches a *subagent-driven-development* process, having agents work through each engineering task, inspecting and reviewing their work, and continuing forward. It's not uncommon for your agent to work autonomously for a couple hours at a time without deviating from the plan you put together.\n\nThere's a bunch more to it, but that's the core of the system. And because the skills trigger automatically, you don't need to do anything special. Your coding agent just has Super.\n\n## Installation\n\nInstallation differs by harness. If you use more than one, install Super separately for each one.\n\n### Claude Code\n\nInstall Super from the Super marketplace:\n\n- Register the marketplace:\n\n  ```bash\n  /plugin marketplace add chwzr/super-marketplace\n  ```\n\n- Install the plugin from this marketplace:\n\n  ```bash\n  /plugin install super@super-marketplace\n  ```\n\n### Antigravity\n\nInstall Super as a plugin from this repository:\n\n```bash\nagy plugin install https://github.com/chwzr/super-skills\n```\n\nAntigravity runs the plugin's session-start hook, so Super is active from\nthe first message. Reinstall with the same command to update.\n\n### Codex App\n\nSuper is available via the [official Codex plugin marketplace](https://github.com/openai/plugins).\n\n- In the Codex app, click on Plugins in the sidebar.\n- You should see `Super` in the Coding section.\n- Click the `+` next to Super and follow the prompts.\n\n### Codex CLI\n\nSuper is available via the [official Codex plugin marketplace](https://github.com/openai/plugins).\n\n- Open the plugin search interface:\n\n  ```bash\n  /plugins\n  ```\n\n- Search for Super:\n\n  ```bash\n  super\n  ```\n\n- Select `Install Plugin`.\n\n### Cursor\n\n- In Cursor Agent chat, install from marketplace:\n\n  ```text\n  /add-plugin super\n  ```\n\n- Or search for \"super\" in the plugin marketplace.\n\n### Factory Droid\n\n- Register the marketplace:\n\n  ```bash\n  droid plugin marketplace add https://github.com/chwzr/super-skills\n  ```\n\n- Install the plugin:\n\n  ```bash\n  droid plugin install super@super\n  ```\n\n### Gemini CLI\n\n- Install the extension:\n\n  ```bash\n  gemini extensions install https://github.com/chwzr/super-skills\n  ```\n\n- Update later:\n\n  ```bash\n  gemini extensions update super\n  ```\n\n### GitHub Copilot CLI\n\n- Register the marketplace:\n\n  ```bash\n  copilot plugin marketplace add chwzr/super-marketplace\n  ```\n\n- Install the plugin:\n\n  ```bash\n  copilot plugin install super@super-marketplace\n  ```\n\n### Kimi Code\n\nSuper is available in Kimi Code's plugin marketplace.\n\n- Open Kimi Code's plugin manager:\n\n  ```text\n  /plugins\n  ```\n\n- Go to `Marketplace` > `Super` and install it.\n\n- Or install directly from this repository:\n\n  ```text\n  /plugins install https://github.com/chwzr/super-skills\n  ```\n\n- Detailed docs: [docs/README.kimi.md](docs/README.kimi.md)\n\n### OpenCode\n\nOpenCode uses its own plugin install; install Super separately even if you\nalready use it in another harness.\n\n- Tell OpenCode:\n\n  ```\n  Fetch and follow instructions from https://raw.githubusercontent.com/chwzr/super-skills/refs/heads/main/.opencode/INSTALL.md\n  ```\n\n- Detailed docs: [docs/README.opencode.md](docs/README.opencode.md)\n\n### Pi\n\nInstall Super as a Pi package from this repository:\n\n```bash\npi install git:github.com/chwzr/super-skills\n```\n\nFor local development, run Pi with this checkout loaded as a temporary package:\n\n```bash\npi -e /path/to/super\n```\n\nThe Pi package loads the Super skills and a small extension that injects the `using-super` bootstrap at session startup and again after compaction. Pi has native skills, so no compatibility `Skill` tool is required. Subagent and task-list tools remain optional Pi companion packages.\n\n## The Basic Workflow\n\n1. **brainstorming** - Activates before writing code. Refines rough ideas through questions, explores alternatives, presents design in sections for validation. Saves design document.\n\n2. **using-git-worktrees** - Activates after design approval. Creates isolated workspace on new branch, runs project setup, verifies clean test baseline.\n\n3. **writing-plans** - Activates with approved design. Breaks work into bite-sized tasks (2-5 minutes each). Every task has exact file paths, complete code, verification steps.\n\n4. **subagent-driven-development** or **executing-plans** - Activates with plan. Dispatches fresh subagent per task with two-stage review (spec compliance, then code quality), or executes in batches with human checkpoints.\n\n5. **test-driven-development** - Activates during implementation. Enforces RED-GREEN-REFACTOR: write failing test, watch it fail, write minimal code, watch it pass, commit. Deletes code written before tests.\n\n6. **requesting-code-review** - Activates between tasks. Reviews against plan, reports issues by severity. Critical issues block progress.\n\n7. **finishing-a-development-branch** - Activates when tasks complete. Verifies tests, presents options (merge/PR/keep/discard), cleans up worktree.\n\n**The agent checks for relevant skills before any task.** Mandatory workflows, not suggestions.\n\n## What's Inside\n\n### Skills Library\n\n**Testing**\n- **test-driven-development** - RED-GREEN-REFACTOR cycle (includes testing anti-patterns reference)\n\n**Debugging**\n- **systematic-debugging** - 4-phase root cause process (includes root-cause-tracing, defense-in-depth, condition-based-waiting techniques)\n- **verification-before-completion** - Ensure it's actually fixed\n\n**Collaboration** \n- **brainstorming** - Socratic design refinement\n- **writing-plans** - Detailed implementation plans\n- **executing-plans** - Batch execution with checkpoints\n- **dispatching-parallel-agents** - Concurrent subagent workflows\n- **requesting-code-review** - Pre-review checklist\n- **receiving-code-review** - Responding to feedback\n- **using-git-worktrees** - Parallel development branches\n- **finishing-a-development-branch** - Merge/PR decision workflow\n- **subagent-driven-development** - Fast iteration with two-stage review (spec compliance, then code quality)\n\n**Meta**\n- **writing-skills** - Create new skills following best practices (includes testing methodology)\n- **using-super** - Introduction to the skills system\n\n## Philosophy\n\n- **Test-Driven Development** - Write tests first, always\n- **Systematic over ad-hoc** - Process over guessing\n- **Complexity reduction** - Simplicity as primary goal\n- **Evidence over claims** - Verify before declaring success\n\n## Contributing\n\nAny update to a skill must work across all of the coding agents we support.\n\n1. Create a branch for your work.\n2. Follow the `writing-skills` skill for creating and testing new and modified skills.\n3. Submit a PR and fill in the pull request template.\n\nPlugin-infrastructure tests live in `tests/` and run via the relevant `run-*.sh` scripts or `npm test`. See `skills/writing-skills/SKILL.md` and `CLAUDE.md` for the complete guide.\n\n## Updating\n\nSuper updates are somewhat coding-agent dependent, but are often automatic.\n\n## License\n\nMIT License - see LICENSE file for details\n\n## Visual companion telemetry\n\nBecause skills and plugins don't provide any feedback to maintainers, we have no easy way to know how many people use Super. By default, brainstorming's optional visual companion loads a small logo from `https://telemetry.flxkpe.io`, with the version of Super in use appended to the request. It does not include any details about your project, prompt, or coding agent — no clicks, no content. It only gives a rough sense of how many people use Super and which version. It's 100% optional. To disable it, set the environment variable `SUPER_DISABLE_TELEMETRY` to any true value. Super also honors Claude Code's `DISABLE_TELEMETRY` and `CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC` opt-outs.\n\n## Community\n\n- **Issues**: https://github.com/chwzr/super-skills/issues\n",
  "bytes": 9089,
  "sha": "598d843ef7681719935ba9ddc5b1a012064a9a43f585cf3d08fa8d34dfd3e405",
  "repo_slug": "chwzr/super-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_chwzr_super_skills_120d0f19/readme"
}