
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.
@agentforge/core
Advanced tools
Production-ready TypeScript agent framework built on LangGraph with orchestration, middleware, and typed abstractions.
Core abstractions for AgentForge - production-ready framework for building deep agents with LangGraph
All features complete | 500+ tests passing | Full TypeScript support | Comprehensive documentation
createTool()pnpm add @agentforge/core
import { createTool } from '@agentforge/core';
import { z } from 'zod';
const weatherTool = createTool({
name: 'get_weather',
description: 'Get current weather for a location',
schema: z.object({
location: z.string().describe('City name'),
units: z.enum(['celsius', 'fahrenheit']).optional()
}),
execute: async ({ location, units = 'celsius' }) => {
// Implementation
return { temperature: 22, units, location };
}
});
import { createSequentialWorkflow, withRetry } from '@agentforge/core';
import { z } from 'zod';
// Create a sequential workflow
const workflow = createSequentialWorkflow(AgentState, [
{ name: 'fetch', node: fetchNode },
{ name: 'process', node: processNode },
{ name: 'save', node: saveNode },
]);
// Add error handling
const robustNode = withRetry(myNode, {
maxAttempts: 3,
backoff: 'exponential',
});
const app = workflow.compile();
See the examples documentation for complete working examples.
# Build
pnpm build
# Watch mode
pnpm dev
# Run tests
pnpm test
# Type check
pnpm typecheck
MIT © 2026 Tom Van Schoor
FAQs
Production-ready TypeScript agent framework built on LangGraph with orchestration, middleware, and typed abstractions.
We found that @agentforge/core 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.