
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
agenttrace-react
Advanced tools
Headless React primitives for AI agent execution traces, human-in-the-loop approval gates, and agent status UI. Works with LangGraph, AG-UI, and the Vercel AI SDK.
Headless React primitives for building AI agent UIs — execution trace visualisation, human-in-the-loop approval gates, and agent status dashboards. Works with LangGraph, AG-UI protocol, and the Vercel AI SDK. Zero styling, full control.
npm install agenttrace-react
# or
pnpm add agenttrace-react
| Framework | Adapter |
|---|---|
| LangGraph | agenttrace-langgraph |
| AG-UI protocol | agenttrace-ag-ui |
| Vercel AI SDK | coming soon |
| Any agent framework | bring your own events via applyEvent() |
TraceProvider — context provider, owns trace stateTraceTree — recursively renders the agent node treeTraceNode — renders a single node via render propsApprovalGate — renders only when a node needs human approvalRunStatus — exposes run status and elapsed timeuseTrace() — hook for direct trace state accessapplyEvent() and full TypeScript typesimport {
TraceProvider,
TraceTree,
TraceNode,
ApprovalGate,
RunStatus
} from 'agenttrace-react'
export function AgentView({ run }) {
return (
<TraceProvider
run={run}
onApprovalAction={(id, decision) => {
console.log(id, decision)
}}
>
<RunStatus>
{({ status, elapsed }) => <div>Status: {status} ({elapsed}ms)</div>}
</RunStatus>
<TraceTree>
{({ node }) => (
<TraceNode node={node}>
{({ name, status, type }) => (
<div data-status={status} data-type={type}>
{name}
</div>
)}
</TraceNode>
)}
</TraceTree>
<ApprovalGate>
{({ approve, reject, context }) => (
<div>
<p>{context.description}</p>
<button onClick={approve}>Approve</button>
<button onClick={reject}>Reject</button>
</div>
)}
</ApprovalGate>
</TraceProvider>
)
}
agenttrace-react is intentionally unstyled. It manages trace state and rendering logic, while your app keeps full control over markup, layout, and design system integration. Bring Tailwind, shadcn/ui, or your own components — no overrides needed.
agenttrace-langgraph — adapter for LangGraph JS stream eventsagenttrace-ag-ui — adapter for AG-UI protocol SSE eventsgithub.com/nedbpowell/agenttrace-react
MIT
FAQs
Headless React primitives for AI agent execution traces, human-in-the-loop approval gates, and agent status UI. Works with LangGraph, AG-UI, and the Vercel AI SDK.
The npm package agenttrace-react receives a total of 38 weekly downloads. As such, agenttrace-react popularity was classified as not popular.
We found that agenttrace-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.