
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-ai-sdk
Advanced tools
Vercel AI SDK adapter for agenttrace-react. Visualise AI SDK agent execution traces, tool calls, and human-in-the-loop approval gates as a live React UI.
Vercel AI SDK adapter for agenttrace-react — visualise AI SDK agent execution traces, tool calls, and human-in-the-loop approval gates as a live React UI.
npm install agenttrace-react agenttrace-ai-sdk
# or
pnpm add agenttrace-react agenttrace-ai-sdk
useChat() as structured trace nodesagenttrace-reactaireactuseAiSdkTrace(messages) — consumes AI SDK UI messages and returns a live AgentRunaiSdkMessagesToAgentRun(messages) — converts a full message array to an AgentRun snapshotaiSdkMessageToTraceEvents(message) — maps a single AI SDK message to TraceEvent[]import { useChat } from '@ai-sdk/react'
import { TraceProvider, TraceTree, TraceNode, ApprovalGate } from 'agenttrace-react'
import { useAiSdkTrace } from 'agenttrace-ai-sdk'
export function AiSdkTraceView() {
const { messages } = useChat()
const run = useAiSdkTrace(messages)
return (
<TraceProvider run={run}>
<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>
)
}
useChat() and useCompletion()tool trace nodes with input and outputApprovalRequested and ApprovalResolved eventsAgentRun compatible with agenttrace-react's TraceProvideragenttrace-react — core headless primitivesagenttrace-langgraph — LangGraph adapteragenttrace-ag-ui — AG-UI protocol adaptergithub.com/nedbpowell/agenttrace-react
MIT
FAQs
Vercel AI SDK adapter for agenttrace-react. Visualise AI SDK agent execution traces, tool calls, and human-in-the-loop approval gates as a live React UI.
The npm package agenttrace-ai-sdk receives a total of 5 weekly downloads. As such, agenttrace-ai-sdk popularity was classified as not popular.
We found that agenttrace-ai-sdk 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.