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.
- package/README.md +7 -4
- 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
|
|
14
|
-
|
|
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
|
-
|
|
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.
|
|
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.
|
|
42
|
+
"workspai": "0.53.0"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"registry": "https://registry.npmjs.org",
|