
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@lov3kaizen/aigency-core
Advanced tools
Aigency - Unite and orchestrate AI agents. A production-ready ADK for building agentic AI applications with multi-provider support.
Unite and orchestrate AI agents - Framework-agnostic core library for building agentic AI applications in Node.js.
npm install @aigency/core
# or
pnpm add @aigency/core
# or
yarn add @aigency/core
import {
Agent,
AnthropicProvider,
ToolRegistry,
BufferMemory,
calculatorTool,
} from '@aigency/core';
// Create agent
const agent = new Agent(
{
name: 'assistant',
model: 'claude-sonnet-4-20250514',
provider: 'anthropic',
systemPrompt: 'You are a helpful assistant.',
tools: [calculatorTool],
},
new AnthropicProvider(process.env.ANTHROPIC_API_KEY),
new ToolRegistry(),
new BufferMemory(50),
);
// Execute
const response = await agent.execute('What is 42 * 58?', {
conversationId: 'user-123',
sessionData: {},
history: [],
});
console.log(response.content);
import {
GeminiProvider,
OpenAIProvider,
AnthropicProvider,
OllamaProvider,
} from '@aigency/core';
// Use any provider
const geminiAgent = new Agent(config, new GeminiProvider(apiKey), toolRegistry);
const openaiAgent = new Agent(config, new OpenAIProvider(apiKey), toolRegistry);
const claudeAgent = new Agent(config, new AnthropicProvider(apiKey), toolRegistry);
const ollamaAgent = new Agent(config, new OllamaProvider(), toolRegistry);
Full documentation available at aigency.dev
MIT License - see LICENSE for details
FAQs
Aigency - Unite and orchestrate AI agents. A production-ready ADK for building agentic AI applications with multi-provider support.
We found that @lov3kaizen/aigency-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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.