wspai 0.48.0 → 0.50.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 +35 -20
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -1,47 +1,62 @@
|
|
|
1
1
|
# wspai
|
|
2
2
|
|
|
3
|
-
`wspai` is
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
`wspai` is a shorter command for the complete Workspai CLI. It runs the main
|
|
4
|
+
[`workspai`](https://www.npmjs.com/package/workspai) package, so both names
|
|
5
|
+
provide the same commands, features, and output files.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npx wspai --help
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
npx wspai workspace intelligence run --for-agent codex --json
|
|
9
|
+
cd /absolute/path/to/project
|
|
10
|
+
npx wspai adopt .
|
|
12
11
|
```
|
|
13
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:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
cd ~/.workspai/workspaces/workspai
|
|
19
|
+
npx wspai workspace intelligence run --for-agent generic --strict --json
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Use `generic` for vendor-neutral context, or select `codex`, `claude`,
|
|
23
|
+
`cursor`, or `orca`. Shared grounding for GitHub Copilot, VS Code, and
|
|
24
|
+
`AGENTS.md` consumers is generated by the same chain.
|
|
25
|
+
|
|
26
|
+
That run maps the system, records its connections, checks what changes may
|
|
27
|
+
affect, and prepares focused AI context. `wspai` does not install or maintain a
|
|
28
|
+
second engine.
|
|
29
|
+
|
|
14
30
|
## Which package should I use?
|
|
15
31
|
|
|
16
32
|
- Use `workspai` in documentation, automation, CI, and long-lived scripts. It is
|
|
17
|
-
the
|
|
33
|
+
the main package and command name.
|
|
18
34
|
- Use `wspai` when you prefer a shorter interactive command.
|
|
19
35
|
|
|
20
|
-
Installing the alias also installs the exact matching `workspai` version.
|
|
21
|
-
|
|
22
|
-
layout, or command surface.
|
|
36
|
+
Installing the alias also installs the exact matching `workspai` version. Both
|
|
37
|
+
names use the same engine, configuration, `.workspai` files, and commands.
|
|
23
38
|
|
|
24
39
|
```bash
|
|
25
|
-
npm install -g wspai@0.
|
|
40
|
+
npm install -g wspai@0.50.0
|
|
26
41
|
wspai --version
|
|
27
42
|
```
|
|
28
43
|
|
|
29
|
-
The
|
|
44
|
+
The main package remains available directly:
|
|
30
45
|
|
|
31
46
|
```bash
|
|
32
|
-
npm install -g workspai@0.
|
|
47
|
+
npm install -g workspai@0.50.0
|
|
33
48
|
workspai --help
|
|
34
49
|
```
|
|
35
50
|
|
|
36
|
-
Workspace state and generated
|
|
37
|
-
|
|
51
|
+
Workspace state and generated reports use the same `.workspai` directory
|
|
52
|
+
regardless of which command spelling you choose.
|
|
38
53
|
|
|
39
54
|
## Documentation
|
|
40
55
|
|
|
41
|
-
- [Workspai CLI overview](https://github.com/
|
|
42
|
-
- [Task-oriented documentation](https://github.com/
|
|
43
|
-
- [Command reference](https://github.com/
|
|
44
|
-
- [Workspace Intelligence contracts](https://github.com/
|
|
56
|
+
- [Workspai CLI overview](https://github.com/chistiq/workspai/blob/main/packages/cli/README.md)
|
|
57
|
+
- [Task-oriented documentation](https://github.com/chistiq/workspai/blob/main/packages/cli/docs/README.md)
|
|
58
|
+
- [Command reference](https://github.com/chistiq/workspai/blob/main/packages/cli/docs/commands-reference.md)
|
|
59
|
+
- [Workspace Intelligence contracts](https://github.com/chistiq/workspai/tree/main/packages/cli/contracts)
|
|
45
60
|
|
|
46
61
|
Issues and contributions belong in the
|
|
47
|
-
[Workspai repository](https://github.com/
|
|
62
|
+
[Workspai repository](https://github.com/chistiq/workspai/issues).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wspai",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Short npm alias for the Workspai CLI.",
|
|
6
6
|
"keywords": [
|
|
@@ -19,13 +19,17 @@
|
|
|
19
19
|
"governance",
|
|
20
20
|
"AI-agents"
|
|
21
21
|
],
|
|
22
|
-
"author": "
|
|
22
|
+
"author": "Chistiq",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
26
|
-
"url": "git+https://github.com/
|
|
26
|
+
"url": "git+https://github.com/chistiq/workspai.git",
|
|
27
27
|
"directory": "packages/wspai"
|
|
28
28
|
},
|
|
29
|
+
"homepage": "https://www.workspai.com/",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/chistiq/workspai/issues"
|
|
32
|
+
},
|
|
29
33
|
"bin": {
|
|
30
34
|
"wspai": "bin/wspai.js"
|
|
31
35
|
},
|
|
@@ -35,7 +39,7 @@
|
|
|
35
39
|
"scripts"
|
|
36
40
|
],
|
|
37
41
|
"dependencies": {
|
|
38
|
-
"workspai": "0.
|
|
42
|
+
"workspai": "0.50.0"
|
|
39
43
|
},
|
|
40
44
|
"publishConfig": {
|
|
41
45
|
"registry": "https://registry.npmjs.org",
|