@exaudeus/workrail 3.27.0 → 3.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/console/assets/{index-FtTaDku8.js → index-BZ6HkxGf.js} +1 -1
- package/dist/console/index.html +1 -1
- package/dist/manifest.json +3 -3
- package/docs/README.md +57 -0
- package/docs/adrs/001-hybrid-storage-backend.md +38 -0
- package/docs/adrs/002-four-layer-context-classification.md +38 -0
- package/docs/adrs/003-checkpoint-trigger-strategy.md +35 -0
- package/docs/adrs/004-opt-in-encryption-strategy.md +36 -0
- package/docs/adrs/005-agent-first-workflow-execution-tokens.md +105 -0
- package/docs/adrs/006-append-only-session-run-event-log.md +76 -0
- package/docs/adrs/007-resume-and-checkpoint-only-sessions.md +51 -0
- package/docs/adrs/008-blocked-nodes-architectural-upgrade.md +178 -0
- package/docs/adrs/009-bridge-mode-single-instance-mcp.md +195 -0
- package/docs/adrs/010-release-pipeline.md +89 -0
- package/docs/architecture/README.md +7 -0
- package/docs/architecture/refactor-audit.md +364 -0
- package/docs/authoring-v2.md +527 -0
- package/docs/authoring.md +873 -0
- package/docs/changelog-recent.md +201 -0
- package/docs/configuration.md +505 -0
- package/docs/ctc-mcp-proposal.md +518 -0
- package/docs/design/README.md +22 -0
- package/docs/design/agent-cascade-protocol.md +96 -0
- package/docs/design/autonomous-console-design-candidates.md +253 -0
- package/docs/design/autonomous-console-design-review.md +111 -0
- package/docs/design/autonomous-platform-mvp-discovery.md +525 -0
- package/docs/design/claude-code-source-deep-dive.md +713 -0
- package/docs/design/console-cyberpunk-ui-discovery.md +504 -0
- package/docs/design/console-execution-trace-candidates-final.md +160 -0
- package/docs/design/console-execution-trace-candidates.md +211 -0
- package/docs/design/console-execution-trace-design-candidates-v2.md +113 -0
- package/docs/design/console-execution-trace-design-review.md +74 -0
- package/docs/design/console-execution-trace-discovery.md +394 -0
- package/docs/design/console-execution-trace-final-review.md +77 -0
- package/docs/design/console-execution-trace-review.md +92 -0
- package/docs/design/console-performance-discovery.md +415 -0
- package/docs/design/console-ui-backlog.md +280 -0
- package/docs/design/daemon-architecture-discovery.md +853 -0
- package/docs/design/daemon-design-candidates.md +318 -0
- package/docs/design/daemon-design-review-findings.md +119 -0
- package/docs/design/daemon-engine-design-candidates.md +210 -0
- package/docs/design/daemon-engine-design-review.md +131 -0
- package/docs/design/daemon-execution-engine-discovery.md +280 -0
- package/docs/design/daemon-gap-analysis.md +554 -0
- package/docs/design/daemon-owns-console-plan.md +168 -0
- package/docs/design/daemon-owns-console-review.md +91 -0
- package/docs/design/daemon-owns-console.md +195 -0
- package/docs/design/data-model-erd.md +11 -0
- package/docs/design/design-candidates-consolidate-dev-staleness.md +98 -0
- package/docs/design/design-candidates-walk-cache-depth-limit.md +80 -0
- package/docs/design/design-review-consolidate-dev-staleness.md +54 -0
- package/docs/design/design-review-walk-cache-depth-limit.md +48 -0
- package/docs/design/implementation-plan-consolidate-dev-staleness.md +142 -0
- package/docs/design/implementation-plan-walk-cache-depth-limit.md +141 -0
- package/docs/design/layer3b-ghost-nodes-design-candidates.md +229 -0
- package/docs/design/layer3b-ghost-nodes-design-review.md +93 -0
- package/docs/design/layer3b-ghost-nodes-implementation-plan.md +219 -0
- package/docs/design/list-workflows-latency-fix-plan.md +128 -0
- package/docs/design/list-workflows-latency-fix-review.md +55 -0
- package/docs/design/list-workflows-latency-fix.md +109 -0
- package/docs/design/native-context-management-api.md +11 -0
- package/docs/design/performance-sweep-2026-04.md +96 -0
- package/docs/design/routines-guide.md +219 -0
- package/docs/design/sequence-diagrams.md +11 -0
- package/docs/design/subagent-design-principles.md +220 -0
- package/docs/design/temporal-patterns-design-candidates.md +312 -0
- package/docs/design/temporal-patterns-design-review-findings.md +163 -0
- package/docs/design/test-isolation-from-config-file.md +335 -0
- package/docs/design/v2-core-design-locks.md +2746 -0
- package/docs/design/v2-lock-registry.json +734 -0
- package/docs/design/workflow-authoring-v2.md +1044 -0
- package/docs/design/workflow-docs-spec.md +218 -0
- package/docs/design/workflow-extension-points.md +687 -0
- package/docs/design/workrail-auto-trigger-system.md +359 -0
- package/docs/design/workrail-config-file-discovery.md +513 -0
- package/docs/docker.md +110 -0
- package/docs/generated/v2-lock-closure-plan.md +26 -0
- package/docs/generated/v2-lock-coverage.json +797 -0
- package/docs/generated/v2-lock-coverage.md +177 -0
- package/docs/ideas/backlog.md +3927 -0
- package/docs/ideas/design-candidates-mcp-resilience.md +208 -0
- package/docs/ideas/design-review-findings-mcp-resilience.md +119 -0
- package/docs/ideas/implementation_plan.md +249 -0
- package/docs/ideas/third-party-workflow-setup-design-thinking.md +1948 -0
- package/docs/implementation/02-architecture.md +316 -0
- package/docs/implementation/04-testing-strategy.md +124 -0
- package/docs/implementation/09-simple-workflow-guide.md +835 -0
- package/docs/implementation/13-advanced-validation-guide.md +874 -0
- package/docs/implementation/README.md +21 -0
- package/docs/integrations/claude-code.md +300 -0
- package/docs/integrations/firebender.md +315 -0
- package/docs/migration/v0.1.0.md +147 -0
- package/docs/naming-conventions.md +45 -0
- package/docs/planning/README.md +104 -0
- package/docs/planning/github-ticketing-playbook.md +195 -0
- package/docs/plans/README.md +24 -0
- package/docs/plans/agent-managed-ticketing-design.md +605 -0
- package/docs/plans/agentic-orchestration-roadmap.md +112 -0
- package/docs/plans/assessment-gates-engine-handoff.md +536 -0
- package/docs/plans/content-coherence-and-references.md +151 -0
- package/docs/plans/library-extraction-plan.md +340 -0
- package/docs/plans/mr-review-workflow-redesign.md +1451 -0
- package/docs/plans/native-context-management-epic.md +11 -0
- package/docs/plans/perf-fixes-design-candidates.md +225 -0
- package/docs/plans/perf-fixes-design-review-findings.md +61 -0
- package/docs/plans/perf-fixes-new-issues-candidates.md +264 -0
- package/docs/plans/perf-fixes-new-issues-review.md +110 -0
- package/docs/plans/prompt-fragments.md +53 -0
- package/docs/plans/ui-ux-workflow-design-candidates.md +120 -0
- package/docs/plans/ui-ux-workflow-discovery.md +100 -0
- package/docs/plans/ui-ux-workflow-review.md +48 -0
- package/docs/plans/v2-followup-enhancements.md +587 -0
- package/docs/plans/workflow-categories-candidates.md +105 -0
- package/docs/plans/workflow-categories-discovery.md +110 -0
- package/docs/plans/workflow-categories-review.md +51 -0
- package/docs/plans/workflow-discovery-model-candidates.md +94 -0
- package/docs/plans/workflow-discovery-model-discovery.md +74 -0
- package/docs/plans/workflow-discovery-model-review.md +48 -0
- package/docs/plans/workflow-source-setup-phase-1.md +245 -0
- package/docs/plans/workflow-source-setup-phase-2.md +361 -0
- package/docs/plans/workflow-staleness-detection-candidates.md +104 -0
- package/docs/plans/workflow-staleness-detection-review.md +58 -0
- package/docs/plans/workflow-staleness-detection.md +80 -0
- package/docs/plans/workflow-v2-design.md +69 -0
- package/docs/plans/workflow-v2-roadmap.md +74 -0
- package/docs/plans/workflow-validation-design.md +98 -0
- package/docs/plans/workflow-validation-roadmap.md +108 -0
- package/docs/plans/workrail-platform-vision.md +420 -0
- package/docs/reference/agent-context-cleaner-snippet.md +94 -0
- package/docs/reference/agent-context-guidance.md +140 -0
- package/docs/reference/context-optimization.md +284 -0
- package/docs/reference/example-workflow-repository-template/.github/workflows/validate.yml +125 -0
- package/docs/reference/example-workflow-repository-template/README.md +268 -0
- package/docs/reference/example-workflow-repository-template/workflows/example-workflow.json +80 -0
- package/docs/reference/external-workflow-repositories.md +916 -0
- package/docs/reference/feature-flags-architecture.md +472 -0
- package/docs/reference/feature-flags.md +349 -0
- package/docs/reference/god-tier-workflow-validation.md +272 -0
- package/docs/reference/loop-optimization.md +209 -0
- package/docs/reference/loop-validation.md +176 -0
- package/docs/reference/loops.md +465 -0
- package/docs/reference/mcp-platform-constraints.md +59 -0
- package/docs/reference/recovery.md +88 -0
- package/docs/reference/releases.md +177 -0
- package/docs/reference/troubleshooting.md +105 -0
- package/docs/reference/workflow-execution-contract.md +998 -0
- package/docs/roadmap/README.md +22 -0
- package/docs/roadmap/legacy-planning-status.md +103 -0
- package/docs/roadmap/now-next-later.md +70 -0
- package/docs/roadmap/open-work-inventory.md +389 -0
- package/docs/tickets/README.md +39 -0
- package/docs/tickets/next-up.md +76 -0
- package/docs/workflow-management.md +317 -0
- package/docs/workflow-templates.md +423 -0
- package/docs/workflow-validation.md +184 -0
- package/docs/workflows.md +254 -0
- package/package.json +3 -1
- package/spec/authoring-spec.json +61 -16
- package/workflows/workflow-for-workflows.json +252 -93
- package/workflows/workflow-for-workflows.v2.json +188 -77
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
# WorkRail: What Changed in the Last Month
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
WorkRail is the system that makes AI agents follow structured, step-by-step processes. Instead of letting an agent improvise its way through a code review or a bug investigation, WorkRail enforces a defined workflow: one step at a time, with gates, quality checks, and durable history.
|
|
6
|
+
|
|
7
|
+
This document covers the meaningful changes from the past month -- what shipped, why it matters, and what it changes for your team.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## The New Engine Is Now the Default
|
|
12
|
+
|
|
13
|
+
The original WorkRail engine was stateless -- every call was independent, and if a conversation ended mid-workflow, the work was gone. There was no way to resume, no branching, no loops, and no record of what had happened.
|
|
14
|
+
|
|
15
|
+
A new engine was built to replace it. When an agent starts a workflow with the new engine, WorkRail creates a session and writes it to disk as an append-only event log. Every step taken, every blocked attempt, every branching path is recorded. Sessions survive across conversations, across days, across restarts. If a long-running workflow is interrupted, it can be resumed exactly where it left off -- even in a different conversation. The execution history is stored as a directed graph, which is what lets the console show a visual trace of everything the agent did.
|
|
16
|
+
|
|
17
|
+
The new engine was developed while the original ran in production, then gradually rolled out. It is now the default for everyone. The original engine still exists in the codebase but is not actively developed and is not the path anyone is taking.
|
|
18
|
+
|
|
19
|
+
A few other things shipped alongside this promotion to default:
|
|
20
|
+
|
|
21
|
+
- Every workflow run now goes through a validation pass before the agent takes a single step, catching broken workflow definitions at startup rather than mid-run
|
|
22
|
+
- The protocol agents use to communicate with WorkRail was simplified -- two tokens agents previously had to manage are merged into a single `continueToken`
|
|
23
|
+
|
|
24
|
+
**What this means:** WorkRail is now resilient infrastructure. Long-running workflows that span hours or multiple conversations are reliable and resumable. The console can show your team a full history of what their agents did and why.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Workflow Discovery Is Much Better
|
|
29
|
+
|
|
30
|
+
Previously, when an agent asked "what workflows are available?", it got a flat list of names -- not useful if you don't already know what you're looking for.
|
|
31
|
+
|
|
32
|
+
Workflows are now organized into eight visible categories: Coding & Development, Review & Audit, Investigation & Debugging, Design & Discovery, Documentation, Tickets & Planning, Learning & Personal, and Workflow Authoring. (There is also a Routines category used internally as building blocks for other workflows -- it's deliberately hidden from the user-facing catalog.) Discovery works in two steps:
|
|
33
|
+
|
|
34
|
+
1. Agent asks -- gets a compact category overview (~500 tokens) with descriptions of when each category applies and example workflow IDs
|
|
35
|
+
2. Agent picks a category -- gets only the workflows that match
|
|
36
|
+
|
|
37
|
+
Workflows can belong to multiple categories. A workflow that generates test cases from tickets shows up under both Tickets & Planning and Coding & Development.
|
|
38
|
+
|
|
39
|
+
A `workrail://tags` MCP resource lets agents read the full category catalog as a lightweight static read, without triggering a workflow list at all.
|
|
40
|
+
|
|
41
|
+
**What this means for your team:** Agents make more accurate workflow choices when they understand the landscape. The Workflows tab in the console (covered below) also gives your team a visual catalog to browse before talking to their agent.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Your Team's Workflows Are Now First-Class
|
|
46
|
+
|
|
47
|
+
This is probably the most relevant change given that you've created workflows for your team.
|
|
48
|
+
|
|
49
|
+
WorkRail now has a proper source management system. Previously, team workflows lived wherever you put them and agents had to know where to look. Now:
|
|
50
|
+
|
|
51
|
+
- `list_workflows` tells agents where every workflow comes from: `built_in` (ships with WorkRail), `personal` (your own user directory), `rooted_sharing` (shared via a workspace root), or `external`
|
|
52
|
+
- When workflows conflict or overlap, the system explains why one takes precedence
|
|
53
|
+
- A `manage_workflow_source` tool lets agents register or unregister workflow directories, useful for sources that aren't in repos the agent already knows about
|
|
54
|
+
|
|
55
|
+
**Important caveat on team sharing:** The registered sources are stored per-machine (`~/.workrail/`), not per-repo or per-team. Each developer and each CI environment manages its own list. There is no "attach once and everyone sees it" mechanism yet.
|
|
56
|
+
|
|
57
|
+
**The good news:** If your team's workflows live in a `.workrail/workflows/` directory inside a repo that team members already use with WorkRail, auto-discovery handles it without any manual setup. The agent automatically walks workspace roots it knows about and finds `.workrail/workflows/` directories. For repos that have been used with `list_workflows` or `inspect_workflow` (passing `workspacePath`), the team workflows will already appear.
|
|
58
|
+
|
|
59
|
+
**Action for you:** If you haven't already, the cleanest setup is to put your team workflows in `.workrail/workflows/` inside your shared repo. As long as team members run WorkRail with that repo's path as their workspace, the workflows appear automatically -- no `manage_workflow_source` call needed.
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Assessment Gates Now Support Multiple References
|
|
64
|
+
|
|
65
|
+
A step can now declare multiple `assessmentRefs` alongside a single `assessmentConsequences` entry. The consequence fires if any dimension across any referenced assessment equals the trigger level.
|
|
66
|
+
|
|
67
|
+
Previously, having a consequence required exactly one `assessmentRef`, which forced authors to cram unrelated dimensions into one monolithic assessment definition. With many-to-one, you can compose separate orthogonal assessment definitions -- one for quality, one for coverage, one for confidence -- and share a single blocking gate across all of them.
|
|
68
|
+
|
|
69
|
+
```json
|
|
70
|
+
{
|
|
71
|
+
"assessmentRefs": ["quality-gate", "coverage-gate"],
|
|
72
|
+
"assessmentConsequences": [
|
|
73
|
+
{ "when": { "anyEqualsLevel": "low" }, "effect": { "kind": "require_followup", "guidance": "Address all low dimensions before proceeding." } }
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**What this means for workflow authors:** No more monolithic assessment definitions. Compose narrow, reusable assessment vocabularies and combine them at the step level.
|
|
79
|
+
|
|
80
|
+
**Breaking change:** `stepContext.assessments` in the `continue_workflow` response is now an **array** (one entry per `assessmentRef`), not a single object. If you read `stepContext.assessments.assessmentId` directly, update to `stepContext.assessments[0].assessmentId`. Sessions where an assessment step completed before this change will replay correctly -- the durable event log is unaffected.
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## Agent Outputs Can Now Have Quality Checkpoints
|
|
85
|
+
|
|
86
|
+
This is one of the most significant engine additions this month.
|
|
87
|
+
|
|
88
|
+
Workflows can now declare **assessment criteria** -- named checkpoints where the agent self-evaluates its own output against a set of defined dimensions before the step can complete. For example, a bug investigation step can require that the agent rates its own confidence as `high` before the workflow advances. If the agent rates itself `low`, the engine keeps the step pending and requires a retry with improved output.
|
|
89
|
+
|
|
90
|
+
It's worth being precise about how this works: the engine does not independently evaluate quality. It records the agent's own self-assessment and checks whether any dimension falls below the configured threshold. If the agent dishonestly rates its own output highly, the gate doesn't catch it. What assessment gates do is create a **structured self-evaluation checkpoint** -- they force the agent to explicitly commit to a quality rating, which in practice produces better outputs because the agent has to reason through its own confidence before proceeding.
|
|
91
|
+
|
|
92
|
+
The `bug-investigation.agentic.v2.json` workflow uses this for confidence gating on the diagnosis step. The `mr-review-workflow.agentic.v2.json` workflow also uses it, with three dimensions: evidence quality, coverage completeness, and contradiction resolution.
|
|
93
|
+
|
|
94
|
+
**What this means:** Workflows can create soft quality floors on agent outputs. Not a hard guarantee -- the agent self-reports -- but a forcing function that produces meaningfully better outputs in practice.
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## New Bundled Workflows
|
|
99
|
+
|
|
100
|
+
Four new structured workflows were added:
|
|
101
|
+
|
|
102
|
+
### Production Readiness Audit
|
|
103
|
+
Answers one question honestly: is this code actually ready for production? Goes beyond style and lint. Covers runtime operability, error handling, observability, security exposure, and technical debt. Produces an explicit verdict -- `ready`, `ready_with_conditions`, `not_ready`, or `inconclusive` -- with evidence requirements. The agent cannot just say "looks fine."
|
|
104
|
+
|
|
105
|
+
### UI/UX Design Workflow
|
|
106
|
+
Addresses the specific ways AI agents fail at design work: jumping to a single solution before understanding the problem, knowing UX laws but not applying them, ignoring accessibility, and skipping error states and edge cases. Forces the agent through: problem framing (before any solutions), multiple design directions (before converging on one), and parallel review by separate reviewer families for information architecture, UX laws, accessibility, edge cases, and content. Produces a design spec, not just suggestions.
|
|
107
|
+
|
|
108
|
+
### Architecture Scalability Audit
|
|
109
|
+
Scoped, evidence-driven audit across a subset of five dimensions the requester selects: `load` (handling more traffic), `data_volume` (handling more records), `team_org` (more developers working on the same code), `feature_extensibility` (adding features without rearchitecting), and `operational` (more deployments and environments). The user picks which dimensions apply -- not all five are always audited. Every finding must cite actual code. Produces per-dimension verdicts.
|
|
110
|
+
|
|
111
|
+
### Cross-Platform Code Conversion
|
|
112
|
+
Structured migration workflow for moving code between platforms (Android to iOS, server to client, etc.). Classifies work into three tiers: mechanical translation (parallelizable), adaptation (needs design consideration), and redesign (needs full attention). Delegates the mechanical parts to parallel subagents and focuses review effort on the hard cases.
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## Workflow Authoring Got Significantly Better
|
|
117
|
+
|
|
118
|
+
Since you've created workflows yourself, these changes are directly relevant.
|
|
119
|
+
|
|
120
|
+
### `workflow-for-workflows.v2.json` was rebuilt
|
|
121
|
+
|
|
122
|
+
The workflow used to create or modernize other workflows was significantly redesigned. The full phase structure now includes:
|
|
123
|
+
|
|
124
|
+
1. Understanding and classifying the authoring task
|
|
125
|
+
2. **Effectiveness targeting** -- defining what "good execution" looks like for this specific workflow before writing a single step
|
|
126
|
+
3. Designing the workflow architecture (for non-trivial workflows)
|
|
127
|
+
4. **Quality gate architecture** -- explicit decisions about what the workflow will enforce vs. leave to the agent
|
|
128
|
+
5. Structural validation
|
|
129
|
+
6. A quality gate loop with four phases run in sequence: **state-economy audit** (catching redundant context between steps), **execution simulation** (the agent simulates a run before declaring it done), **adversarial review** (a deliberate attempt to find failure modes), and a **redesign phase** if problems are found
|
|
130
|
+
7. Final trust handoff with spec version stamp
|
|
131
|
+
|
|
132
|
+
The result is that workflows produced through this process are more reliable and better calibrated.
|
|
133
|
+
|
|
134
|
+
### References
|
|
135
|
+
|
|
136
|
+
A workflow can declare external documents -- your team's coding standards, an architecture decision record, a product spec -- and WorkRail delivers pointers to them when the session starts and again when a session is resumed. (References are not re-sent on every step advance -- the agent is expected to read the files it needs from its initial context.) This gives the agent relevant background from the first step rather than burying it in a prompt halfway through the workflow.
|
|
137
|
+
|
|
138
|
+
### Prompt fragments
|
|
139
|
+
|
|
140
|
+
Instead of duplicating near-identical step prompts for "if the scope is small, do X; if large, do Y", workflow authors write one step with named conditional variants. The compiler inlines the right one at runtime based on context variables. Two concrete benefits: less maintenance for authors, and meaningfully less context sent to the agent on each step -- only the relevant variant is delivered, not all of them.
|
|
141
|
+
|
|
142
|
+
### `about` and `examples` fields
|
|
143
|
+
|
|
144
|
+
Every workflow now has two new optional fields that are purely for humans -- neither is visible to agents, only through the Workflows tab in the console:
|
|
145
|
+
|
|
146
|
+
- `about`: a human-readable markdown description (what it does, when to use it, what it produces, how to get good results). Shown in the detail panel when you click a workflow.
|
|
147
|
+
- `examples`: 2-6 short, concrete goal strings illustrating what the workflow is for. Shown alongside the description.
|
|
148
|
+
|
|
149
|
+
All 22 non-test bundled workflows were backfilled with both fields. The authoring workflow now prompts for both during Phase 7a.
|
|
150
|
+
|
|
151
|
+
**Action for you:** Your team's existing workflows don't have these fields yet. Adding them means anyone on the team can click your workflow in the console and immediately understand what it's for and when to reach for it. Two new fields in the JSON.
|
|
152
|
+
|
|
153
|
+
### `goal` is now required on `start_workflow`
|
|
154
|
+
|
|
155
|
+
When an agent starts a workflow, it must provide a `goal` -- a sentence describing what it's trying to accomplish. This is stored immediately as the session title. Omitting it causes a hard validation error before execution begins.
|
|
156
|
+
|
|
157
|
+
Before this, sessions appeared in the console as random IDs until the agent produced output. Now you see "Review PR #47 for correctness and production risk" from the moment the session starts.
|
|
158
|
+
|
|
159
|
+
**Action for you:** If your team has scripts or prompts that start workflows without a `goal` parameter, they need to be updated. The error is explicit about what's missing.
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## The Console Is Now a Full Dashboard
|
|
164
|
+
|
|
165
|
+
The browser-based console went from an early release to a complete workspace tool this month.
|
|
166
|
+
|
|
167
|
+
### Workspace (default view)
|
|
168
|
+
The main view organizes everything by git branch within each repo. It combines two things that used to require separate tabs: workflow session history and git worktree state. Each branch row shows the session title, workflow name, time ago, git state badges (uncommitted file count, unpushed commit count), and active worktree status. Clicking the badges expands a panel showing the actual files or commits.
|
|
169
|
+
|
|
170
|
+
Active branches (with running or blocked sessions) sort to the top. Older clean branches show as compact rows below. Keyboard navigation throughout (j/k to move, Enter to open, / for the session archive).
|
|
171
|
+
|
|
172
|
+
### Workflows tab
|
|
173
|
+
A visual catalog of every available workflow. Eight category filter pills. Click any workflow for its full description, usage examples, and preconditions.
|
|
174
|
+
|
|
175
|
+
---
|
|
176
|
+
|
|
177
|
+
## Staleness Detection
|
|
178
|
+
|
|
179
|
+
WorkRail can now detect when a workflow hasn't been reviewed against the current authoring spec. Three signal levels:
|
|
180
|
+
|
|
181
|
+
- `none` -- validated against the current spec (has a version stamp and it's current)
|
|
182
|
+
- `possible` -- no version stamp (was never run through `workflow-for-workflows`)
|
|
183
|
+
- `likely` -- has a stamp, but the spec has been updated since the workflow was last reviewed
|
|
184
|
+
|
|
185
|
+
This shows up in `list_workflows` output (agents see it) and in the CI registry validation check. It's shown only for non-built-in workflows -- built-in workflows ship with their own quality process and don't show staleness signals.
|
|
186
|
+
|
|
187
|
+
**What this means for your team:** Your team's existing workflows will show as `possible` (no stamp) until they're run through `workflow-for-workflows.v2.json`. That's expected -- it's not an error, just a signal that they haven't been through the new quality gate. Over time, as you modernize them, they'll show `none`.
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
## What's Coming Next
|
|
192
|
+
|
|
193
|
+
The things in active development or planned for the near term:
|
|
194
|
+
|
|
195
|
+
- **Console execution trace** -- the console currently shows what nodes were created; it doesn't yet explain *why* the engine chose a particular path (skipped phases, fast paths, condition evaluations). That visibility is the next major console investment
|
|
196
|
+
- **Dashboard artifacts** -- instead of agents writing markdown files to your repo during a workflow run, structured outputs would be submitted through the workflow and rendered directly in the console session view
|
|
197
|
+
- **Broader workflow source onboarding** -- richer source health reporting, update/sync flows, and making team workflow setup even simpler
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
*Last updated: April 2026*
|