Agent DevTools is a platform that lets an AI agent observe, understand and explain an application runtime through the open Agent DevTools Protocol (ADP).
Application -> Adapter -> ADP -> Agent DevTools -> CLI / MCP / SDK / IDE
The public packages use the @adp-devtools npm scope and share a common version.
- Generic protocol, client, runtime, browser transport, CLI, MCP and testing packages.
- Web runtimes through Playwright or Chromium CDP.
- Angular 20–22 reference adapter with components, directives, Router, DI, Signals, classic Forms, Signal Forms, NgRx and profiling.
- PixiJS 8 adapter with scene graph, renderer and managed GPU texture metadata.
- Read-only snapshots, queries, event streams, deterministic diffs and evidence-based explanations.
Graph, diagnostics, replay, application interaction, mutation and dynamic third-party plugin installation are deferred to V2.
pnpm install
pnpm build
pnpm --filter @adp-devtools/browser exec playwright-core install chromium
pnpm --filter basic-app startFor normal use, install the CLI globally and let it install Chromium:
npm install --global @adp-devtools/cli
agent-devtools install chromiumIn another terminal:
pnpm --filter @adp-devtools/cli exec agent-devtools open http://localhost:4200
pnpm --filter @adp-devtools/cli exec agent-devtools status --json
pnpm --filter @adp-devtools/cli exec agent-devtools snapshot --json
pnpm --filter @adp-devtools/cli exec agent-devtools query components --resource components name=App --json
pnpm --filter @adp-devtools/cli exec agent-devtools closeThe Angular-oriented commands are adapter contributions:
pnpm --filter @adp-devtools/cli exec agent-devtools components tree --json
pnpm --filter @adp-devtools/cli exec agent-devtools router active --json
pnpm --filter @adp-devtools/cli exec agent-devtools di tree --json
pnpm --filter @adp-devtools/cli exec agent-devtools signals list --json
pnpm --filter @adp-devtools/cli exec agent-devtools signal-forms list --jsonPixiJS applications registered with @pixi/devtools expose dedicated read-only commands:
pnpm --filter @adp-devtools/cli exec agent-devtools scene tree --json
pnpm --filter @adp-devtools/cli exec agent-devtools rendering info --json
pnpm --filter @adp-devtools/cli exec agent-devtools assets textures --jsonRuntime discovery needs no application change. Optional instrumentation provides stable identities, histories, correlations and redaction:
import { provideAgentDevtools } from '@adp-devtools/angular';
bootstrapApplication(AppComponent, {
providers: [
provideAgentDevtools({
redact: ['auth.token', 'user.password'],
historyLimit: 100,
signalForms: {
captureSchemas: true,
captureValidationEvents: true,
captureSubmissions: true,
},
}),
],
});Use the Angular composition for the reference adapter:
import { connectAngularBrowser } from '@adp-devtools/angular/browser';
const client = await connectAngularBrowser({
url: 'http://localhost:4200',
browserName: 'chromium',
headless: true,
});
try {
const status = await client.status();
const snapshot = await client.snapshot();
const components = await client.query({
domain: 'components',
resource: 'components',
});
console.log({ status, snapshot, components });
} finally {
await client.close();
}@adp-devtools/browser remains adapter-neutral and accepts adapter bundles through adapterScripts.
PixiJS-only consumers can use connectPixiBrowser() from @adp-devtools/pixi/browser. CLI and MCP load the Angular and PixiJS bundles together and activate only the adapters detected on the page.
| Package | Responsibility |
|---|---|
@adp-devtools/protocol |
ADP types, schemas and version policy |
@adp-devtools/core |
Generic client, transport, query and diff helpers |
@adp-devtools/runtime |
Adapter host, sessions, snapshots, events and serialization |
@adp-devtools/browser |
Generic Playwright/CDP transport |
@adp-devtools/angular |
Angular adapter, browser composition and instrumentation |
@adp-devtools/pixi |
PixiJS scene graph, rendering and texture adapter |
@adp-devtools/cli |
Generic commands plus Angular and PixiJS contributions |
@adp-devtools/mcp |
adp_*, Angular and PixiJS tools |
@adp-devtools/testing |
Generic fixtures and adapter test harnesses |
The packages under packages/adapters/ are private implementation modules aggregated by @adp-devtools/angular.
- V1 is read-only and development-oriented.
- Serialization enforces depth, collection, string, property and total-byte budgets.
- Configured paths are redacted before values enter snapshots or event history.
- Inspection does not invoke provider factories, getters or store methods.
- Runtime references are scoped to a snapshot generation.
- CDP endpoints should remain bound to loopback interfaces.
- Architecture
- ADP v1
- Angular adapter
- PixiJS adapter
- RFC index
- Implementation notes
- Public API and migration
- Security policy
- Release process
pnpm check
pnpm test:browsersMIT