AGI Super Team is a versioned library of AI agent skills, specialist role packs, and human-in-the-loop team workflows for Codex and local coding-agent workspaces.

🧠 The system in one minute

Layer What you get Why it matters
🧩 Skills Canonical physical SKILL.md files grouped into 14 outcome categories Reuse focused playbooks instead of rebuilding instructions for every task
🤖 Agents 14 inspectable role packs with persona, workflow, and tool guidance Give planning, engineering, content, research, and review clear ownership
🔁 Team packs 4 manifest-driven combinations, including 3 focused starter kits Start with a small team for one outcome instead of loading everything

The packs are designed for this review loop:

flowchart LR
  B["Brief"] --> C["Coordinator scopes"] --> S["Specialists execute with skills"] --> R["Reviewer challenges"] --> H["Human approves"]

AGI Super Team owns the versioned content, selection rules, safe copying, and repository checks. Your configured coding-agent harness owns the model, credentials, tools, execution, and final task output.

🎯 Start with an outcome

Starter kit Give it Intended evaluation outputs Team
🚀 Solo Founder A product or launch brief Decision memo, test-first implementation plan, launch drafts CEO, PE, CCO
✍️ Content Creator Source material and an audience Research notes, content drafts, measurement plan CCO, CDO, CMO
📊 Quant Research A research question and historical data Research memo, backtest plan, risk review; never a live trade CQO, CDO, CFO

Need wider coverage? full-team selects all 14 manifest Agents. Start with a focused kit unless your evaluation genuinely needs every role.

⚡ Try it safely

Using Codex? Inspect the separately packaged Codex distribution. Its repository structure is tested; installation and loading in a current Codex client remain Validation pending.

To evaluate the generic workspace path, clone main and preview Solo Founder. Preview is the default and writes nothing:

git clone --depth 1 --branch main https://github.com/aAAaqwq/AGI-Super-Team.git
cd AGI-Super-Team
git rev-parse HEAD
./install.sh --source "$PWD" --destination /path/to/review-workspace solo-founder

Inspect the selected Agents and destinations. Apply only when they match your intent:

./install.sh --source "$PWD" --destination /path/to/review-workspace --apply solo-founder

The generic installer validates every required file before publishing staged workspaces. It preserves existing persona and skill files and rejects dangerous source or destination symlinks. See setup.md for prerequisites, updates, and recovery.

The manifest separates portable required/optional Skills from harnessSpecific catalog entries and unbundled external recommendations. Generic installs copy only classes that pass the current portability contract; the complete copied payload is scanned for known host paths and runtime-only commands.

Success: the preview writes nothing; apply creates three inspectable role workspaces without overwriting existing files.

🧭 Browse skills by outcome

The root README stays curated. Use the generated catalog when you need the complete, searchable inventory.

Build and operate Reach and create Decide and automate
🤖 AI Agents & Orchestration 📈 Marketing, SEO & Growth 📊 Data, Analytics & Research
💻 Software Engineering ✍️ Content, Media & Publishing 🧭 Business Operations & Strategy
☁️ Cloud, DevOps & Reliability 🤝 Sales, CRM & Customer Success ⚙️ Apps & Workflow Automation
🛡️ Security, Privacy & Legal 🎨 Product, Design & UX 💹 Finance, Trading & Markets
🧰 Specialized Domains & Utilities 🇨🇳 Chinese Platform Workflows

Explore the repository by depth:

Path Best for
Skills overview Support levels, bounded starting points, and discovery guidance
Generated skill catalog Every canonical physical skill grouped by task outcome
Agents Persona, identity, workflow, and tool guidance
Practical guides Codex, Claude Code, compatibility, team choice, and workflow boundaries
Cookbooks Longer material for content, prompts, research, and quantitative workflows
Architecture map Sources of truth, generated outputs, public entry points, and change ownership
Shared language Module, Interface, Adapter, evidence, and product terminology

🔎 Find high-quality skill sources

agent-skill-repository-index turns Daniel's reviewed source list into a safe selection workflow. Compare one candidate, inspect its permissions and provenance, then install or remove it without globally activating entire repositories.

Need Maintained reference
Compare reviewed sources Source matrix
Inspect the dated popularity signal Star snapshot
Install one candidate safely Installation workflow

Stars help with discovery, not trust. The matrix records DAILY, LIBRARY, and QUARANTINE boundaries; catalogs and runtimes are never bulk-installed.

✅ What is useful today

You can already browse a deterministic skill catalog, inspect every Agent instruction, preview a manifest-selected team, and assemble local role workspaces without overwriting existing files.

Claim Evidence Status
Repository inventory, counts, and references npm run validate -- --warnings-as-errors Verified in this checkout
Generic installer preview, preflight, no-clobber, and staging npm test Verified in this checkout
Generated catalog covers the canonical inventory npm run check:skills Verified in this checkout
Primary-outcome classification agrees with the fixed reviewed set Gold Set method + generated report Reviewed-set gate passed in this checkout
Current-client harness installation and loading Revision-matched harness receipt Validation pending
Task quality or business outcome Public fixture, baseline, rubric, and artifacts Validation pending

🧾 Reproducible installation receipt

Create a disposable destination, prove preview wrote nothing, apply, and verify the three expected Solo Founder workspaces:

AGI_SOLO_DEST="$(mktemp -d "${TMPDIR:-/tmp}/agi-solo-founder.XXXXXX")"

./install.sh --source "$PWD" --destination "$AGI_SOLO_DEST" solo-founder
test -z "$(find "$AGI_SOLO_DEST" -mindepth 1 -print -quit)"

./install.sh --source "$PWD" --destination "$AGI_SOLO_DEST" --apply solo-founder
test -f "$AGI_SOLO_DEST/workspace-ceo/SOUL.md"
test -f "$AGI_SOLO_DEST/workspace-pe/SOUL.md"
test -f "$AGI_SOLO_DEST/workspace-cco/SOUL.md"

python3 -m venv .venv
. .venv/bin/activate
python -m pip install --requirement requirements-dev.txt
npm test
npm run validate -- --warnings-as-errors
npm run check:skills
npm run check:taxonomy-evaluation
npm run check:architecture

This receipt proves manifest-driven selection, preview safety, staged copying, and repository integrity for the inspected checkout and destination state. It does not prove harness loading, task quality, or business outcomes.

The animation uses sanitized paths and is illustrative, not runtime evidence. Read the storyboard transcript.

Did the preview-first workflow help? Star the repository so you can find the verified path again.

🔌 Choose a distribution

Surface Repository support Start here Evidence boundary
Generic/local workspace Preview-first install.sh Use the quick start above Installer behavior is integration-tested
Codex Separate curated package .codex/INDEX.md Package structure is tested; current-client load receipt pending
Claude Code Plugin manifest present Claude Code guide Confirm support in the installed client version
Cursor, Gemini, Kimi Metadata or manifests present Harness compatibility Presence does not establish feature parity

The generic path requires Bash and Node.js; repository verification also requires npm and Python 3. Exact operating-system and client-version support remains bounded by CI and published receipts.

🗂️ Repository architecture

flowchart LR
  subgraph R["AGI Super Team repository: versioned content, not a runtime"]
    S["skills/<br/>reusable playbooks"]
    A["agents/<br/>14 role packs"]
    M["team-manifest.json<br/>4 kits + skill mappings"]
    C["plugins/agi-super-team-codex/<br/>curated Codex package"]
  end

  S --> I["install.sh<br/>preview → preflight → staged copy"]
  A --> I
  M --> I
  I --> W["workspace-agent<br/>inspectable local files"]
  W --> H["External harness<br/>model + tools + execution"]
  C --> H
  H --> O["Task artifacts<br/>behavioral evidence pending"]

  S --> G["Catalog generator"]
  M --> G
  G --> K["catalog/<br/>generated discovery index"]

  S --> V["Validator + tests"]
  A --> V
  M --> V
  I --> V
  V --> E["Repository receipt<br/>structure + install safety"]
File or directory Responsibility
config/team-manifest.json Source of truth for Agents, kits, and portable, harness-specific, or external Skill assignments
config/repository-architecture.json Machine-readable Modules, path owners, generated lineage, and Adapter status
agents/ and skills/ Authored, versioned inputs; only manifest-classified portable payloads enter generic workspaces
.codex/INDEX.md Installation guide and Codex package index
plugins/agi-super-team-codex/ Actual curated Codex plugin, skills, and bundled agent roles
install.sh Preview-first selection, preflight, staging, and no-clobber publishing
scripts/repository_model.py Shared inventory and manifest model used by validation and generation
catalog/ Generated discovery output; never an inventory source
tests/ Repository, installer, site-data, and SEO contracts
docs/ Project site, verification data, and editorial guides

For the authored-input, generated-output, distribution, and evidence boundaries, read the full repository architecture map, shared language, and decision records.

config/external-skill-sources.json records tombstones for removed machine-local links, including unresolved provenance fields. README text and generated catalog files are not inventory sources.

🧠 Team topology

Founder / operator
└── CEO: coordination and quality gates
    ├── CTO / PE: architecture and implementation
    ├── CPO / CCO / CMO: product, content, and growth
    ├── CQO / CFO / CDO: quantitative research, finance, and data
    ├── CLO / CRO / CSO / COO: legal, research, sales, and operations
    └── Governor: independent review and escalation

Mentor names are creative framing. They do not imply affiliation, endorsement, or guaranteed imitation.

🛡️ Boundaries and human approval

AGI Super Team is not a model, autonomous orchestrator, or agent runtime. Installing files does not make a harness load or execute them automatically.

  • Inspect third-party commands and dependencies before execution.
  • Never place credentials, private data, browser sessions, or production configuration in a skill or issue.
  • Keep financial workflows in research or paper-trading environments until independently validated.
  • Require explicit human approval for posts, messages, transactions, deployments, and destructive operations.
  • Report vulnerabilities privately through GitHub Security Advisories.

🤝 Contribute and get help

⭐ GitHub Stars

Track AGI Super Team's public growth over time. The live visualization is provided by Star History; click the chart to inspect the interactive timeline.