toffyui/ccteams

Agent Team Package Manager for Claude Code

46Stars on the repository
40Mods indexed here, across every type
7d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

bug-fixer

01

toffyui/ccteams

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.

46 7d ago A 46 tokens original MIT

bug-reproducer

02

toffyui/ccteams

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.

46 7d ago A 67 tokens original MIT

django-builder

03

toffyui/ccteams

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.

46 7d ago A 51 tokens original MIT

django-reviewer

04

toffyui/ccteams

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.

46 7d ago A 57 tokens original MIT

drf-api

05

toffyui/ccteams

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.

46 7d ago A 54 tokens original MIT

ui-builder

06

toffyui/ccteams

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.

46 7d ago A 47 tokens original MIT

ux-reviewer

07

toffyui/ccteams

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.

46 7d ago A 51 tokens original MIT

architect

08

toffyui/ccteams

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.

46 7d ago A 63 tokens original MIT

builder

09

toffyui/ccteams

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.

46 7d ago A 52 tokens original MIT

qa-reviewer

10

toffyui/ccteams

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.

46 7d ago A 65 tokens original MIT

scope-planner

11

toffyui/ccteams

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.

46 7d ago A 74 tokens original MIT

shipper

12

toffyui/ccteams

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…

46 7d ago A 78 tokens original MIT

go-builder

13

toffyui/ccteams

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.

46 7d ago A 47 tokens original MIT

go-reviewer

14

toffyui/ccteams

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.

46 7d ago A 46 tokens original MIT

next-builder

15

toffyui/ccteams

Agent

Next.js App Router + TypeScript implementation specialist. Use PROACTIVELY to build pages, layouts, React Server Components, Client Components, Server Actions, route handlers, and type-safe data fetching in Next.js 14+ projects using the app/ directory. Writes Tailwind-styled, accessible UI.

46 7d ago A 64 tokens original MIT

next-reviewer

16

toffyui/ccteams

Agent

Next.js App Router + TypeScript code reviewer and QA. MUST BE USED to verify any Next.js change before it is declared done. Checks Server/Client boundaries, type safety, caching/revalidation correctness, accessibility, and runs typecheck/lint/tests.

46 7d ago A 55 tokens original MIT

fastapi-builder

17

toffyui/ccteams

Agent

FastAPI + Pydantic v2 implementation specialist. Use PROACTIVELY to build async route handlers, dependency injection chains, Pydantic request/response models, and service logic in FastAPI projects.

46 7d ago A 46 tokens original MIT

fastapi-reviewer

18

toffyui/ccteams

Agent

FastAPI + Pydantic v2 code reviewer and QA. MUST BE USED to verify any FastAPI change before it is declared done. Checks async correctness, Pydantic boundary validation, dependency injection hygiene, and runs ruff/mypy/pytest.

46 7d ago A 56 tokens original MIT

rails-builder

19

toffyui/ccteams

Agent

Ruby on Rails implementation specialist. Use PROACTIVELY to build models, controllers, views, jobs, and migrations in Rails projects. Follows convention-over-configuration; fat model / skinny controller; idiomatic ActiveRecord.

46 7d ago A 48 tokens original MIT

rails-reviewer

20

toffyui/ccteams

Agent

Rails code reviewer and QA. MUST BE USED to verify any Rails change before it is declared done. Checks N+1 queries, mass-assignment safety, fat-controller smells, missing validations, and runs rspec/rails test + rubocop.

46 7d ago A 53 tokens original MIT

rn-advisor

21

toffyui/ccteams

Agent

Expo + React Native native-decision advisor. Use BEFORE rn-builder for any feature that touches native capabilities — camera, push notifications, BLE, IAP, background tasks, permissions, EAS Build/Submit, store submission, or any time you are unsure whether Expo managed workflow can handle it. Explains decisions in…

46 7d ago A 86 tokens original MIT

rn-builder

22

toffyui/ccteams

Agent

Expo + React Native (TypeScript) implementation specialist. Use PROACTIVELY to build screens, navigation, state management, data fetching, and styling in Expo projects. Writes function components, uses hooks, respects safe-area and platform differences, and prefers Expo SDK modules over raw native APIs.

46 7d ago A 61 tokens original MIT

rn-reviewer

23

toffyui/ccteams

Agent

Expo + React Native code reviewer and QA. MUST BE USED to verify any React Native change before it is declared done. Checks render performance, iOS/Android platform correctness, safe-area handling, navigation correctness, Expo config validity, accessibility, and runs typecheck/lint/tests.

46 7d ago A 60 tokens original MIT

tech-researcher

24

toffyui/ccteams

Agent

Technical research and evaluation specialist. Use when choosing a library, comparing architectural approaches, or making a technology decision before implementation. Produces a written recommendation with tradeoffs. Writes no code and edits no files.

46 7d ago A 46 tokens original MIT