Skip to main content
Glama
systempromptio

SystemPrompt Coding Agent

Official
index.ts1.29 kB
/** * @fileoverview Agent Manager service exports * @module services/agent-manager * * @remarks * This module serves as the main entry point for the agent manager service. * It exports all public APIs including the AgentManager class, types, errors, * constants, and interfaces needed to work with AI agents. * * @example * ```typescript * import { * AgentManager, * AgentSession, * SessionNotFoundError * } from './services/agent-manager'; * * const manager = AgentManager.getInstance(); * * try { * const session = await manager.startClaudeSession({ * project_path: '/path/to/project', * task_id: 'task-123' * }); * } catch (error) { * if (error instanceof SessionNotFoundError) { * console.error('Session not found'); * } * } * ``` */ export { AgentManager } from './agent-manager.js'; export type { AgentManagerEvents } from './agent-manager.js'; export * from './types.js'; export * from './errors.js'; export * from './constants.js'; export * from './agent-interface.js'; /** * Singleton instance of AgentManager for backward compatibility * * @constant * @deprecated Use AgentManager.getInstance() instead */ import { AgentManager } from './agent-manager.js'; export const agentManager = AgentManager.getInstance();

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/systempromptio/systemprompt-code-orchestrator'

If you have feedback or need assistance with the MCP directory API, please join our Discord server