UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

6 lines (5 loc) 425 B
import type { Command } from "#compiled/commander/index.js"; import type { CliApplicationContext } from "./application-command.js"; export type AgentCommandRequirement = (command: Command) => boolean; /** Adds consistent workspace-agent selection to an agent-scoped command. */ export declare function agentCommand(command: Command, applicationContext: CliApplicationContext, requirement?: AgentCommandRequirement): Command;