
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
@cloudbase/agent-adapter-langgraph
Advanced tools
LangGraph adapter for AG-Kit agents. This package provides integration between AG-Kit and LangGraph framework, enabling you to use LangGraph workflows with AG-Kit's agent infrastructure.
npm install @cloudbase/agent-agents @cloudbase/agent-adapter-langgraph
import { StateGraph, START, END } from "@langchain/langgraph";
import { AGKitStateAnnotation, LanggraphAgent } from "@cloudbase/agent-adapter-langgraph";
import { AgentConfig } from "@cloudbase/agent-agents/abstract";
// Create your LangGraph workflow
const workflow = new StateGraph(AGKitStateAnnotation)
.addNode("chat_node", chatNode)
.addEdge(START, "chat_node")
.addEdge("chat_node", END);
const compiledWorkflow = workflow.compile();
// Create the agent
const agent = new LanggraphAgent({
name: "my-langgraph-agent",
description: "A LangGraph agent",
compiledWorkflow,
});
import { TDAISaver } from "@cloudbase/agent-adapter-langgraph";
import { MemoryClient } from "@cloudbase/agent-agents";
const memoryClient = new MemoryClient({
endpoint: "https://api.tdai.com",
apiKey: "your-api-key",
memoryId: "your-memory-id",
});
const checkpointer = new TDAISaver({
endpoint: "https://api.tdai.com",
apiKey: "your-api-key",
memoryId: "your-memory-id",
});
const compiledWorkflow = workflow.compile({
checkpointer,
});
import { TDAIStore } from "@cloudbase/agent-adapter-langgraph";
import { MemoryClient } from "@cloudbase/agent-agents";
const memoryClient = new MemoryClient({
endpoint: "https://api.tdai.com",
apiKey: "your-api-key",
memoryId: "your-memory-id",
});
const store = new TDAIStore({
memoryClient,
sessionId: "session-123",
});
Agent class that extends AbstractAgent and works with compiled LangGraph workflows.
Constructor:
constructor(config: AgentConfig & { compiledWorkflow: CompiledStateGraph })
Checkpoint saver implementation for LangGraph using TDAI Memory.
Constructor:
constructor(config: TDAISaverConfig)
Store implementation for LangGraph using TDAI Memory.
Constructor:
constructor(config: TDAIStoreConfig)
@cloudbase/agent-agents: Core agent functionality@langchain/langgraph: LangGraph framework@langchain/core: LangChain core utilitiesrxjs: Reactive extensions for JavaScriptFAQs
LangGraph adapter for AG-Kit agents
The npm package @cloudbase/agent-adapter-langgraph receives a total of 712 weekly downloads. As such, @cloudbase/agent-adapter-langgraph popularity was classified as not popular.
We found that @cloudbase/agent-adapter-langgraph demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.