UNPKG

trellis

Version:

Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications

25 lines 1.64 kB
import { type WhereInput } from '../../schema/eql.js'; export declare function listAgents(where?: WhereInput): string; export declare function listActiveAgents(): string; export declare function listAgentsByRole(role: string): string; export declare function listWorkflows(where?: WhereInput): string; export declare function listActiveWorkflows(): string; export declare function listWorkflowSteps(workflowId?: string): string; export declare function listWorkflowEdges(where?: WhereInput): string; export declare function listWorkflowGates(where?: WhereInput): string; export declare function listPipelines(where?: WhereInput): string; export declare function listActivePipelines(): string; export declare function listPipelinePhases(pipelineId?: string): string; export declare function listTools(where?: WhereInput): string; export declare function listHandoffs(where?: WhereInput): string; export declare function listHandoffsByStatus(status: string): string; export declare function listHandoffsFromAgent(agentId: string): string; export declare function listHandoffsToAgent(agentId: string): string; export declare function listAgentRuns(where?: WhereInput): string; export declare function listAgentRunsByStatus(status: string): string; export declare function listAgentRunsByAgent(agentId: string): string; export declare function listDecisionTraces(where?: WhereInput): string; export declare function listDecisionTracesByRun(runId: string): string; export declare function listDAGRuns(where?: WhereInput): string; export declare function listDAGRunsByWorkflow(workflowId: string): string; //# sourceMappingURL=agent-queries.d.ts.map