netlify
Version:
Netlify command line tool
29 lines • 779 B
JavaScript
import { chalk } from '../../utils/command-helpers.js';
/**
* Available agent types for task creation
*/
export const AVAILABLE_AGENTS = [
{ name: 'Claude', value: 'claude' },
{ name: 'Codex', value: 'codex' },
{ name: 'Gemini', value: 'gemini' },
];
/**
* Valid agent task states
*/
export const AGENT_STATES = ['new', 'running', 'done', 'error', 'cancelled', 'archived'];
/**
* Valid agent session states
*/
export const SESSION_STATES = ['new', 'running', 'done', 'error', 'cancelled'];
/**
* Color mapping for agent task status display
*/
export const STATUS_COLORS = {
new: chalk.blue,
running: chalk.yellow,
done: chalk.green,
error: chalk.red,
cancelled: chalk.gray,
archived: chalk.dim,
};
//# sourceMappingURL=constants.js.map