Skip to content

Commit 259025f

Browse files
committed
merge: resolve conflicts with origin/master (tasks + skills commands)
2 parents 6d5088c + 7fc3905 commit 259025f

37 files changed

Lines changed: 9063 additions & 20 deletions

Cargo.lock

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ members = [
6666
"cortex-migrations",
6767
"cortex-experimental",
6868
"cortex-commands",
69+
"cortex-skills",
6970

7071
# CLI - Features (Phase 3 - Codex-inspired)
7172
"cortex-collab",
@@ -218,6 +219,7 @@ cortex-linux-sandbox = { path = "cortex-linux-sandbox" }
218219
cortex-windows-sandbox = { path = "cortex-windows-sandbox" }
219220
cortex-lmstudio = { path = "cortex-lmstudio" }
220221
cortex-ollama = { path = "cortex-ollama" }
222+
cortex-skills = { path = "cortex-skills" }
221223

222224
# Phase 3 - Codex-inspired crates
223225
cortex-collab = { path = "cortex-collab" }

cortex-agents/src/lib.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,11 @@ pub use collab::{
168168

169169
// Re-export task types
170170
pub use task::{
171-
DagBuilder, DagError, DagHydrator, DagResult, DagStore, InMemoryDagStore, PersistenceError,
172-
SerializedDag, Task, TaskDag, TaskId, TaskSpec, TaskStatus,
171+
execute_dag, DagBuilder, DagError, DagHydrator, DagResult, DagStore, ExecutionProgress,
172+
ExecutorConfig, ExecutorError, ExecutorResult, InMemoryDagStore, PersistenceError,
173+
SerializedDag, SessionHydrationError, SessionHydrationResult, SessionHydrator,
174+
SessionRestoreConfig, StaleTaskChecker, StaleTaskInfo, Task, TaskDag, TaskExecutionResult,
175+
TaskExecutor, TaskId, TaskSpec, TaskStatus, TaskStore,
173176
};
174177

175178
// Re-export routing types

0 commit comments

Comments
 (0)