@exaudeus/workrail 3.18.0 → 3.19.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/README.md +13 -0
- package/dist/console/assets/index-QhCFuxQV.js +28 -0
- package/dist/console/assets/index-ibLhWBmX.css +1 -0
- package/dist/console/index.html +2 -2
- package/dist/infrastructure/storage/workflow-resolution.js +6 -6
- package/dist/manifest.json +44 -44
- package/dist/mcp/server.js +25 -4
- package/dist/mcp/tool-call-timing.d.ts +4 -0
- package/dist/mcp/tool-call-timing.js +52 -0
- package/dist/mcp-server.js +0 -0
- package/dist/types/workflow-source.js +1 -1
- package/dist/v2/durable-core/domain/observation-builder.d.ts +0 -3
- package/dist/v2/durable-core/domain/observation-builder.js +2 -2
- package/dist/v2/durable-core/domain/prompt-renderer.js +5 -1
- package/dist/v2/infra/local/data-dir/index.d.ts +1 -0
- package/dist/v2/infra/local/data-dir/index.js +3 -0
- package/dist/v2/infra/local/session-summary-provider/index.js +1 -2
- package/dist/v2/ports/data-dir.port.d.ts +1 -0
- package/dist/v2/projections/resume-ranking.d.ts +0 -1
- package/dist/v2/usecases/console-routes.d.ts +1 -1
- package/dist/v2/usecases/console-routes.js +126 -21
- package/dist/v2/usecases/console-service.js +4 -14
- package/dist/v2/usecases/console-types.d.ts +15 -1
- package/dist/v2/usecases/worktree-service.d.ts +1 -0
- package/dist/v2/usecases/worktree-service.js +143 -15
- package/package.json +3 -2
- package/workflows/coding-task-workflow-agentic.lean.v2.json +132 -1
- package/workflows/mr-review-workflow.agentic.v2.json +24 -10
- package/workflows/workflow-for-workflows.json +33 -5
- package/dist/console/assets/index-BZNM03t1.css +0 -1
- package/dist/console/assets/index-BwJelCXK.js +0 -28
package/README.md
CHANGED
|
@@ -150,6 +150,19 @@ Then prompt your agent:
|
|
|
150
150
|
|
|
151
151
|
The agent will find the workflow, start at step 1, and proceed systematically.
|
|
152
152
|
|
|
153
|
+
### Troubleshooting: "Permission denied" on startup
|
|
154
|
+
|
|
155
|
+
Versions before 3.19.0 were published without the execute bit set on the binary.
|
|
156
|
+
If you see `Permission denied` when WorkRail starts, reinstall or fix it in place:
|
|
157
|
+
|
|
158
|
+
```sh
|
|
159
|
+
# Option A: reinstall (recommended)
|
|
160
|
+
npm install -g @exaudeus/workrail
|
|
161
|
+
|
|
162
|
+
# Option B: fix in place without reinstalling
|
|
163
|
+
chmod +x $(npm root -g)/@exaudeus/workrail/dist/mcp-server.js
|
|
164
|
+
```
|
|
165
|
+
|
|
153
166
|
---
|
|
154
167
|
|
|
155
168
|
## CI & Releases
|