wakespace 0.1.3 → 0.1.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/CHANGELOG.md +37 -0
- package/README.md +15 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,43 @@
|
|
|
3
3
|
All notable changes to `wakespace` are documented here. This project adheres to
|
|
4
4
|
[Semantic Versioning](https://semver.org/).
|
|
5
5
|
|
|
6
|
+
## 0.1.4 — 2026-06-01
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- Wake chronicles now record `wake.progress` events for worker and commit tool
|
|
11
|
+
calls, so `inspect wait` can observe long wakes before they finish.
|
|
12
|
+
- Wake chronicles now record bounded worker diagnostics for each worker and
|
|
13
|
+
forced commit pass, including state-command counts, project tool/write
|
|
14
|
+
evidence, tool-call summaries, and first-pass text previews.
|
|
15
|
+
- Added `inspect wait`, a read-side command that waits for the next chronicle
|
|
16
|
+
event (optionally scoped by task) or exits on timeout.
|
|
17
|
+
- AI SDK project workers now get `replaceInFile` for exact small source edits;
|
|
18
|
+
wakespace counts it as project write evidence alongside `writeFile`.
|
|
19
|
+
- CLI task creation now accepts `--parent`, and `submit` accepts `transition`
|
|
20
|
+
so a lead can split broad work into child tasks and explicitly accept results.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Forced commit fallback now coalesces duplicate block/cancel calls so a worker
|
|
25
|
+
retry does not create misleading `command.rejected` chronicle noise.
|
|
26
|
+
- Wake diagnostics now label project write evidence generically as
|
|
27
|
+
`projectWrites` because either `writeFile` or `replaceInFile` can satisfy it.
|
|
28
|
+
- Project write evidence now counts only successful edit tool results, and the
|
|
29
|
+
forced commit fallback also runs when the worker only records non-advancing
|
|
30
|
+
commands such as `append_note`.
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- `chronicle --text` now renders structured facts for diagnostics, forced
|
|
35
|
+
commits, and progress rows instead of relying only on prose summaries.
|
|
36
|
+
- Default wake step budget increased from 6 to 12 so development workers have
|
|
37
|
+
enough room to inspect, edit, and commit state in one small implementation
|
|
38
|
+
wake.
|
|
39
|
+
- Development implement-stage instructions now prefer `replaceInFile` for
|
|
40
|
+
localized edits and explicitly warn workers not to spend the wake only on
|
|
41
|
+
inspection after the edit target is clear.
|
|
42
|
+
|
|
6
43
|
## 0.1.3 — 2026-06-01
|
|
7
44
|
|
|
8
45
|
### Changed
|
package/README.md
CHANGED
|
@@ -58,6 +58,21 @@ For a human-readable snapshot of projects, workers, tasks, and recent activity:
|
|
|
58
58
|
wakespace overview
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
To coordinate with a concurrently running wake without streaming `run`, wait
|
|
62
|
+
for the next chronicle event:
|
|
63
|
+
|
|
64
|
+
```sh
|
|
65
|
+
wakespace inspect wait --task <taskId> --timeout 30000
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
When a task is too broad, split a narrower child task and let the lead merge
|
|
69
|
+
accepted fields back into the parent:
|
|
70
|
+
|
|
71
|
+
```sh
|
|
72
|
+
wakespace create "small bounded change" --parent <parentTaskId> --workflow general
|
|
73
|
+
wakespace submit <taskId> transition "accepted"
|
|
74
|
+
```
|
|
75
|
+
|
|
61
76
|
## Live Smoke
|
|
62
77
|
|
|
63
78
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wakespace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Durable wake-loop workspace for agent-driven project development.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://github.com/lidessen/wakespace/tree/main/packages/wakespace#readme",
|
|
44
44
|
"optionalDependencies": {
|
|
45
|
-
"wakespace-darwin-arm64": "0.1.
|
|
46
|
-
"wakespace-darwin-x64": "0.1.
|
|
47
|
-
"wakespace-linux-x64": "0.1.
|
|
48
|
-
"wakespace-linux-arm64": "0.1.
|
|
49
|
-
"wakespace-linux-x64-musl": "0.1.
|
|
50
|
-
"wakespace-linux-arm64-musl": "0.1.
|
|
51
|
-
"wakespace-windows-x64": "0.1.
|
|
45
|
+
"wakespace-darwin-arm64": "0.1.4",
|
|
46
|
+
"wakespace-darwin-x64": "0.1.4",
|
|
47
|
+
"wakespace-linux-x64": "0.1.4",
|
|
48
|
+
"wakespace-linux-arm64": "0.1.4",
|
|
49
|
+
"wakespace-linux-x64-musl": "0.1.4",
|
|
50
|
+
"wakespace-linux-arm64-musl": "0.1.4",
|
|
51
|
+
"wakespace-windows-x64": "0.1.4"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/bun": "latest",
|