Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f2d4e1d
docs(conductor): add Spec 005 — deterministic workflow engine, design…
cwendler Jun 16, 2026
4518e8d
docs(conductor): add Spec 005 integration & implementation plan
Weegy Jun 17, 2026
8a866cd
feat(conductor): implement @omadia/conductor-core pure engine (US1)
Weegy Jun 17, 2026
e0a81ba
feat(conductor): wire conductor-core into the kernel (Phase 2 vertica…
Weegy Jun 17, 2026
89571dc
build(conductor): add @omadia/conductor-core to package-lock (fixes n…
Weegy Jun 17, 2026
c6702db
fix(conductor): typecheck under express 5 + JsonValue (container build)
Weegy Jun 17, 2026
7868a5b
build(conductor): copy conductor migrations into the runtime image
Weegy Jun 17, 2026
a4055e6
feat(conductor): real Agent-turn execution + operator UI (no stubs)
Weegy Jun 17, 2026
dd00e12
fix(conductor): async run execution + UI polling (real turns are slow)
Weegy Jun 17, 2026
e041018
fix(conductor): race-safe workflow publish (idempotent upsert)
Weegy Jun 17, 2026
8e995ff
feat(conductor): visual React-Flow designer (Phase 6 / US7)
Weegy Jun 17, 2026
f283b73
fix(conductor): collision-proof ids + double-fire guard in the designer
Weegy Jun 17, 2026
6b6c1e7
feat(conductor): durable human awaits + resume + deadline worker (US5)
Weegy Jun 17, 2026
4264de0
fix(conductor): debounce run/respond/canvas-run against double-fire
Weegy Jun 17, 2026
1637451
feat(conductor): event triggers — workflows start on emitted events (…
Weegy Jun 17, 2026
948ff13
feat(conductor): dry-run / preview (US8)
Weegy Jun 17, 2026
3219b34
feat(conductor): role resolver + baton (US6)
Weegy Jun 17, 2026
62edeaf
feat(conductor): edit existing workflows from the list (US7)
Weegy Jun 17, 2026
c870c45
Merge remote-tracking branch 'origin/main' into feat/conductor-next-p…
Weegy Jun 29, 2026
9e06d1e
feat(conductor): run-resume worker + run audit viewer (Wave 1)
Weegy Jun 29, 2026
84f74c4
feat(conductor): cron triggers + connector event-emit (Wave 2)
Weegy Jun 29, 2026
6e5d33e
feat(conductor): human-await quorum 'all' + per-step hard timeout (Wa…
Weegy Jun 29, 2026
0d46339
feat(conductor): human-await reminders + channel bindings (Wave 4)
Weegy Jun 29, 2026
bb66f05
feat(conductor): Designer event-trigger catalog picker (Wave 5)
Weegy Jun 29, 2026
59d0651
feat(conductor): conversational workflow builder (US7)
Weegy Jun 29, 2026
df2835f
feat(conductor): register channel-plugin event-emit capabilities (rea…
Weegy Jun 30, 2026
0a71838
fix(conductor): satisfy CI eslint (type-import + set-state-in-effect)
Weegy Jun 30, 2026
dfba3f9
Merge branch 'main' into feat/conductor-next-phases
Weegy Jun 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ COPY middleware/src/auth/migrations ./dist/auth/migrations
COPY middleware/src/profileStorage/migrations ./dist/profileStorage/migrations
# Profile-snapshots migrations — same pattern (palaia-phase profile snapshots).
COPY middleware/src/profileSnapshots/migrations ./dist/profileSnapshots/migrations
# Conductor migrations (Spec 005) — tsc skips .sql, so copy them next to the
# compiled migrator (runConductorMigrations scans dist/conductor/migrations).
COPY middleware/src/conductor/migrations ./dist/conductor/migrations
# Multi-orchestrator runtime migrations — runMultiOrchestratorMigrations
# (in @omadia/orchestrator) scans this dir. Top-level location matches the
# spec convention (specs/001-multi-orchestrator-runtime/data-model.md); the
Expand Down
Loading
Loading