New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@lov3kaizen/aigency-core

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@lov3kaizen/aigency-core

Aigency - Unite and orchestrate AI agents. A production-ready ADK for building agentic AI applications with multi-provider support.

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

@aigency/core

Unite and orchestrate AI agents - Framework-agnostic core library for building agentic AI applications in Node.js.

npm version License: MIT TypeScript

Features

  • Multi-Provider Support - Anthropic Claude, OpenAI GPT, Google Gemini
  • Local & Open Source Models - Ollama, LM Studio, LocalAI, Text Generation WebUI, vLLM
  • Voice Support (TTS/STT) - OpenAI Whisper, ElevenLabs, Piper TTS
  • MCP Protocol - First-class Model Context Protocol integration
  • ACP Protocol - Agentic Commerce Protocol for e-commerce integration
  • Multi-Agent Workflows - Sequential, parallel, and supervisor orchestration
  • Conversation Schemas - Structured conversational experiences with validation
  • Advanced Memory - Buffer, Redis, and summary-based memory stores
  • Built-in Tools - 8 production-ready tools + custom tool support
  • Full Observability - Logging, metrics, and distributed tracing

Installation

npm install @aigency/core
# or
pnpm add @aigency/core
# or
yarn add @aigency/core

Quick Start

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);

Multi-Provider Support

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);

Documentation

Full documentation available at aigency.dev

License

MIT License - see LICENSE for details

Keywords

aigency

FAQs

Package last updated on 02 Dec 2025

Did you know?

Socket

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.

Install

Related posts