@wrongstack/webui-server 0.308.2 → 0.308.4
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/index.js +2 -1
- package/dist/server/entry.js +2 -1
- package/package.json +12 -12
package/dist/index.js
CHANGED
|
@@ -12010,6 +12010,7 @@ ${metrics}` : "",
|
|
|
12010
12010
|
task.labels?.length ? `Labels: ${task.labels.join(", ")}` : "",
|
|
12011
12011
|
"",
|
|
12012
12012
|
"Work the task end-to-end. Use the kanban tool, not direct file edits, to update this task.",
|
|
12013
|
+
"Stay inside this task: its description and success criteria define the boundary. If you notice problems outside this task while working, do not fix them \u2014 note them in lastResult instead.",
|
|
12013
12014
|
...leaseId ? [
|
|
12014
12015
|
"LEASE CONTRACT:",
|
|
12015
12016
|
`- Your leaseId is "${leaseId}". Include expectedLeaseId "${leaseId}" in every mark_assignment and heartbeat_assignment call.`,
|
|
@@ -12018,7 +12019,7 @@ ${metrics}` : "",
|
|
|
12018
12019
|
"On failure the host may call recover_stale; respect its decisions and do not duplicate work."
|
|
12019
12020
|
] : [],
|
|
12020
12021
|
`When you start or finish, call kanban with action "mark_assignment", boardId "${board.id}", taskId "${task.id}", and assignmentStatus "running", "completed", or "failed"${leaseId ? `, and expectedLeaseId "${leaseId}"` : ""}. Include lastResult or error when you finish. On managed lifecycle boards, mark_assignment(completed) will automatically advance your card from Running to Review \u2014 a separate verification step is required before the card reaches Done.`,
|
|
12021
|
-
"When finished, report what changed, what you verified, and any
|
|
12022
|
+
"When finished, report what changed, what you verified, any remaining blockers, and any issues you noticed outside this task's scope."
|
|
12022
12023
|
].filter(Boolean).join("\n");
|
|
12023
12024
|
}
|
|
12024
12025
|
function findTask(tasks, taskId) {
|
package/dist/server/entry.js
CHANGED
|
@@ -11827,6 +11827,7 @@ ${metrics}` : "",
|
|
|
11827
11827
|
task.labels?.length ? `Labels: ${task.labels.join(", ")}` : "",
|
|
11828
11828
|
"",
|
|
11829
11829
|
"Work the task end-to-end. Use the kanban tool, not direct file edits, to update this task.",
|
|
11830
|
+
"Stay inside this task: its description and success criteria define the boundary. If you notice problems outside this task while working, do not fix them \u2014 note them in lastResult instead.",
|
|
11830
11831
|
...leaseId ? [
|
|
11831
11832
|
"LEASE CONTRACT:",
|
|
11832
11833
|
`- Your leaseId is "${leaseId}". Include expectedLeaseId "${leaseId}" in every mark_assignment and heartbeat_assignment call.`,
|
|
@@ -11835,7 +11836,7 @@ ${metrics}` : "",
|
|
|
11835
11836
|
"On failure the host may call recover_stale; respect its decisions and do not duplicate work."
|
|
11836
11837
|
] : [],
|
|
11837
11838
|
`When you start or finish, call kanban with action "mark_assignment", boardId "${board.id}", taskId "${task.id}", and assignmentStatus "running", "completed", or "failed"${leaseId ? `, and expectedLeaseId "${leaseId}"` : ""}. Include lastResult or error when you finish. On managed lifecycle boards, mark_assignment(completed) will automatically advance your card from Running to Review \u2014 a separate verification step is required before the card reaches Done.`,
|
|
11838
|
-
"When finished, report what changed, what you verified, and any
|
|
11839
|
+
"When finished, report what changed, what you verified, any remaining blockers, and any issues you noticed outside this task's scope."
|
|
11839
11840
|
].filter(Boolean).join("\n");
|
|
11840
11841
|
}
|
|
11841
11842
|
function findTask(tasks, taskId) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wrongstack/webui-server",
|
|
3
|
-
"version": "0.308.
|
|
3
|
+
"version": "0.308.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "WrongStack WebUI HTTP/WebSocket server module — extracted from @wrongstack/webui in PR #243/244 to remove the CLI -> @wrongstack/webui/server cross-package edge (audit §3.1.1). Pure backend: HTTP routes, WebSocket handlers, MCP tool wrappers, HTML serving. The web frontend lives in @wrongstack/webui; this package is the standalone server it can run on.",
|
|
6
6
|
"keywords": [
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"ws": "^8.21.3",
|
|
43
|
-
"@wrongstack/
|
|
44
|
-
"@wrongstack/
|
|
45
|
-
"@wrongstack/
|
|
46
|
-
"@wrongstack/
|
|
47
|
-
"@wrongstack/
|
|
48
|
-
"@wrongstack/
|
|
49
|
-
"@wrongstack/
|
|
50
|
-
"@wrongstack/
|
|
51
|
-
"@wrongstack/
|
|
52
|
-
"@wrongstack/
|
|
53
|
-
"@wrongstack/
|
|
43
|
+
"@wrongstack/requirement-intake": "0.308.4",
|
|
44
|
+
"@wrongstack/core": "0.308.4",
|
|
45
|
+
"@wrongstack/mcp": "0.308.4",
|
|
46
|
+
"@wrongstack/kanban": "0.308.4",
|
|
47
|
+
"@wrongstack/techstack": "0.308.4",
|
|
48
|
+
"@wrongstack/sage": "0.308.4",
|
|
49
|
+
"@wrongstack/sdd": "0.308.4",
|
|
50
|
+
"@wrongstack/runtime": "0.308.4",
|
|
51
|
+
"@wrongstack/vector-memory": "0.308.4",
|
|
52
|
+
"@wrongstack/tools": "0.308.4",
|
|
53
|
+
"@wrongstack/providers": "0.308.4"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/node": "^26.2.0",
|