UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

21 lines 885 B
export declare const supportedAgents: readonly ["claude", "codex", "copilot", "cursor", "gemini"]; export type Agent = (typeof supportedAgents)[number]; export declare const agentDisplayMap: Record<Agent, string>; export type AgentConfiguration = { name: Agent; displayName: string; rules: boolean; mcp: boolean; rulesPath: string; mcpPath: string | null; outdated: boolean; disabled?: boolean; }; export declare function getAgentConfigurations(agentsToConsider: Agent[], workspaceRoot: string): Promise<{ nonConfiguredAgents: AgentConfiguration[]; partiallyConfiguredAgents: AgentConfiguration[]; fullyConfiguredAgents: AgentConfiguration[]; disabledAgents: AgentConfiguration[]; }>; export declare function configureAgents(agents: Agent[], workspaceRoot: string, useLatest?: boolean): Promise<void>; //# sourceMappingURL=utils.d.ts.map