Skip to content

Commit 121ddba

Browse files
chore(release): version packages (#5)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d51cad8 commit 121ddba

File tree

4 files changed

+35
-35
lines changed

4 files changed

+35
-35
lines changed

β€Ž.changeset/devtools-bridge.mdβ€Ž

Lines changed: 0 additions & 19 deletions
This file was deleted.

β€Ž.changeset/profiler.mdβ€Ž

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# agent-react-devtools
2+
3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- d1e02f9: **Daemon, DevTools bridge, and component tree**
8+
9+
**Daemon** β€” Persistent background process with IPC server (Unix socket) that manages connections and dispatches commands.
10+
11+
**DevTools Bridge** β€” WebSocket server implementing the React DevTools "Wall" protocol. Connects to running React apps via `react-devtools-core`.
12+
13+
**Component Tree** β€” Parse and inspect the full React component hierarchy:
14+
15+
- View component tree with types, keys, and parent/child relationships
16+
- Inspect props, state, and hooks of any component
17+
- Search components by display name (fuzzy or exact match)
18+
- Count components by type
19+
20+
**CLI** β€” Command-line interface with commands: `start`, `stop`, `status`, `tree`, `find`, `count`, `get component`.
21+
22+
**Formatting** β€” Token-efficient output designed for LLM consumption.
23+
24+
- 626a21a: **Profiler**
25+
26+
Start and stop profiling sessions to capture render performance data from connected React apps.
27+
28+
- **Render reports** β€” Per-component render duration and count
29+
- **Slowest components** β€” Ranked by self render time
30+
- **Most re-rendered** β€” Ranked by render count
31+
- **Commit timeline** β€” Chronological view of React commits with durations
32+
- **Commit details** β€” Per-component breakdown for a specific commit, sorted by self time
33+
34+
CLI commands: `profile start`, `profile stop`, `profile report`, `profile slow`, `profile rerenders`, `profile timeline`, `profile commit`.

β€Žpackages/agent-react-devtools/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-react-devtools",
3-
"version": "0.0.0",
3+
"version": "0.1.0",
44
"description": "CLI tool for AI agents to inspect React component trees and profile performance",
55
"type": "module",
66
"bin": {

0 commit comments

Comments
Β (0)