wakespace 0.1.2 → 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 +51 -0
- package/README.md +30 -4
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,57 @@
|
|
|
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
|
+
|
|
43
|
+
## 0.1.3 — 2026-06-01
|
|
44
|
+
|
|
45
|
+
### Changed
|
|
46
|
+
|
|
47
|
+
- Default CLI state now resolves to `~/.wakespace` through `WAKESPACE_HOME`.
|
|
48
|
+
Legacy `WAKESPACE_DIR` and `--dir` remain explicit store overrides.
|
|
49
|
+
- Project definitions and memory now write to `projects/<id>/project.yaml` and
|
|
50
|
+
`projects/<id>/memory.md`.
|
|
51
|
+
- New task timelines and projections now write under
|
|
52
|
+
`projects/<id>/state/`, while legacy flat state remains readable.
|
|
53
|
+
- No-state-command fallback passes now use stage policy: planning/design-style
|
|
54
|
+
stages may commit workflow fields without project writes, while stages marked
|
|
55
|
+
`requiresProjectWrite` still block without `writeFile` evidence.
|
|
56
|
+
|
|
6
57
|
## 0.1.2 — 2026-06-01
|
|
7
58
|
|
|
8
59
|
### Added
|
package/README.md
CHANGED
|
@@ -34,8 +34,20 @@ After install:
|
|
|
34
34
|
wakespace help
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
The default workspace
|
|
38
|
-
`WAKESPACE_DIR`
|
|
37
|
+
The default workspace home is `~/.wakespace`. Override it with `WAKESPACE_HOME`.
|
|
38
|
+
The legacy `WAKESPACE_DIR` environment variable and CLI `--dir` flag still act
|
|
39
|
+
as explicit store overrides for tests, isolated smokes, and migration.
|
|
40
|
+
|
|
41
|
+
The normal home layout keeps user coordination state out of source checkouts:
|
|
42
|
+
|
|
43
|
+
```text
|
|
44
|
+
~/.wakespace/
|
|
45
|
+
workers/<id>.yaml
|
|
46
|
+
projects/<projectId>/project.yaml
|
|
47
|
+
projects/<projectId>/memory.md
|
|
48
|
+
projects/<projectId>/state/events/<taskId>.jsonl
|
|
49
|
+
projects/<projectId>/state/projections/<taskId>.json
|
|
50
|
+
```
|
|
39
51
|
|
|
40
52
|
Agent-facing commands default to JSON. Use `--text` for ad-hoc human text on
|
|
41
53
|
commands such as `status`, `task`, `project list`, and `worker list`.
|
|
@@ -46,6 +58,21 @@ For a human-readable snapshot of projects, workers, tasks, and recent activity:
|
|
|
46
58
|
wakespace overview
|
|
47
59
|
```
|
|
48
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
|
+
|
|
49
76
|
## Live Smoke
|
|
50
77
|
|
|
51
78
|
```sh
|
|
@@ -72,8 +99,7 @@ The platform matrix lives in `scripts/build-platforms.ts`; it stamps each
|
|
|
72
99
|
platform package with the launcher's version and fails if
|
|
73
100
|
`optionalDependencies` drift out of sync. Bump the version in both
|
|
74
101
|
`package.json` (version + each `optionalDependencies` entry) when cutting a
|
|
75
|
-
release.
|
|
76
|
-
gate plus a launcher dry-run.
|
|
102
|
+
release. Run `bun run release:dry` before publishing.
|
|
77
103
|
|
|
78
104
|
## License
|
|
79
105
|
|
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",
|