UNPKG

taskforce-aiagent

Version:

TaskForce is a modular, open-source, production-ready TypeScript agent framework for orchestrating AI agents, LLM-powered autonomous agents, task pipelines, dynamic toolchains, RAG workflows and memory/retrieval systems.

9 lines (8 loc) 254 B
import { Agent } from "./agent.js"; export declare class AgentRegistry { private static agents; static register(agent: Agent): void; static getByName(name: string): Agent | undefined; static getAll(): Agent[]; static clear(): void; }