Skip to main content
On this page

Reference

This section is generated from source files in plugins/ and .claude-plugin/marketplace.json.

The reference is organized plugin-first. Plugin overview pages live under the Plugins series. Component pages use plugin/type series groups (for example, core-skills), ordered by marketplace plugin order and then by component type: skills, agents, MCP servers, helper binaries, plugin manifests.

Run this command after changing source artifacts:

Shell
npm run docs:reference

adk-core

Skills

  • auto - Top-level prompt-routing dispatcher for the adk marketplace. The default entry point for any non-trivial request when the user has not named a specific…
  • config-update - Refresh ~/.config/adk/*.md against live sources to keep drift-prone fields current. Reads each existing meta-info file, queries the topic’s source-of-truth…
  • context-gather - Follow links in a prompt or input file (Jira, Confluence, Google Doc, Slack message/thread, Gmail thread, GitHub PR/issue) and produce a single deduplicated…
  • info - Read and merge ~/.config/adk/*.md into a single structured JSON view that other skills consume. Use when an outer skill needs current operator/repo/MCP…
  • mode-contract - The universal definition of --auto, -i, --fix, and --auto --fix modes used by every adk skill. Reference-only skill: it documents the contract and…
  • prompt-expand - Standalone prompt-expansion skill. Takes a free-form prompt and outputs a structured plan: restated intent, resolved entities, classified verb, link list,…
  • setup - Bootstrap a fresh adk install on a machine. Creates ~/.config/adk/*.md from templates (info, repos, github, datadog, mixpanel, statsig, snowflake, slack,…
  • temp-folder - Canonical .temp/task-/ working-artifact layout. Every other adk skill writes through this convention. Use this skill whenever you need to create a new…

Agents

  • context-gatherer - Multi-source link follower used by adk-core:context-gather. Pulls Jira tickets, Confluence pages, Google Docs, Slack messages/threads, Gmail threads, and…
  • dispatcher - Coordinates the execute phase of adk-core:auto: reads the locked skill-plan.md, decides which downstream skills are needed, spawns parallel subagents via…
  • prompt-expander - Linguistic and entity-resolution helper used by adk-core:auto and adk-core:prompt-expand. Restates the user’s free-form prompt, classifies the verb,…

MCP Servers

None.

Helper Binaries

Plugin Manifest

  • adk-core - adk universal baseline: prompt routing (auto), setup of ~/.config/adk/*.md, meta-info reader, mode contract, .temp/ layout, the universal Bash safety hook,…

adk-code

Skills

  • code-api - Design or evolve a stable interface — REST/HTTP API, RPC contract, internal module boundary, library export surface, CLI flag set, public type definitions —…
  • code-bugfix - Fix a bug with explicit root-cause analysis, the smallest correct patch, and a regression test that fails on the buggy commit and passes on the fix…
  • code-migrate - Migrate a framework, runtime, library version, or build tool with explicit breaking-change analysis, scoped per-file changes, and validation between groups…
  • code-perf - Diagnose and fix a performance regression or hit a stated performance budget — measure first, identify the bottleneck with quoted profiler / trace evidence,…
  • code-refactor - Restructure code WITHOUT changing observable behavior — rename, extract, inline, dedupe, simplify, reshape modules, split a long file — while keeping tests…
  • code-security - Implement a security-hardening change — input validation at the boundary, authn/authz fix, secrets handling, security header (CSP/HSTS/etc.), CORS policy,…
  • code-test - Author or expand automated tests — unit, integration, end-to-end — to cover behavior, raise coverage on a target module, lock in a previously-shipped fix,…
  • code-write - Implement a new feature or general code change in an existing codebase. Reads the repo’s conventions (AGENTS.md / CLAUDE.md / .cursorrules / recent commits)…

Agents

  • implementer - Mutates code in an existing repo on behalf of an adk-code skill. Persona: smallest correct change, no drive-by cleanup, match repo conventions, read every…
  • test-engineer - Authors automated tests on behalf of an adk-code skill. Persona: tests are evidence; behavior-named, not function-named; fail-first then green; cover happy…

MCP Servers

None.

Helper Binaries

None.

Plugin Manifest

  • adk-code - adk code-authoring plugin: write features, fix bugs (with reproducer + regression test first), refactor without behavior change, migrate frameworks,…

adk-review

Skills

  • audit-pr - Fast fixed-set audit on a single PR diff (NOT a deep review). Runs a parallel checklist: lint clean on changed files, typecheck clean, tests-added vs…
  • audit-repo - Whole-repo multi-dimensional audit — security, performance, code quality, dependencies, test coverage, architecture — producing a single severity-tiered…
  • review-code-changes - Self-review of LOCAL working-tree changes (uncommitted, staged, or branch-vs-baseline) — before pushing or opening a PR. Picks up the baseline…
  • review-feedback - Triage existing reviewer comments on a GitHub PR and address each in code with traceable per-comment replies (commit SHA + one-line summary). Different from…
  • review-handoff - Capture a structured session-handoff document so a paused or transferred task can resume without information loss. Reads the canonical .temp/task-/…
  • review-pr - Review a remote PR (your own or a peer’s) on GitHub. Performs a fresh full-scope review every run (not just delta-since-last-review), validates existing…

Agents

  • code-reviewer - Principal-Engineer code-review subagent for adk-review skills. Reads a diff and the surrounding files, runs dimension passes (correctness, performance,…
  • security-reviewer - Adversarial security-review subagent for adk-review and adk-code skills. Threat-models the diff, walks attack surface and trust boundaries, and surfaces…

MCP Servers

  • bitbucket - Bitbucket MCP via npx (npm package: bitbucket-mcp). Auth: BITBUCKET_TOKEN (workspace access token or app password). Surface: PR…
  • github - GitHub remote/hosted MCP at https://api.githubcopilot.com/mcp/ (read-only path; remove /readonly for write mode). Auth: PAT via Authorization: Bearer…

Helper Binaries

None.

Plugin Manifest

  • adk-review - adk code-review plugin: review someone else’s PR, review your local changes vs a baseline, address existing PR feedback, capture session handoff, and run…

adk-docs

Skills

  • docs-changelog - Append or update a CHANGELOG.md entry from a set of commits or a release-tag range. Reads git log <from>..<to> and groups commits by type (Added / Changed…
  • docs-commit-message - Draft a commit message from the staged diff (git diff --cached). Detects the repo’s existing convention — Conventional Commits, semantic-release format,…
  • docs-diagram - Author a Mermaid diagram (.mermaid / .mmd) from a description OR from real code / config evidence. Supports flowchart, sequence, class, state, ER, gantt,…
  • docs-pr-description - Draft a PR description from the actual diff and commit history — NOT from the branch name alone. Reads git log <base>..HEAD, git diff <base>...HEAD, and…
  • docs-publish-confluence - Publish an existing markdown document as a Confluence page (create or update) via the workspace Atlassian connector — NO MCP ships with this plugin…
  • docs-publish-gdrive - Publish a markdown document to Google Drive as a Google Doc, plain markdown file, or PDF via the workspace Google Drive connector (NO MCP ships with this…
  • docs-review - Review an existing technical document — a markdown file in the repo, a fetched URL, a Confluence page via the workspace Atlassian connector, or a Google Doc…
  • docs-write - Author or refresh a technical markdown document — README, runbook, ADR, API reference, onboarding guide, migration guide, design doc — grounded in the…

Agents

  • doc-reviewer - Audit a markdown / Confluence / Google Doc artifact against the actual code it describes. Produces severity-tiered findings (Blocker = wrong or actively…
  • doc-writer - Author prose artifacts for the adk marketplace: markdown docs (README, runbook, ADR, migration guide, API reference), PR descriptions, commit messages, and…

MCP Servers

None.

Helper Binaries

None.

Plugin Manifest

  • adk-docs - adk documentation plugin: write/review prose docs (README, runbook, ADR, migration guide), draft PR descriptions and commit messages, append changelog…

adk-investigate

Skills

  • investigate-datadog - Query Datadog (logs, metrics, monitors, traces, dashboards, error tracking, incidents) via the hosted Datadog MCP server. Three modes-of-use: investigate
  • investigate-deploy - Recent deploys timeline for one or more repos via gh run list (CLI). Surfaces deploy workflow runs in window, status, duration, triggering commit, author,…
  • investigate-experiment - Cross-check a Statsig experiment’s pulse against Mixpanel reality and Datadog guardrails. Statsig says “primary metric is up 5%”; this skill validates by…
  • investigate-incident - Full incident-investigation workflow combining Datadog (logs + metrics + traces + monitor history), recent deploy timeline (via gh CLI), and (optionally)…
  • investigate-mixpanel - Query Mixpanel for product-analytics insights via the workspace Mixpanel connector. Three modes-of-use: usage-summary (top events, DAU / WAU / retention),…
  • investigate-rca - Full root-cause-analysis composite. Runs /adk-investigate:investigate-incident (DD logs/metrics/traces/monitors + recent deploys + Slack — accepts a…
  • investigate-snowflake - Read non-PII data from Snowflake via the workspace QDP_SNOWFLAKE_MCP_SERVER connector. Surfaces the connection-path decision (local MCP / prod service…
  • investigate-statsig - Query Statsig for experiment results, gate evaluations, audit logs, and metric definitions via the hosted Statsig MCP. Five modes-of-use: pulse (read…

Agents

  • incident-investigator - Coordinates the multi-source triage phase of investigate-incident and investigate-rca: pulls Datadog (logs / metrics / traces / monitors) in parallel, runs…

MCP Servers

  • datadog - Datadog hosted MCP (Preview). Auth via DATADOG_API_KEY + DATADOG_APP_KEY (App key needs scope mcp_read; add mcp_write only if you actually need to…
  • statsig - Statsig hosted MCP. Header auth via STATSIG_CONSOLE_API_KEY (https://console.statsig.com/api_keys → type=Console → scope=omni_read_only). For browser-based…

Helper Binaries

None.

Plugin Manifest

  • adk-investigate - adk investigation plugin: query Datadog (logs/metrics/traces/monitors), Mixpanel (funnels/cohorts/usage), Statsig (experiments/gates/audit logs), Snowflake…