Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
The operating system for human+agent dev teams. Enables agents to work autonomously and helps humans support them effectively. Assesses repo readiness, analyzes blast radius before merging, builds and runs release smoke-test catalogs, monitors system health, and drives retrospectives.
npx claudepluginhub teambrilliant/marketplace --plugin tap-skillsAnalyze the impact surface of a PR or set of changes before merging. Use when someone says "blast radius", "review this PR", "what does this change affect", "is this safe to merge", "impact analysis", or after an agent opens a PR that needs human verification. Maps what changed, what else is affected, what could break, assigns risk level, and generates a manual verification checklist. The human gate for mixed human-agent teams.
Curate and maintain `.tap/product.md` — a compressed, agent-readable product-context file (what we build, audience, current focus, bets, non-goals). Use when someone says "curate product context", "install product context", "update product context", "product vision in repo", "what are we building", or when an agent enters a repo and can't find durable product-strategic context. Auto-detects interview / review / refresh mode. Outputs to `.tap/product.md`.
Explore a running web app in a browser and build or update `.tap/smoke-tests.md` — a lean catalog of post-release smoke-test cases. Use whenever someone says "build smoke tests", "create a smoke test catalog", "explore the site for testing", "what should we smoke test", "update the smoke test catalog", "add smoke test cases", or wants exploratory testing of a web app to capture what matters before a release. Use it proactively when entering an app that has no `.tap/smoke-tests.md` and the user wants release coverage. Pairs with `qa-smoke-run`, which executes the catalog this skill produces. Outputs to `.tap/smoke-tests.md`.
Execute the smoke-test catalog at `.tap/smoke-tests.md` against a running web app in a browser, then report only what's broken. Use whenever someone says "run smoke tests", "run the smoke test catalog", "execute smoke tests", "smoke test the release", "qa smoke run", or wants to verify a release or deploy against the app before shipping. This is the per-release regression run. Pairs with `qa-smoke-catalog`, which authors the catalog this skill consumes. Reports pass/fail in chat; saves failure artifacts to `.tap/qa-runs/<timestamp>/`.
Just-in-time retrospective focused on improving agent autonomy. Use when someone says "retro", "retrospective", "what did we learn", "what went wrong", "post-mortem", "incident review", or after a feature ships, an incident resolves, a pattern of agent failures emerges, or any event worth reflecting on. Analyzes what happened, identifies what blocked agent autonomy, and produces concrete improvements (learnings + tickets). Not calendar-driven — event-driven. The learning loop that makes the system self-improving.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Agent Teams orchestration, governance hooks, multi-AI review, memento skill intelligence, and project management skills for Claude Code
Complete project development toolkit: 23 agents, 23 slash commands, 29 lifecycle hooks, and 69 reusable skills for Claude Code workflows
Harness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.
Task-focused agents for test, review, debug, docs, CI, security, refactoring, research, performance, and search-replace — with teammate and subagent role guidance
Persistent memory, shared standards, and structured workflows for AI coding agents. Detects project setup and injects agent context automatically.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Generic development workflow skills for Claude Code. Covers shaping, planning, implementation, and product thinking. Not methodology-specific — works for any dev team.
The operating system for human+agent dev teams. Enables agents to work autonomously and helps human developers support them effectively.
Two questions TAP answers:
# Add Team Brilliant marketplace (one-time)
/plugin marketplace add teambrilliant/marketplace
# Install
/plugin install tap-skills@teambrilliant
Or install directly from GitHub:
/plugin install --from github teambrilliant/tap-skills
| Skill | What it does |
|---|---|
/tap-skills:tap-audit | Assess how ready a repo is for autonomous agent work; seeds .tap/architecture.md (incl. feature-flag system) |
/tap-skills:blast-radius | Impact analysis of PR changes before merging |
/tap-skills:systems-health | Measure dev system health via stocks, flows, feedback loops |
/tap-skills:retrospective | Just-in-time retro focused on improving agent autonomy |
/tap-skills:tech-roadmap | Build 12-month outcome-based tech roadmap for CEO/board |
/tap-skills:curate-product-context | Install and maintain .tap/product.md — product vision, focus, bets, non-goals |
/tap-skills:qa-smoke-catalog | Explore a web app and build/update the .tap/smoke-tests.md release smoke-test catalog |
/tap-skills:qa-smoke-run | Execute the smoke-test catalog in a browser and report only what's broken |
Agent enters repo
│
▼
/tap-audit ──────────► assess readiness, identify gaps
/qa-smoke-catalog ───► build the release smoke-test catalog
│
▼
(implement + test using dev-skills)
│
▼
Agent opens PR
│
▼
/blast-radius ──► human reviews impact, merges or rejects
│
▼
/qa-smoke-run ──► execute the smoke catalog against the release
│
▼
/systems-health ──► measure how the system is performing
│
▼
/retrospective ──► what to improve so agents need less help next time
Skills read and write to .tap/ in the target repo:
.tap/
tap-audit.md ← repo readiness assessment
system-health.md ← latest health metrics
learnings.md ← retrospective insights (append-only)
architecture.md ← discovered ADRs, design decisions, and feature-flag system
product.md ← durable product context: what we build, focus, bets, non-goals
smoke-tests.md ← release smoke-test catalog
qa-runs/ ← smoke-run failure artifacts (only written when a run fails)
.tap/architecture.md and the feature-flag systemtap-audit always captures the repo's feature-flag system as a dedicated decision in .tap/architecture.md — provider (PostHog / LaunchDarkly / Unleash / Flagsmith / static / DB-driven / env-var / "None — direct deploy only"), where flags are defined and read, and naming conventions.
This is the contract that dev-skills's rollout-primitives reference reads when planning a change: discover from .tap/architecture.md first, fall back to grep, ask only if nothing is found. Capturing it once during audit means every downstream plan reads the same answer instead of re-deriving it on each invocation.
If a repo has no flag infra, .tap/architecture.md says so explicitly — planners then default to "direct deploy" without spending cycles re-confirming the absence.
gh CLI (for blast-radius, systems-health, retrospective)teambrilliant/dev-skills — generic development workflow skills (shaping, grooming, planning, implementing, testing, browser QA). tap-skills is the methodology layer that wraps around them.