{"id":49389897,"url":"https://github.com/bostonaholic/team","last_synced_at":"2026-06-17T03:01:23.706Z","repository":{"id":347493820,"uuid":"1194240963","full_name":"bostonaholic/team","owner":"bostonaholic","description":"Drive a feature from idea to PR with a team of Claude Code agents.","archived":false,"fork":false,"pushed_at":"2026-06-12T13:10:32.000Z","size":1671,"stargazers_count":4,"open_issues_count":39,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-12T14:23:27.674Z","etag":null,"topics":["agent-orchestration","agent-skills","agentic-ai","agentic-workflow","claude-code"],"latest_commit_sha":null,"homepage":"https://team.bostonaholic.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bostonaholic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":["bostonaholic"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2026-03-28T04:52:45.000Z","updated_at":"2026-06-12T12:44:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bostonaholic/team","commit_stats":null,"previous_names":["bostonaholic/team"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/bostonaholic/team","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bostonaholic%2Fteam","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bostonaholic%2Fteam/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bostonaholic%2Fteam/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bostonaholic%2Fteam/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bostonaholic","download_url":"https://codeload.github.com/bostonaholic/team/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bostonaholic%2Fteam/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34431810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent-orchestration","agent-skills","agentic-ai","agentic-workflow","claude-code"],"created_at":"2026-04-28T12:04:54.771Z","updated_at":"2026-06-17T03:01:23.700Z","avatar_url":"https://github.com/bostonaholic.png","language":"TypeScript","funding_links":["https://github.com/sponsors/bostonaholic"],"categories":[],"sub_categories":[],"readme":"# Team\n\nA Claude Code plugin that orchestrates specialized agents to autonomously implement entire features end-to-end, driven by the **QRSPI** workflow. The orchestrator is the main Claude Code session; it persists pipeline state as artifacts in `docs/plans/` and tracks live progress with TodoWrite.\n\n📖 **Documentation:** [team.bostonaholic.dev](https://team.bostonaholic.dev)\n\n## Design Philosophy\n\nEach agent does work and returns an artifact. The orchestrator dispatches the next agent based on a phase table. Agents remain decoupled — they know nothing about each other.\n\n## Pipeline (QRSPI)\n\n```\nQUESTION → RESEARCH → DESIGN → STRUCTURE → PLAN → WORKTREE → IMPLEMENT → PR\n```\n\n- **Question** — Decompose intent into a full task record (`task.md`) and neutral research questions (`questions.md`). The questioner is the only agent that ever sees the user's original description.\n- **Research** *(isolated)* — Parallel agents (file-finder + researcher) consume only `questions.md`. They never see the task. This structurally prevents opinion-bias in research findings.\n- **Design** *(human gate)* — Design author asks open questions interactively, then drafts a ~200-line alignment doc. Humans review here.\n- **Structure** — Break the design into vertical slices with verification checkpoints. Produced autonomously; advances to Plan with no human gate.\n- **Plan** — Tactical implementation plan derived from the structure. Read by the implementer; not human-gated.\n- **Worktree** — Orchestrator prepares an isolated git worktree.\n- **Implement** — Test-first (test-architect writes failing tests, mechanical gate confirms) → slice execution (implementer commits each vertical slice atomically) → adversarial verification (5 parallel reviewers + typed failure-class retry loop, max 5 rounds).\n- **PR** — Update changelog, commit, open pull request, surface the tracking item.\n\n## Usage\n\n```\n/team Add rate limiting middleware to all API endpoints\n```\n\nFor well-understood bugs, skip the QRSPI ceremony:\n\n```\n/team-fix Users see stale cache after profile update\n```\n\nOr run individual phases:\n\n```\n/team-question Add rate limiting middleware to all API endpoints\n/team-research docs/plans/\u003cid\u003e/\n/team-design docs/plans/\u003cid\u003e/\n/team-structure docs/plans/\u003cid\u003e/\n/team-plan docs/plans/\u003cid\u003e/\n/team-worktree docs/plans/\u003cid\u003e/\n/team-implement docs/plans/\u003cid\u003e/\n/team-pr docs/plans/\u003cid\u003e/\n```\n\nEach command after `/team-question` takes the artifact directory printed by\nthe previous step (`docs/plans/\u003cid\u003e/`) as its single argument.\n\n## Install\n\n```\nclaude plugin add /path/to/team\n```\n\n## Architecture\n\nSee [docs/architecture.md](docs/architecture.md) for the full architecture, the artifact frontmatter schema, and the phase-inference rules.\n\n## Components\n\n- **13 agents** in `agents/` — decoupled workers that read predecessor artifacts from `docs/plans/` and write their outputs there\n- **30 entry-point + methodology skills** in `skills/` — slash commands, the standalone `/shipit` land utility, and shared methodologies\n- **4 hooks** in `hooks/` — safety guards and `docs/plans/`-aware compaction resilience\n- **1 registry** at `skills/team/registry.json` — phase-tagged inventory of the 13 agents\n- **State** lives in `docs/plans/\u003cid\u003e/*.md` — `\u003cid\u003e` is `\u003cTICKET\u003e-\u003ctopic\u003e` or `\u003cYYYY-MM-DD\u003e-\u003ctopic\u003e`. Each artifact carries YAML frontmatter (`topic`, `date`, `phase`; gated artifacts also carry `approved`, `approved_at`, `revision`). Live in-session coordination uses TodoWrite.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbostonaholic%2Fteam","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbostonaholic%2Fteam","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbostonaholic%2Fteam/lists"}