wakespace 0.1.5 → 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 +12 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
|
|
6
18
|
## 0.1.5 — 2026-06-01
|
|
7
19
|
|
|
8
20
|
### Changed
|
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",
|