
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
agenttrace-langgraph
Advanced tools
LangGraph JS adapter for agenttrace-react. Visualise LangGraph agent execution traces, tool calls, and human-in-the-loop interrupts as a live React UI.
LangGraph JS adapter for agenttrace-react — visualise LangGraph agent execution traces, tool calls, and human-in-the-loop interrupts as a live React UI.
npm install agenttrace-react agenttrace-langgraph
# or
pnpm add agenttrace-react agenttrace-langgraph
__interrupt__ events as human-in-the-loop approval gatesagenttrace-react@langchain/langgraphreactuseLangGraphTrace(stream) — consumes a LangGraph stream and returns a live AgentRunlangGraphEventToTraceEvent(event) — maps a single LangGraph stream event to a TraceEventimport { TraceProvider, TraceTree, TraceNode, ApprovalGate } from 'agenttrace-react'
import { useLangGraphTrace } from 'agenttrace-langgraph'
export function LangGraphTraceView({ stream, onApproval }) {
const run = useLangGraphTrace(stream)
return (
<TraceProvider run={run} onApprovalAction={onApproval}>
<TraceTree>
{({ node }) => (
<TraceNode node={node}>
{({ name, status, type }) => (
<div data-status={status} data-type={type}>
{name}: {status}
<ApprovalGate>
{({ approve, reject, context }) => (
<div>
<p>{context.description}</p>
<button onClick={approve}>Approve</button>
<button onClick={reject}>Reject</button>
</div>
)}
</ApprovalGate>
</div>
)}
</TraceNode>
)}
</TraceTree>
</TraceProvider>
)
}
NodeStarted / NodeCompleted / NodeFailed trace eventsagent, tool, approval) from node name and update shape__interrupt__ events to ApprovalRequested — pausing the UI until the user decidesAgentRun compatible with agenttrace-react's TraceProvideragenttrace-react — core headless primitivesagenttrace-ag-ui — AG-UI protocol adaptergithub.com/nedbpowell/agenttrace-react
MIT
FAQs
LangGraph JS adapter for agenttrace-react. Visualise LangGraph agent execution traces, tool calls, and human-in-the-loop interrupts as a live React UI.
The npm package agenttrace-langgraph receives a total of 16 weekly downloads. As such, agenttrace-langgraph popularity was classified as not popular.
We found that agenttrace-langgraph 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.