wakespace 0.1.4 → 0.1.5

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 +14 -0
  2. package/README.md +16 -1
  3. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
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.5 — 2026-06-01
7
+
8
+ ### Changed
9
+
10
+ - Implementation stages that require project writes now cap pre-write project
11
+ exploration. After the budget is exhausted, project tools reject the rest of
12
+ the worker pass, cancel the run, and route to commit fallback instead of
13
+ allowing repeated read retries or late writes.
14
+ - Coding-stage project writes now refuse `writeFile` overwrites of existing
15
+ files, steering workers toward structured `replaceInFile` edits for existing
16
+ source.
17
+ - Forced commit tools now expose workflow-field JSON schema and reject invalid
18
+ field payload types before reducer application.
19
+
6
20
  ## 0.1.4 — 2026-06-01
7
21
 
8
22
  ### 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 # build all platforms + publish for real (needs npm auth)
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.4",
3
+ "version": "0.1.5",
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.4",
46
- "wakespace-darwin-x64": "0.1.4",
47
- "wakespace-linux-x64": "0.1.4",
48
- "wakespace-linux-arm64": "0.1.4",
49
- "wakespace-linux-x64-musl": "0.1.4",
50
- "wakespace-linux-arm64-musl": "0.1.4",
51
- "wakespace-windows-x64": "0.1.4"
45
+ "wakespace-darwin-arm64": "0.1.5",
46
+ "wakespace-darwin-x64": "0.1.5",
47
+ "wakespace-linux-x64": "0.1.5",
48
+ "wakespace-linux-arm64": "0.1.5",
49
+ "wakespace-linux-x64-musl": "0.1.5",
50
+ "wakespace-linux-arm64-musl": "0.1.5",
51
+ "wakespace-windows-x64": "0.1.5"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/bun": "latest",