A powerful AI orchestrator and skill system for Antigravity, Claude Code, GitHub Copilot, and more. Featuring 60+ specialized domain expert skills, disciplined development workflows, and RTK token optimization.
Project description
Mega-Mind Skills System
A unified superpowers + virtual company skill set for AI coding assistants
This is a comprehensive skill-based workflow system that combines the disciplined development workflows of Superpowers with the domain expertise of Virtual Company and Everything-Claude-Code. It provides structured, reliable behavior for AI coding assistants across the entire software development lifecycle.
Compatible with: Antigravity · GitHub Copilot (VS Code) · Claude Code · Cursor · OpenCode · Codex · and any AI tool that supports the Agent Skills open standard
Overview
Mega-Mind brings together 59 skills organized into categories:
The Mega-Mind Orchestrator (1 skill)
The master controller that routes requests and coordinates skill chains:
mega-mind- Primary entry point via/mega-mindcommand
Core Workflow Skills (12 skills)
Structured development discipline that ensures quality at every step:
brainstorming- Explore approaches before committingwriting-plans- Create detailed implementation plansexecuting-plans- Disciplined execution with trackingsingle-flow-task-execution- Sequential task decompositiontest-driven-development- Write tests first, implement secondsystematic-debugging- Root cause analysis methodologyrequesting-code-review- Structured review requestsreceiving-code-review- Handle feedback systematicallyverification-before-completion- Prove it works before donefinishing-a-development-branch- Clean branch managementusing-git-worktrees- Parallel development workflowswriting-skills- Create new custom skills
Domain Expert Skills (32 skills)
Specialized expertise for specific technical domains:
- Architecture: tech-lead, frontend-architect, backend-architect, infra-architect, api-designer
- Development: code-polisher, migration-upgrader, mobile-architect, legacy-archaeologist, python-patterns
- Testing: test-genius, e2e-test-specialist, bug-hunter, eval-harness
- DevOps: ci-config-helper, docker-expert, k8s-orchestrator, observability-specialist, deployment-patterns
- Data: data-engineer, data-analyst, ml-engineer, search-vector-architect, database-migrations, regex-vs-llm-structured-text
- Security: security-reviewer
- Performance: performance-profiler
- Documentation: doc-writer
- UX: ux-designer
- Product: product-manager, workflow-orchestrator
- Meta: skill-generator
Meta & Learning Skills (12 skills)
Advanced patterns for efficiency and continuous improvement:
continuous-learning-v2- Instinct extraction and evolution (The Learning Loop)search-first- Mandatory research and library check before codingautonomous-loops- Multi-step AI pipeline patterns without interventionskill-stocktake- Quality audit and library maintenancecost-aware-llm-pipeline- Model routing and token budget trackingverification-loop- 6-phase continuous verification pipelineiterative-retrieval- Progressive context refinement for subagentsstrategic-compact- Logical context window managementcontent-hash-cache-pattern- SHA-256 caching for file processingmulti-plan- Collaborative multiple-model planningmulti-execute- Orchestrated multi-model execution and auditplankton-code-quality- Write-time formatting and linting enforcement
Token Optimization & Context (2 skills)
Reduce LLM Token consumption and manage context limits:
rtk- CLI proxy for 60-90% token savings on common dev commandscontext-optimizer- Context offloading and session continuity
Quick Start
1. Install the CLI
# pip
pip install mmo
# pipx (recommended — isolated, globally available)
pipx install mmo
# uv
uv tool install mmo
# Or run directly without installation
uvx mmo
2. Initialize skills in your project
# From your project root
cd /path/to/your/project
# Standard install (Antigravity, Cursor, and other standard tools)
mmo init
# Also install for Claude Code (CLI)
mmo init --claude
# Also install for GitHub Copilot (VS Code)
mmo init --copilot
# Overwrite an existing installation
mmo init --force
mmo init --copilot --claude --force
The --claude flag adds:
CLAUDE.md— project rules and workflows (mirrorsAGENTS.md).claude/skills/— all 59 skills in the Agent Skills standard directory
The --copilot flag adds a .github/ directory with:
copilot-instructions.md— global instructions loaded automaticallyskills/<name>/SKILL.md— all 59 skills available as/slash commandsagents/<name>.agent.md— custom agent personas for VS Code
📖 For full details see USAGE.md
3. Verify the installation
Once initialized, use the /verify command (triggered by the verification-before-completion skill) or run the verification-loop to ensure all components are correctly installed and functional.
📖 For full installation details see USAGE.md
Using Mega-Mind
The /mega-mind Command
The /mega-mind command is your primary entry point to the skill system. It acts as an intelligent orchestrator that:
- Analyzes your request to understand intent
- Routes to the appropriate skill(s)
- Coordinates skill chains for complex tasks
- Tracks progress throughout
Available Commands
/mega-mind status - Show current session state
/mega-mind skills - List all available skills
/mega-mind workflows - List available workflows
/mega-mind route <request> - Analyze and route a request
/mega-mind execute <workflow> - Execute a named workflow
/mega-mind help - Show help message
Direct Skill Commands
| Command | Skill | Purpose |
|---|---|---|
/brainstorm |
brainstorming | Explore approaches before deciding |
/plan |
writing-plans | Create implementation plan |
/execute |
executing-plans | Execute plan with tracking |
/debug |
systematic-debugging | Debug systematically |
/review |
requesting-code-review | Request code review |
/ship |
finishing-a-development-branch | Deploy to production |
/tdd |
test-driven-development | Test-first development |
/verify |
verification-before-completion | Verify before marking done |
Example Usage
User: /mega-mind I need to add user authentication with OAuth
🧠 Mega-Mind Orchestration
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📋 Request Analyzed: New feature - User Authentication with OAuth
🔄 Routed to skill chain:
1. tech-lead → Define architecture
2. brainstorming → Explore OAuth providers
3. api-designer → Design auth API
4. writing-plans → Create implementation plan
5. test-driven-development → Write auth tests
6. backend-architect → Implement auth service
7. frontend-architect → Implement login UI
8. security-reviewer → Security audit
9. verification-before-completion → Verify
📍 Starting with: tech-lead
File Structure
mega-mind-skills/
├── README.md # Main documentation (this file)
├── USAGE.md # Installation guide
├── COMPLETE_REFERENCE.md # Detailed reference
├── quick-install.sh # Simple copy installer (legacy)
│
└── .agent/
├── AGENTS.md # Master contract and rules
├── hooks/
│ └── hooks.json # context-mode hooks registry
├── instincts/ # Learned patterns & observations
├── skills/
│ ├── mega-mind/ # 🧠 Master orchestrator
│ │
│ ├── # Core Workflow Skills
│ ├── brainstorming/
│ ├── writing-plans/
│ ├── executing-plans/
│ ├── single-flow-task-execution/
│ ├── test-driven-development/
│ ├── systematic-debugging/
│ ├── requesting-code-review/
│ ├── receiving-code-review/
│ ├── verification-before-completion/
│ ├── finishing-a-development-branch/
│ ├── using-git-worktrees/
│ └── writing-skills/
│ │
│ ├── # Domain Expert Skills
│ ├── tech-lead/
│ ├── frontend-architect/
│ ├── backend-architect/
│ ├── infra-architect/
│ ├── api-designer/
│ ├── code-polisher/
│ ├── migration-upgrader/
│ ├── mobile-architect/
│ ├── legacy-archaeologist/
│ ├── python-patterns/
│ ├── test-genius/
│ ├── e2e-test-specialist/
│ ├── bug-hunter/
│ ├── eval-harness/
│ ├── ci-config-helper/
│ ├── docker-expert/
│ ├── k8s-orchestrator/
│ ├── observability-specialist/
│ ├── deployment-patterns/
│ ├── data-engineer/
│ ├── data-analyst/
│ ├── ml-engineer/
│ ├── search-vector-architect/
│ ├── database-migrations/
│ ├── regex-vs-llm-structured-text/
│ ├── security-reviewer/
│ ├── performance-profiler/
│ ├── doc-writer/
│ ├── ux-designer/
│ ├── product-manager/
│ ├── workflow-orchestrator/
│ └── skill-generator/
│ │
│ ├── # Meta & Learning Skills
│ ├── continuous-learning-v2/
│ ├── search-first/
│ ├── autonomous-loops/
│ ├── skill-stocktake/
│ ├── cost-aware-llm-pipeline/
│ ├── verification-loop/
│ ├── iterative-retrieval/
│ ├── strategic-compact/
│ ├── content-hash-cache-pattern/
│ ├── multi-plan/
│ ├── multi-execute/
│ └── plankton-code-quality/
│ │
│ └── # Token Optimization & Context
│ ├── rtk/
│ └── context-optimizer/
│
├── workflows/
│ ├── brainstorm.md
│ ├── debug.md
│ ├── execute-plan.md
│ ├── high-complexity-dev.md
│ ├── review.md
│ ├── ship.md
│ └── write-plan.md
│
├── agents/
│ ├── architect.md
│ ├── code-reviewer.md
│ ├── planner.md
│ ├── qa-engineer.md
│ ├── security-reviewer.md
│ └── tech-lead.md
│
└── tests/
└── run-tests.sh
Skill Routing Matrix
The mega-mind orchestrator automatically routes requests to appropriate skills:
| Request Type | Primary Skill | Secondary Skills |
|---|---|---|
| New feature | tech-lead | brainstorming, writing-plans |
| Bug fix | systematic-debugging | bug-hunter |
| Code quality | code-polisher | - |
| Performance | performance-profiler | - |
| Security | security-reviewer | - |
| Testing | test-driven-development | test-genius |
| Documentation | doc-writer | - |
| API design | api-designer | backend-architect |
| Frontend | frontend-architect | ux-designer |
| Backend | backend-architect | api-designer |
| DevOps | infra-architect | docker-expert, k8s-orchestrator |
| Data | data-engineer | data-analyst |
| ML/AI | ml-engineer | - |
| Mobile | mobile-architect | - |
| Legacy code | legacy-archaeologist | - |
Workflows
Standard Development Chain (The Z-Pattern)
search-first → tech-lead → brainstorming → writing-plans → test-driven-development →
executing-plans → verification-loop → requesting-code-review →
finishing-a-development-branch → continuous-learning-v2
High-Complexity Chain (Phase 3 Orchestration)
search-first → architect → multi-plan → [Approval] → multi-execute →
verification-loop → security-reviewer → finishing-a-development-branch
Autonomous Loop Chain
writing-plans → autonomous-loops → [Loop Execution] → verification-loop →
continuous-learning-v2
Bug Fix
systematic-debugging → bug-hunter → test-driven-development →
verification-loop → finishing-a-development-branch → continuous-learning-v2
Code Improvement
plankton-code-quality → code-polisher → test-driven-development → verification-loop
Key Concepts
Task Tracking
All tasks are tracked in <project-root>/docs/plans/task.md:
| Task ID | Description | Status | Priority | Dependencies |
|---|---|---|---|---|
| 1 | Example task | pending | high | - |
Status values: pending, in_progress, completed, blocked
Verification Before Completion
Never mark a task as complete without:
- Running tests
- Running linting
- Building successfully
- Manual verification
- Checking for regressions
Execution Model
- Session loads
.agent/AGENTS.mdrules /mega-mindanalyzes and routes requests- Design work flows through brainstorming → planning → execution
- All work tracked in task tracker
- Nothing marked done without verification
RTK Token Optimization
When RTK is installed, CLI commands are automatically optimized:
| Original | RTK-Optimized | Savings |
|---|---|---|
git log |
rtk git log |
85% |
cargo test |
rtk cargo test |
90% |
npm test |
rtk npm test |
90% |
pytest |
rtk pytest |
90% |
Install RTK:
cargo install rtk
# or
curl -sSL https://github.com/rtk-ai/rtk/releases/latest/download/rtk-$(uname -s)-$(uname -m) -o /usr/local/bin/rtk
chmod +x /usr/local/bin/rtk
Installation
See USAGE.md for the full installation guide.
CLI Reference
# Install skills into current directory (Antigravity / Claude / Cursor / standard)
mmo init
# Also install for OpenCode
mmo init --opencode
# Also install for Codex
mmo init --codex
# Install into a specific path
mmo init /path/to/project
mmo init /path/to/project --copilot
# Overwrite existing installation
mmo init --force
mmo init --copilot --claude --opencode --codex --force
# Show CLI version
mmo --version
Validate Installation
Use the internal /verify command within your AI assistant to run the verification protocol.
Tests verify:
- Core workflow skills existence
- Domain expert skills existence
- Workflows existence
- Agent profiles existence
- AGENTS.md validation
- Skill frontmatter validation
Contributing
To add new skills:
- Create a new directory in
.agent/skills/ - Add a
SKILL.mdfile with proper frontmatter:--- name: skill-name description: What this skill does triggers: - "/trigger" - "keyword" ---
- Include instructions and examples
- Run tests to verify
Credits
This project combines and adapts:
- Superpowers by obra - Core workflow philosophy
- antigravity-superpowers by skainguyen1412 - Antigravity adaptation
- virtual-company by k1lgor - Domain expertise skills
- Everything-Claude-Code by affaan-m - Claude Code adaptation
- RTK - Token optimization CLI
License
MIT License - Free to use and modify.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mmo-0.5.0.tar.gz.
File metadata
- Download URL: mmo-0.5.0.tar.gz
- Upload date:
- Size: 282.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40bfe31d0872612ed7d3ec8a91fb9e325fd6a1b94ae9f84b16b1defb8f346b3b
|
|
| MD5 |
df979967a44089094f1a60a7ddb7123d
|
|
| BLAKE2b-256 |
c1e92ba6573efee693b72c0f5b0ae31f9683034a64c3e78dc74dfdec80f3f03e
|
Provenance
The following attestation bundles were made for mmo-0.5.0.tar.gz:
Publisher:
publish.yml on k1lgor/mega-mind-skills
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mmo-0.5.0.tar.gz -
Subject digest:
40bfe31d0872612ed7d3ec8a91fb9e325fd6a1b94ae9f84b16b1defb8f346b3b - Sigstore transparency entry: 1181390996
- Sigstore integration time:
-
Permalink:
k1lgor/mega-mind-skills@72ffb7334a3cdb01b2d1b724849f6dd2718e808d -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/k1lgor
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@72ffb7334a3cdb01b2d1b724849f6dd2718e808d -
Trigger Event:
push
-
Statement type:
File details
Details for the file mmo-0.5.0-py3-none-any.whl.
File metadata
- Download URL: mmo-0.5.0-py3-none-any.whl
- Upload date:
- Size: 188.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
622aa98b3d344f2e1dbbbe5085784b5d5154cf747eab2bbce0cd6c6b63b2cf66
|
|
| MD5 |
251c034878368ebf079b62bbcc4caed5
|
|
| BLAKE2b-256 |
e8dc784b4e58e4328caaf29ea54292bdca91bb6ef516243a147744816523808f
|
Provenance
The following attestation bundles were made for mmo-0.5.0-py3-none-any.whl:
Publisher:
publish.yml on k1lgor/mega-mind-skills
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mmo-0.5.0-py3-none-any.whl -
Subject digest:
622aa98b3d344f2e1dbbbe5085784b5d5154cf747eab2bbce0cd6c6b63b2cf66 - Sigstore transparency entry: 1181391073
- Sigstore integration time:
-
Permalink:
k1lgor/mega-mind-skills@72ffb7334a3cdb01b2d1b724849f6dd2718e808d -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/k1lgor
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@72ffb7334a3cdb01b2d1b724849f6dd2718e808d -
Trigger Event:
push
-
Statement type: