wspai 0.52.2 → 0.53.0

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/README.md +7 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,15 +10,18 @@ cd /absolute/path/to/project
10
10
  npx wspai adopt .
11
11
  ```
12
12
 
13
- The CLI creates or reuses the minimal default workspace and prints the exact
14
- next shell step. Without the VS Code extension, continue from that workspace
15
- terminal:
13
+ The CLI creates or reuses the minimal default workspace and records a validated
14
+ link from the project. You can stay in the same project terminal:
16
15
 
17
16
  ```bash
18
- cd ~/.workspai/workspaces/workspai
17
+ npx wspai project workspace status --json
19
18
  npx wspai workspace intelligence run --for-agent generic --strict --json
20
19
  ```
21
20
 
21
+ The first command proves which canonical workspace owns the project. Use the
22
+ workspace root directly only when you intentionally want a root-scoped
23
+ operation; attached projects resolve it automatically.
24
+
22
25
  Use `generic` for vendor-neutral context, or select `codex`, `claude`,
23
26
  `cursor`, or `orca`. Shared grounding for GitHub Copilot, VS Code, and
24
27
  `AGENTS.md` consumers is generated by the same chain.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wspai",
3
- "version": "0.52.2",
3
+ "version": "0.53.0",
4
4
  "type": "module",
5
5
  "description": "Short npm alias for the Workspai CLI.",
6
6
  "keywords": [
@@ -39,7 +39,7 @@
39
39
  "scripts"
40
40
  ],
41
41
  "dependencies": {
42
- "workspai": "0.52.2"
42
+ "workspai": "0.53.0"
43
43
  },
44
44
  "publishConfig": {
45
45
  "registry": "https://registry.npmjs.org",