wakespace 0.1.1 → 0.1.3

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 (3) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +15 -4
  3. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
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.3 — 2026-06-01
7
+
8
+ ### Changed
9
+
10
+ - Default CLI state now resolves to `~/.wakespace` through `WAKESPACE_HOME`.
11
+ Legacy `WAKESPACE_DIR` and `--dir` remain explicit store overrides.
12
+ - Project definitions and memory now write to `projects/<id>/project.yaml` and
13
+ `projects/<id>/memory.md`.
14
+ - New task timelines and projections now write under
15
+ `projects/<id>/state/`, while legacy flat state remains readable.
16
+ - No-state-command fallback passes now use stage policy: planning/design-style
17
+ stages may commit workflow fields without project writes, while stages marked
18
+ `requiresProjectWrite` still block without `writeFile` evidence.
19
+
20
+ ## 0.1.2 — 2026-06-01
21
+
22
+ ### Added
23
+
24
+ - Added the builtin `development` workflow with explicit plan, design,
25
+ implement, and verify stages for general project work.
26
+
27
+ ### Changed
28
+
29
+ - Worker discovery now reports provider, runtime, and compatibility facts
30
+ without generating worker-creation suggestions.
31
+ - Worker-issued cancellation now records an approval request instead of
32
+ immediately terminating the task.
33
+ - Workers that performed no project writes are prompted to block rather than
34
+ claim completion during the commit fallback pass.
35
+
6
36
  ## 0.1.1 — 2026-06-01
7
37
 
8
38
  ### Added
package/README.md CHANGED
@@ -34,8 +34,20 @@ After install:
34
34
  wakespace help
35
35
  ```
36
36
 
37
- The default workspace directory is `.wakespace`. Override it with
38
- `WAKESPACE_DIR` or the CLI `--dir` flag.
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`.
@@ -72,8 +84,7 @@ The platform matrix lives in `scripts/build-platforms.ts`; it stamps each
72
84
  platform package with the launcher's version and fails if
73
85
  `optionalDependencies` drift out of sync. Bump the version in both
74
86
  `package.json` (version + each `optionalDependencies` entry) when cutting a
75
- release. The root `bun run release:check` still runs the typecheck/test/build
76
- gate plus a launcher dry-run.
87
+ release. Run `bun run release:dry` before publishing.
77
88
 
78
89
  ## License
79
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wakespace",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
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.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"
45
+ "wakespace-darwin-arm64": "0.1.3",
46
+ "wakespace-darwin-x64": "0.1.3",
47
+ "wakespace-linux-x64": "0.1.3",
48
+ "wakespace-linux-arm64": "0.1.3",
49
+ "wakespace-linux-x64-musl": "0.1.3",
50
+ "wakespace-linux-arm64-musl": "0.1.3",
51
+ "wakespace-windows-x64": "0.1.3"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/bun": "latest",