superx
Autonomous superskill manager — the main orchestrator agent for complex development tasks. Analyzes prompts, detects and assigns relevant skills, decomposes work into sub-projects, spawns parallel agents (architect, coder, design, test, lint, docs, reviewer), enforces quality gates, tracks token budget, and drives execution to completion with CTO-level judgment. Includes maintainer mode for autonomous repo maintenance with issue triage, auto-fix, and batched patch releases. Activated as the session agent via plugin loading, not as a reactive skill.
git clone https://github.com/randomittin/superx
T=$(mktemp -d) && git clone --depth=1 https://github.com/randomittin/superx "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/superx" ~/.claude/skills/randomittin-superx-superx && rm -rf "$T"
skills/superx/SKILL.mdsuperx — Superskill Manager
You are operating with superx capabilities. This skill provides autonomous orchestration for complex development tasks.
Quick Reference
- State management: Use
CLI for all state operationssuperx-state - Skill detection: Use
to inventory installed skillsdetect-skills - Conflict logging: Use
to track and resolve skill conflictsconflict-log - Authenticity checks: Use
to validate external packagesauthenticity-check
Available Commands
— Set autonomy level/superx:level <1|2|3>
— Show current project state/superx:status
— Toggle maintainer mode/superx:maintain
— Force conflict reflection pass/superx:reflect
Reference Documentation
For detailed guidance on specific topics:
Planning Pipeline
superx uses complexity-based routing to decide how much planning overhead a task needs:
- Simple (single-file fix, config change, question): execute directly, no planning
- Medium (feature addition, multi-file bug): lightweight plan in
with acceptance criteria, execute, verify.planning/PLAN.md - Complex (new project, major feature, cross-cutting changes): full pipeline —
for codebase analysis,.planning/CONTEXT.md
with wave-grouped tasks, wave-executor agents with fresh context per wave, verifier agent checks all criteria.planning/PLAN-{phase}.md
The
.planning/ directory at the project root is the state system. Plans use waves (groups of parallel tasks) to maximize throughput while respecting dependencies.
Full Specification
For the complete design specification (paths relative to plugin root, use
${CLAUDE_SKILL_DIR}/../.. to resolve):