Ai Dev Team Marketplace banner
JavierQuinan JavierQuinan

Ai Dev Team Marketplace

Testing community

Description

Marketplace de plugins y skills multiagente para Claude Code y otras IA: desarrollo Full Stack, QA, Playwright, DevSecOps, arquitectura, debugging, GitHub, Supabase, continuidad de proyectos y automatización del ciclo completo de desarrollo.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

AI Dev Team Marketplace

Open-source marketplace of reusable AI software-development skills, agents, and workflows for [Claude Code](https://code.claude.com/docs). It packages a full, stack-agnostic "AI software development team" — architecture, implementation, debugging, testing, security review, code review, and release preparation — as a versioned Claude Code plugin any repository can install.

Why this exists

Reimplementing the same "act as my dev team" instructions per repository doesn't scale, and copy-pasted prompts drift. This marketplace ships that behavior as installable, versioned, discoverable **skills** and **agents** instead — detected from your repository's actual evidence, not hardcoded to one framework or one project.

Architecture

ai-dev-team-marketplace/
├── .claude-plugin/marketplace.json   # marketplace manifest (registers plugins below)
├── plugins/
│   └── ai-dev-team/                  # the plugin: skills, agents, references
├── docs/                             # architecture notes, ADRs
├── scripts/validate.py               # local validator (no external deps)
├── tests/evals/                      # scenario-based evals, one set per skill
└── .github/                          # CI, issue/PR templates

The marketplace is designed to hold more than one plugin over time (see [ROADMAP.md](ROADMAP.md)); v0.1.0 ships exactly one: `ai-dev-team`. See [docs/adr/0001-marketplace-architecture.md](docs/adr/0001-marketplace-architecture.md) for the reasoning behind this structure, and [docs/architecture/token-efficiency.md](docs/architecture/token-efficiency.md) for how skills stay cheap to have installed.

What's in `ai-dev-team` v0.1.0

**10 user-facing skills**, each a clearly-scoped responsibility rather than a framework-specific clone:

`continuing-project-work` · `orchestrating-development-team` · `analyzing-codebase` · `planning-implementation` · `implementing-features` · `debugging-systematically` · `testing-with-playwright`