A powerful AI orchestrator and skill system for Antigravity, featuring 40+ 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. 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 · and any AI tool that supports the Agent Skills open standard
Overview
Mega-Mind brings together 42 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 (13 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 workflowsusing-mega-mind- Master skill routingwriting-skills- Create new custom skills
Domain Expert Skills (27 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
- Testing: test-genius, e2e-test-specialist, bug-hunter
- DevOps: ci-config-helper, docker-expert, k8s-orchestrator, observability-specialist
- Data: data-engineer, data-analyst, ml-engineer, search-vector-architect
- Security: security-reviewer
- Performance: performance-profiler
- Documentation: doc-writer
- UX: ux-designer
- Product: product-manager, workflow-orchestrator
- Meta: skill-generator
Token Optimization (1 skill)
Reduce LLM Token consumption:
- RTK:
rtk- CLI proxy for 60-90% token savings on common dev commands
Quick Start
1. Install the CLI
# pip
pip install mega-mind-orchestrator
# pipx (recommended — isolated, globally available)
pipx install mega-mind-orchestrator
# uv
uv tool install mega-mind-orchestrator
# Or run directly without installation
uvx mega-mind-orchestrator
2. Initialize skills in your project
# From your project root
cd /path/to/your/project
# Standard install (Antigravity, Cursor, and other standard tools)
mega-mind-orchestrator init
# Also install for Claude Code (CLI)
mega-mind-orchestrator init --claude
# Also install for GitHub Copilot (VS Code)
mega-mind-orchestrator init --copilot
# Overwrite an existing installation
mega-mind-orchestrator init --force
mega-mind-orchestrator init --copilot --claude --force
The --claude flag adds:
CLAUDE.md— project rules and workflows (mirrorsAGENTS.md).claude/skills/— all 42 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 42 skills available as/slash commandsagents/<name>.agent.md— custom agent personas for VS Code
📖 For full details see USAGE.md
3. Verify the installation
bash .agent/tests/run-tests.sh
📖 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
│
├── 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/
│ ├── using-mega-mind/
│ └── writing-skills/
│
│ ├── # Domain Expert Skills
│ ├── tech-lead/
│ ├── frontend-architect/
│ ├── backend-architect/
│ ├── infra-architect/
│ ├── api-designer/
│ ├── code-polisher/
│ ├── migration-upgrader/
│ ├── mobile-architect/
│ ├── legacy-archaeologist/
│ ├── test-genius/
│ ├── e2e-test-specialist/
│ ├── bug-hunter/
│ ├── ci-config-helper/
│ ├── docker-expert/
│ ├── k8s-orchestrator/
│ ├── observability-specialist/
│ ├── data-engineer/
│ ├── data-analyst/
│ ├── ml-engineer/
│ ├── search-vector-architect/
│ ├── security-reviewer/
│ ├── performance-profiler/
│ ├── doc-writer/
│ ├── ux-designer/
│ ├── product-manager/
│ ├── workflow-orchestrator/
│ └── skill-generator/
│
├── workflows/
│ ├── brainstorm.md
│ ├── execute-plan.md
│ ├── write-plan.md
│ ├── debug.md
│ ├── review.md
│ └── ship.md
│
├── agents/
│ ├── code-reviewer.md
│ ├── tech-lead.md
│ └── qa-engineer.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
Feature Development
brainstorming → writing-plans → test-driven-development →
executing-plans → verification-before-completion →
requesting-code-review → finishing-a-development-branch
Bug Fix
systematic-debugging → bug-hunter → test-driven-development →
verification-before-completion → finishing-a-development-branch
Code Improvement
code-polisher → test-driven-development → verification-before-completion
Security Audit
security-reviewer → systematic-debugging → test-driven-development →
verification-before-completion
New Project
tech-lead → brainstorming → [architects] → writing-plans →
[docker-expert, k8s-orchestrator, ci-config-helper] → development chains
Key Concepts
Task Tracking
All tasks are tracked in 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)
mega-mind-orchestrator init
# Also install for GitHub Copilot (VS Code)
mega-mind-orchestrator init --copilot
# Install into a specific path
mega-mind-orchestrator init /path/to/project
mega-mind-orchestrator init /path/to/project --copilot
# Overwrite existing installation
mega-mind-orchestrator init --force
mega-mind-orchestrator init --copilot --force
# Show CLI version
mega-mind-orchestrator --version
Validate Installation
bash .agent/tests/run-tests.sh
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
- RTK - Token optimization CLI
License
MIT License - Free to use and modify.
Project details
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 mega_mind_orchestrator-0.3.2.tar.gz.
File metadata
- Download URL: mega_mind_orchestrator-0.3.2.tar.gz
- Upload date:
- Size: 186.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aee0365e13c17a241e7971a8ba63743bbaf736e9a2304fa503327dd554f645d3
|
|
| MD5 |
9e95f430452beaee4dec472ef51e1a92
|
|
| BLAKE2b-256 |
64fbbe66c2ae99a6a897fc154233f33961a8d1d8455a4219e1fe1f770c907e03
|
Provenance
The following attestation bundles were made for mega_mind_orchestrator-0.3.2.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:
mega_mind_orchestrator-0.3.2.tar.gz -
Subject digest:
aee0365e13c17a241e7971a8ba63743bbaf736e9a2304fa503327dd554f645d3 - Sigstore transparency entry: 1086057371
- Sigstore integration time:
-
Permalink:
k1lgor/mega-mind-skills@46d16193d7051c179916dad23d03d02fbd9132d1 -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/k1lgor
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@46d16193d7051c179916dad23d03d02fbd9132d1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file mega_mind_orchestrator-0.3.2-py3-none-any.whl.
File metadata
- Download URL: mega_mind_orchestrator-0.3.2-py3-none-any.whl
- Upload date:
- Size: 125.5 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 |
f404637e76849acf75e915af7d52e740e6aed621fbb69ecf5511c10852359688
|
|
| MD5 |
fe7926f2fefd08ab807a24e3c1548aa4
|
|
| BLAKE2b-256 |
fd4ce883bb10123c7d9b7d51530e8639d3f8c92bf08af23dde5ffa6155720f59
|
Provenance
The following attestation bundles were made for mega_mind_orchestrator-0.3.2-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:
mega_mind_orchestrator-0.3.2-py3-none-any.whl -
Subject digest:
f404637e76849acf75e915af7d52e740e6aed621fbb69ecf5511c10852359688 - Sigstore transparency entry: 1086057399
- Sigstore integration time:
-
Permalink:
k1lgor/mega-mind-skills@46d16193d7051c179916dad23d03d02fbd9132d1 -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/k1lgor
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@46d16193d7051c179916dad23d03d02fbd9132d1 -
Trigger Event:
push
-
Statement type: