wakespace 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,39 @@
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.2 — 2026-06-01
7
+
8
+ ### Added
9
+
10
+ - Added the builtin `development` workflow with explicit plan, design,
11
+ implement, and verify stages for general project work.
12
+
13
+ ### Changed
14
+
15
+ - Worker discovery now reports provider, runtime, and compatibility facts
16
+ without generating worker-creation suggestions.
17
+ - Worker-issued cancellation now records an approval request instead of
18
+ immediately terminating the task.
19
+ - Workers that performed no project writes are prompted to block rather than
20
+ claim completion during the commit fallback pass.
21
+
22
+ ## 0.1.1 — 2026-06-01
23
+
24
+ ### Added
25
+
26
+ - Added project markdown memory files that are loaded into worker prompts as bounded project context.
27
+ - Documented the global ~/.wakespace home layout for projects, worktrees, memory, workers, and state.
28
+
29
+ ### Changed
30
+
31
+ - Worker discovery now reports codex and cursor as visible but non-createable runtimes when they lack wakespace tool capability.
32
+ - AI SDK wakes now require tool calls so workers cannot silently complete in plain text.
33
+
34
+ ### Fixed
35
+
36
+ - 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.
37
+ - Prevented stale transition.requested events from completing a task after block and unblock.
38
+
6
39
  ## 0.1.0 — 2026-06-01
7
40
 
8
41
  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.0",
3
+ "version": "0.1.2",
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.0",
46
- "wakespace-darwin-x64": "0.1.0",
47
- "wakespace-linux-x64": "0.1.0",
48
- "wakespace-linux-arm64": "0.1.0",
49
- "wakespace-linux-x64-musl": "0.1.0",
50
- "wakespace-linux-arm64-musl": "0.1.0",
51
- "wakespace-windows-x64": "0.1.0"
45
+ "wakespace-darwin-arm64": "0.1.2",
46
+ "wakespace-darwin-x64": "0.1.2",
47
+ "wakespace-linux-x64": "0.1.2",
48
+ "wakespace-linux-arm64": "0.1.2",
49
+ "wakespace-linux-x64-musl": "0.1.2",
50
+ "wakespace-linux-arm64-musl": "0.1.2",
51
+ "wakespace-windows-x64": "0.1.2"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/bun": "latest",