
Security News
pnpm 11.5 Adds Support for Recognizing npm Staged Publishes
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.
@agentick/devtools
Advanced tools
Real-time debugging and observability for Agentick applications. Provides a server that captures execution events and a browser UI for inspection.
Real-time debugging and observability for Agentick applications. Provides a server that captures execution events and a browser UI for inspection.
pnpm add @agentick/devtools
import { startDevToolsServer } from "@agentick/devtools";
import { createApp } from "@agentick/core";
// Start DevTools server
const devtools = startDevToolsServer({ port: 3001 });
// Enable DevTools in your app
const app = createApp(MyApp, {
model: myModel,
devTools: true, // Enables event emission
});
// Navigate to http://localhost:3001 to view DevTools UI
Convenience function to create and start a DevTools server:
const devtools = startDevToolsServer({
port: 3001, // Default: 3001
host: "127.0.0.1", // Default: 127.0.0.1
debug: false, // Enable debug logging
heartbeatInterval: 30000, // SSE heartbeat interval (ms)
});
// Get server URL
console.log(devtools.getUrl()); // "http://127.0.0.1:3001"
// Stop when done
devtools.stop();
For more control, use the class directly:
import { DevToolsServer } from "@agentick/devtools";
const server = new DevToolsServer({ port: 3001 });
await server.start();
// Later...
await server.stop();
| Endpoint | Method | Description |
|---|---|---|
/ | GET | DevTools UI |
/events | GET | SSE stream of execution events |
/api/history | GET | All buffered events as JSON |
/api/clear | GET | Clear event history |
The DevTools server captures these events from @agentick/core:
| Event | Description |
|---|---|
execution_start | Execution began |
execution_end | Execution completed |
tick_start | Model API call started |
tick_end | Model API call completed |
compiled | JSX compiled to messages/tools |
model_request | Request sent to provider |
provider_response | Raw provider response |
model_response | Normalized response |
tool_call | Tool invocation |
tool_result | Tool execution result |
fiber_snapshot | Component tree state |
content_delta | Streaming text chunk |
View all executions with status, duration, and token usage.
Scrub through individual ticks within an execution to see:
Inspect the component hierarchy with:
Monitor context utilization:
import express from "express";
import { createExpressAdapter } from "@agentick/express";
import { startDevToolsServer } from "@agentick/devtools";
const app = express();
// Start DevTools on separate port
startDevToolsServer({ port: 3001 });
// Your Agentick app with DevTools enabled
const agentick = createExpressAdapter(MyApp, {
model: myModel,
devTools: true,
});
app.use("/api", agentick);
app.listen(3000);
import { createGateway } from "@agentick/gateway";
import { startDevToolsServer } from "@agentick/devtools";
startDevToolsServer({ port: 3001 });
const gateway = createGateway({
agents: { assistant: myApp },
devTools: true,
});
┌─────────────────────────┐
│ Agentick App/Session │
│ (devTools: true) │
└────────────┬────────────┘
│ devToolsEmitter.emit()
↓
┌─────────────────────────┐
│ DevToolsServer │
│ - Buffers events │
│ - Broadcasts via SSE │
│ - Serves UI │
└────────────┬────────────┘
│ HTTP /events (SSE)
↓
┌─────────────────────────┐
│ Browser UI (React) │
│ - Real-time updates │
│ - Execution inspection│
│ - Fiber tree viewer │
└─────────────────────────┘
TENTICKLE_DEVTOOLS_PORT=3001
TENTICKLE_DEVTOOLS_HOST=127.0.0.1
const devtools = startDevToolsServer({
port: process.env.DEVTOOLS_PORT || 3001,
host: process.env.DEVTOOLS_HOST || "127.0.0.1",
debug: process.env.NODE_ENV === "development",
});
MIT
FAQs
Real-time debugging and observability for Agentick applications. Provides a server that captures execution events and a browser UI for inspection.
The npm package @agentick/devtools receives a total of 120 weekly downloads. As such, @agentick/devtools popularity was classified as not popular.
We found that @agentick/devtools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.