agentic-qe
Version:
Agentic Quality Engineering Fleet System - AI-driven quality management platform
31 lines • 1.16 kB
TypeScript
/**
* Agent Commands Index
*
* Exports all agent management commands for CLI integration.
* Complete suite of 10+ agent lifecycle and monitoring commands.
*
* @module cli/commands/agent
*/
export { AgentRestartCommand, RestartOptions, RestartResult } from './restart';
export { AgentInspectCommand, InspectOptions, InspectResult } from './inspect';
export { AgentAssignCommand, AssignOptions, AssignResult } from './assign';
export { AgentAttachCommand, AttachOptions, AttachSession } from './attach';
export { AgentDetachCommand, DetachOptions, DetachResult } from './detach';
/**
* Command Categories
*/
export declare const AGENT_COMMANDS: {
readonly lifecycle: readonly ["spawn", "kill", "restart"];
readonly monitoring: readonly ["list", "metrics", "logs", "inspect"];
readonly tasks: readonly ["assign"];
readonly interactive: readonly ["attach", "detach"];
};
/**
* Get all available agent commands
*/
export declare function getAvailableCommands(): string[];
/**
* Get commands by category
*/
export declare function getCommandsByCategory(category: keyof typeof AGENT_COMMANDS): string[];
//# sourceMappingURL=index.d.ts.map