Open
Conversation
…ent platform Complete domain pivot from requirements/traceability management to a full workflow orchestration platform (ADR-019). Replaces all requirements domain code with workflow management primitives while preserving the architectural bones. Backend: - New domain model: Workspace, Workflow, WorkflowNode, WorkflowEdge, Execution, TaskExecution, Trigger, Credential, Variable - State machines: WorkflowStatus (DRAFT→ACTIVE→PAUSED→ARCHIVED), ExecutionStatus (PENDING→QUEUED→RUNNING→SUCCESS/FAILED/CANCELLED/TIMED_OUT) - Execution engine: Shell, HTTP, Docker task executors with DAG traversal - Event-driven execution: domain publishes ExecutionRequestedEvent, infrastructure listens and runs async - Cron scheduler and webhook trigger support - V017 Flyway migration: drops old schema, creates workflow tables - Full REST API: workflows, nodes, edges, executions, triggers, credentials, variables, webhooks - ArchUnit compliance maintained (api→domain←infrastructure) Frontend: - Complete React UI rewrite: workflow list, visual DAG editor (Cytoscape), execution monitoring with live refresh, settings page (triggers/credentials/variables) - Workspace context replaces project context - New hooks: useWorkflows, useExecutions, useWorkspaces MCP: - 30+ workflow management tools replacing requirements tools - Covers full CRUD for all entities plus execute/cancel/retry Docs: - ADR-019 documenting the pivot decision - Updated README, API.md, ARCHITECTURE.md, CLAUDE.md, CHANGELOG.md https://claude.ai/code/session_0191KSxW9gLHZPWyKJE6DsvH
Refinements to all frontend pages from the workflow platform rewrite: - Dashboard: better stats display with workflow/execution counts - Workflow detail: improved graph visualization and node/edge management - Execution detail: better log display and action buttons - Settings: enhanced credentials and variables management - Layout: cleaner navigation and workspace context handling https://claude.ai/code/session_0191KSxW9gLHZPWyKJE6DsvH
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
Complete domain pivot from requirements/traceability management to a full workflow orchestration platform (ADR-019), replacing all requirements domain code with workflow management primitives while preserving the architectural bones.
Architecture preserved
api/ → domain/ ← infrastructure/(ArchUnit enforced)Key design decisions
ExecutionRequestedEvent, infrastructure engine listens and runs async — maintains clean architecture boundaryTest plan
make checkpasses (compilation + unit tests + static analysis)make integrationpasses with Testcontainers PostgreSQLhttps://claude.ai/code/session_0191KSxW9gLHZPWyKJE6DsvH