Skip to content

Commit 74fcf91

Browse files
committed
Merge origin/master into feature/background-agents-async-messaging - resolve conflicts
2 parents ede4eb2 + 2bcc98d commit 74fcf91

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+14020
-25
lines changed

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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,16 @@ members = [
6666
"cortex-migrations",
6767
"cortex-experimental",
6868
"cortex-commands",
69+
"cortex-skills",
6970

7071
# CLI - Features (Phase 3 - Codex-inspired)
7172
"cortex-collab",
7273
"cortex-network-proxy",
7374
"cortex-shell-snapshot",
7475

76+
# CLI - Integrations
77+
"cortex-slack",
78+
7579
# CLI - LM Studio Integration
7680
"cortex-lmstudio",
7781

@@ -218,12 +222,16 @@ cortex-linux-sandbox = { path = "cortex-linux-sandbox" }
218222
cortex-windows-sandbox = { path = "cortex-windows-sandbox" }
219223
cortex-lmstudio = { path = "cortex-lmstudio" }
220224
cortex-ollama = { path = "cortex-ollama" }
225+
cortex-skills = { path = "cortex-skills" }
221226

222227
# Phase 3 - Codex-inspired crates
223228
cortex-collab = { path = "cortex-collab" }
224229
cortex-network-proxy = { path = "cortex-network-proxy" }
225230
cortex-shell-snapshot = { path = "cortex-shell-snapshot" }
226231

232+
# Integrations
233+
cortex-slack = { path = "cortex-slack" }
234+
227235
# OpenTUI crates
228236
opentui = { path = "opentui-rs" }
229237
opentui-core = { path = "opentui-rs/crates/opentui-core" }

cortex-agents/src/lib.rs

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

198198
// Re-export task types
199199
pub use task::{
200-
DagBuilder, DagError, DagHydrator, DagResult, DagStore, InMemoryDagStore, PersistenceError,
201-
SerializedDag, Task, TaskDag, TaskId, TaskSpec, TaskStatus,
200+
execute_dag, DagBuilder, DagError, DagHydrator, DagResult, DagStore, ExecutionProgress,
201+
ExecutorConfig, ExecutorError, ExecutorResult, InMemoryDagStore, PersistenceError,
202+
SerializedDag, SessionHydrationError, SessionHydrationResult, SessionHydrator,
203+
SessionRestoreConfig, StaleTaskChecker, StaleTaskInfo, Task, TaskDag, TaskExecutionResult,
204+
TaskExecutor, TaskId, TaskSpec, TaskStatus, TaskStore,
202205
};
203206

204207
// Re-export routing types

0 commit comments

Comments
 (0)