wspai 0.47.0 → 0.49.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 +49 -8
  2. package/package.json +8 -4
package/README.md CHANGED
@@ -1,21 +1,62 @@
1
1
  # wspai
2
2
 
3
- Short npm alias for the Workspai CLI.
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.
4
6
 
5
7
  ```bash
6
8
  npx wspai --help
9
+ cd /absolute/path/to/project
10
+ npx wspai adopt .
7
11
  ```
8
12
 
9
- This package delegates to the canonical `workspai` package. Keep the `wspai` package version and its
10
- `workspai` dependency version aligned with `packages/cli/package.json`.
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:
11
16
 
12
- Canonical package:
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
+
30
+ ## Which package should I use?
31
+
32
+ - Use `workspai` in documentation, automation, CI, and long-lived scripts. It is
33
+ the main package and command name.
34
+ - Use `wspai` when you prefer a shorter interactive command.
35
+
36
+ Installing the alias also installs the exact matching `workspai` version. Both
37
+ names use the same engine, configuration, `.workspai` files, and commands.
13
38
 
14
39
  ```bash
15
- npx workspai --help
40
+ npm install -g wspai@0.49.0
41
+ wspai --version
16
42
  ```
17
43
 
18
- Documentation:
44
+ The main package remains available directly:
45
+
46
+ ```bash
47
+ npm install -g workspai@0.49.0
48
+ workspai --help
49
+ ```
50
+
51
+ Workspace state and generated reports use the same `.workspai` directory
52
+ regardless of which command spelling you choose.
53
+
54
+ ## Documentation
55
+
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)
19
60
 
20
- - [Workspai CLI README](https://github.com/rapidkitlabs/workspai/blob/main/packages/cli/README.md)
21
- - [Documentation index](https://github.com/rapidkitlabs/workspai/blob/main/packages/cli/docs/README.md)
61
+ Issues and contributions belong in the
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.47.0",
3
+ "version": "0.49.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": "RapidKit Labs",
22
+ "author": "Chistiq",
23
23
  "license": "MIT",
24
24
  "repository": {
25
25
  "type": "git",
26
- "url": "git+https://github.com/rapidkitlabs/workspai.git",
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.47.0"
42
+ "workspai": "0.49.0"
39
43
  },
40
44
  "publishConfig": {
41
45
  "registry": "https://registry.npmjs.org",