ccteams
01Plugin Claude Code
Agent-team package manager for Claude Code — switch agent teams like nvm switches Node versions.
Plugin Claude Code
Agent-team package manager for Claude Code — switch agent teams like nvm switches Node versions.
Plugin Claude Code
Agent-team package manager for Claude Code. Provides slash commands to list, select, and apply pre-built agent teams to the current project.
Skill Claude CodeCodex
Pick and apply the best ccteams agent team for a described need using natural language — reads team metadata, selects the closest match, and applies it.
Skill Claude CodeCodex
List all available ccteams agent teams with their names, descriptions, and tags.
Skill Claude CodeCodex
Apply a named ccteams agent team to the current project by running ccteams use .
Skill Claude CodeCodex
Frontier-grade engineering working method — goal compression, ground truth before opinion, hypothesis discipline, execution as evidence, honest reporting, exit checklist. Read in full at the start of any non-trivial task; inject the digest into every delegation prompt.
Agent
Bug fix specialist. Use AFTER bug-reproducer has confirmed a root cause and reproduction. Makes the minimal change that fixes the root cause (not the symptom), adds a regression test, and verifies the suite passes.
Agent
Bug reproduction specialist. Use FIRST when investigating a bug — before any fix attempt. Reads code and logs, forms a root-cause hypothesis, and produces a deterministic reproduction (a fully-specified failing test or exact repro steps). Reports back so the lead can hand off to bug-fixer. Does NOT modify code.
Skill Claude CodeCodex
Operational playbook for systematic debugging — hypothesis ledgers, discriminating experiments, mechanism sentences, minimal fixes, sibling hunts. Read in full at the start of every bug investigation.
Agent
Django implementation specialist. Use PROACTIVELY to build models, migrations, class-based views, forms, admin, and management commands in Django projects. Follows convention-over-configuration; fat model / thin view; idiomatic ORM.
Agent
Django + DRF code reviewer and QA. MUST BE USED to verify any Django change before it is declared done. Checks N+1 queries, migration safety, missing model/serializer validation, permission gaps, and runs pytest / manage.py test plus linters.
Agent
Django REST Framework specialist. Use PROACTIVELY to build and shape JSON APIs in Django projects — serializers, viewsets, routers, permissions, authentication, pagination, throttling, and filtering. Serializers own field validation; views own permissions.
Skill Claude CodeCodex
Operational playbook for Django + DRF — settings/version detection, ORM loading strategy, migration discipline, serializer field hygiene, timezone rules, and exact verification commands. Read in full at the start of every task on this team.
Agent
Framework-agnostic UI implementation specialist. Use PROACTIVELY to build components, layouts, and styling for user-facing web UIs. Detects the project's existing component framework and matches its conventions rather than imposing one.
Agent
UI/UX and accessibility reviewer. MUST BE USED to verify any user-facing UI change before it is declared done. Checks WCAG accessibility, responsive layout, keyboard navigation, and UX consistency. Runs any configured a11y linter.
Skill Claude CodeCodex
Operational playbook for framework-agnostic UI/UX/a11y — semantic-element-first markup, keyboard/focus verification, responsive layout checks, reuse of existing tokens over new CSS. Read in full at the start of every task on this team.
Agent
Technical design specialist. Use for non-trivial design decisions — "how should I structure this", "which approach / library should I use", "design the data model / API contract / module boundaries". Detects the existing stack and stays consistent with it. Produces a decision with rationale, not code.
Agent
Stack-agnostic implementation specialist. Use PROACTIVELY for any backend, frontend, or full-stack implementation work — adding features, editing logic, writing tests, fixing code. Detects the project's language and conventions first; never assumes a stack.
Agent
Stack-agnostic QA reviewer. MUST BE USED to verify any change before it is declared done. Detects and runs the project's tests/lint/typecheck, hunts edge cases and regressions, and reports findings as file:line findings. Does not implement — describes missing tests for the builder to write.
Agent
Feature scoping specialist. Use when starting new or vague work — "I want to build X", "add a feature that does Y", new project framing. Turns the request into a one-sentence goal, explicit done-means criteria, a minimal shippable scope, and a list of deferred items. Produces a plan, not code.
Agent
Git hygiene and release specialist. Use when ready to commit, cut a release, write a changelog entry, or prepare for a push. Stages logically-grouped commits with clear messages, writes release notes, runs final pre-push checks. Never pushes, tags, or deletes on its own — it reports the exact command for the lead to…
Skill Claude CodeCodex
Operational playbook for stack-agnostic feature work — fixed-order stack detection, vertical-slice delivery, a catalog of unfamiliar-codebase mistakes (phantom utils, pattern drift, generated files, invented commands), and verification using only the project's own commands. Read in full at the start of every task on…
Agent
Go HTTP API implementation specialist. Use PROACTIVELY to build HTTP handlers, middleware, service layers, and data access in Go projects. Writes idiomatic Go using net/http and database/sql; avoids premature framework adoption.
Agent
Go code reviewer and QA. MUST BE USED to verify any Go change before it is declared done. Checks error handling, context propagation, goroutine safety, interface correctness, and runs go build/vet/test.