wakespace 0.1.0 → 0.1.1
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 +17 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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.1 — 2026-06-01
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- Added project markdown memory files that are loaded into worker prompts as bounded project context.
|
|
11
|
+
- Documented the global ~/.wakespace home layout for projects, worktrees, memory, workers, and state.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Worker discovery now reports codex and cursor as visible but non-createable runtimes when they lack wakespace tool capability.
|
|
16
|
+
- AI SDK wakes now require tool calls so workers cannot silently complete in plain text.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Added a commit pass for workers that perform project-tool work but forget wakespace state tools, and block fallback completion when no write evidence exists.
|
|
21
|
+
- Prevented stale transition.requested events from completing a task after block and unblock.
|
|
22
|
+
|
|
6
23
|
## 0.1.0 — 2026-06-01
|
|
7
24
|
|
|
8
25
|
Initial dogfood release. Published as a CLI-only package: a tiny cross-platform
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wakespace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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.1",
|
|
46
|
+
"wakespace-darwin-x64": "0.1.1",
|
|
47
|
+
"wakespace-linux-x64": "0.1.1",
|
|
48
|
+
"wakespace-linux-arm64": "0.1.1",
|
|
49
|
+
"wakespace-linux-x64-musl": "0.1.1",
|
|
50
|
+
"wakespace-linux-arm64-musl": "0.1.1",
|
|
51
|
+
"wakespace-windows-x64": "0.1.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/bun": "latest",
|