feat: workflow engine with human-in-the-loop review, schedules, CEO command, and UI improvements#1170
Open
natsukuu wants to merge 1 commit into
Open
Conversation
…ommand, and UI improvements ## Workflow Engine - Multi-step sequential execution and orchestration mode - Human-in-the-loop review: any step can set needs_review: true, pausing workflow for manual approval - Workflow run duration display and history sidebar - Cross-step work directory sharing (work_dir propagation via workflow_run) - Prevent @mention from bypassing workflow step ordering ## Schedule System - Cron-triggered workflow execution - Schedule management UI with create/edit/delete/toggle ## CEO Command Panel - One-line command interface to dispatch instructions - Optional skip-review shortcut mode - Enhanced with once-at scheduling and workflow selection ## UI Improvements - Issue list date range filter (calendar component) - @mention extension fix (dual markdown parse strategy: link-like + shortcode fallback) - @mention dropdown click fix (mousedown preventDefault) - Sidebar navigation for workflows, schedules, and command ## Database Migrations - 046: workflow tables (workflow, workflow_step, workflow_run, workflow_step_run) - 047: schedule tables - 048: orchestrated workflow enhancements - 049: CEO command table - 050: CEO command enhancements (once_at, workflow_id) - 051: workflow_run work_dir column
|
The latest updates on your projects. Learn more about Vercel for GitHub. 2 Skipped Deployments
|
|
This would be 👌 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a complete workflow engine with human-in-the-loop review, a schedule system, a CEO command panel, and several UI improvements.
Workflow Engine
needs_review: true, pausing the workflow for manual approval before continuingwork_dirpropagation viaworkflow_run)@mentionfrom bypassing workflow step orderingSchedule System
CEO Command Panel
UI Improvements
@mentionextension fix (dual markdown parse strategy: link-like + shortcode fallback)@mentiondropdown click fix (mousedown preventDefault)Database Migrations
workflow,workflow_step,workflow_run,workflow_step_run)once_at,workflow_id)workflow_run.work_dircolumnWhy This Matters
The official version lacks workflow orchestration capabilities. This PR adds a complete workflow engine supporting multi-step sequential execution and orchestration mode. The key highlight is Human-in-the-Loop Review at every node — maintaining human control over critical decisions while AI executes automatically. Combined with cron scheduling and the CEO command panel, it forms a complete "command → execute → review → feedback" closed loop.