/**
 * @just-every/task
 *
 * Task - Advanced LLM orchestration with meta-cognition
 *
 * This module provides the Task system which includes:
 * - Hierarchical model selection based on performance scores
 * - Meta-cognition for self-reflection and strategy adjustment
 * - Thought delay management for pacing
 * - Memory integration for learning from past tasks
 */
export { runTask, addMessageToTask, } from './src/core/engine.js';
export type { Agent } from '@just-every/ensemble';
export { taskState, resetLLMRequestCount, set_meta_frequency, set_model_score, getModelScore, disable_model, listDisabledModels, listModelScores } from './src/state/state.js';
export { setThoughtDelay, getThoughtDelay } from './src/core/thought_utils.js';
export { pause, resume, isPaused, getPauseController, waitWhilePaused, type PauseController } from '@just-every/ensemble';
//# sourceMappingURL=index.d.ts.map