
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@agentforge-ai/core
Advanced tools
Core agent primitives, sandbox integration, and MCP server for AgentForge
Core agent primitives, secure sandbox execution, and MCP server for the AgentForge framework.
npm install @agentforge-ai/core
import { Agent, SandboxManager, MCPServer } from '@agentforge-ai/core';
// Create an agent
const agent = new Agent({
id: 'my-agent',
name: 'My Agent',
instructions: 'You are a helpful assistant.',
model: 'openai/gpt-4o-mini',
});
// Generate a response
const response = await agent.generate('Hello, world!');
// Execute code securely
const sandbox = new SandboxManager({ timeout: 10000 });
const result = await sandbox.runCode('console.log("Hello from sandbox!")');
// Register tools with MCP
const mcp = new MCPServer();
mcp.registerTool({
name: 'calculator',
inputSchema: z.object({ expression: z.string() }),
outputSchema: z.string(),
handler: async ({ expression }) => eval(expression).toString(),
});
The core agent class wrapping Mastra for AI orchestration.
new Agent(config) - Create a new agentagent.generate(prompt) - Generate a responseagent.stream(prompt) - Stream a responseSecure code execution via E2B sandboxes.
new SandboxManager(config) - Create a sandbox managermanager.runCode(code, options) - Execute code securelymanager.cleanup() - Clean up resourcesModel Context Protocol server for tool communication.
new MCPServer() - Create an MCP serverserver.registerTool(tool) - Register a toolserver.listTools() - List all toolsserver.callTool(name, input) - Call a toolApache-2.0
FAQs
Core agent primitives, sandbox integration, and MCP server for AgentForge
The npm package @agentforge-ai/core receives a total of 8 weekly downloads. As such, @agentforge-ai/core popularity was classified as not popular.
We found that @agentforge-ai/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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.