wakespace 0.1.4 → 0.1.6
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 +26 -0
- package/README.md +16 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
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.6 — 2026-06-01
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- Removed the fixed pre-write project tool-call cap from implementation stages.
|
|
11
|
+
Project write evidence is still required before normal implementation progress
|
|
12
|
+
can be committed, but worker exploration is governed by model/context limits
|
|
13
|
+
and better ACI context rather than a hard tool-count budget.
|
|
14
|
+
- Removed the wakespace worker step-cap option from workspace and engine wiring;
|
|
15
|
+
worker runtime limits should come from the model/context window and timeout
|
|
16
|
+
handling, not a wakespace step budget.
|
|
17
|
+
|
|
18
|
+
## 0.1.5 — 2026-06-01
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Implementation stages that require project writes now cap pre-write project
|
|
23
|
+
exploration. After the budget is exhausted, project tools reject the rest of
|
|
24
|
+
the worker pass, cancel the run, and route to commit fallback instead of
|
|
25
|
+
allowing repeated read retries or late writes.
|
|
26
|
+
- Coding-stage project writes now refuse `writeFile` overwrites of existing
|
|
27
|
+
files, steering workers toward structured `replaceInFile` edits for existing
|
|
28
|
+
source.
|
|
29
|
+
- Forced commit tools now expose workflow-field JSON schema and reject invalid
|
|
30
|
+
field payload types before reducer application.
|
|
31
|
+
|
|
6
32
|
## 0.1.4 — 2026-06-01
|
|
7
33
|
|
|
8
34
|
### Added
|
package/README.md
CHANGED
|
@@ -92,7 +92,15 @@ dependencies already resolve). From `packages/wakespace`:
|
|
|
92
92
|
|
|
93
93
|
```sh
|
|
94
94
|
bun run release:dry # build all platforms + npm publish --dry-run everywhere
|
|
95
|
-
bun run release
|
|
95
|
+
NPM_TOKEN=... bun run release
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
The script performs `npm whoami` with the same auth config before any real
|
|
99
|
+
publish. If `NPM_TOKEN` is loaded only when your shell starts at the repository
|
|
100
|
+
root, run the release from the root with an explicit environment override:
|
|
101
|
+
|
|
102
|
+
```sh
|
|
103
|
+
NPM_TOKEN="$NPM_TOKEN" bun --cwd packages/wakespace scripts/release.ts
|
|
96
104
|
```
|
|
97
105
|
|
|
98
106
|
The platform matrix lives in `scripts/build-platforms.ts`; it stamps each
|
|
@@ -101,6 +109,13 @@ platform package with the launcher's version and fails if
|
|
|
101
109
|
`package.json` (version + each `optionalDependencies` entry) when cutting a
|
|
102
110
|
release. Run `bun run release:dry` before publishing.
|
|
103
111
|
|
|
112
|
+
When publishing from this monorepo, do not rely on npm discovering a local
|
|
113
|
+
`.npmrc` from generated package directories. The release script maps `NPM_TOKEN`
|
|
114
|
+
to a temporary `NPM_CONFIG_USERCONFIG` file and passes that config explicitly to
|
|
115
|
+
each `npm publish` child process, then removes it. This avoids the recurring
|
|
116
|
+
case where `npm whoami` succeeds in one directory but platform-package publish
|
|
117
|
+
fails with auth/404 errors.
|
|
118
|
+
|
|
104
119
|
## License
|
|
105
120
|
|
|
106
121
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wakespace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
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.6",
|
|
46
|
+
"wakespace-darwin-x64": "0.1.6",
|
|
47
|
+
"wakespace-linux-x64": "0.1.6",
|
|
48
|
+
"wakespace-linux-arm64": "0.1.6",
|
|
49
|
+
"wakespace-linux-x64-musl": "0.1.6",
|
|
50
|
+
"wakespace-linux-arm64-musl": "0.1.6",
|
|
51
|
+
"wakespace-windows-x64": "0.1.6"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/bun": "latest",
|