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.
Files changed (2) hide show
  1. package/README.md +35 -20
  2. package/package.json +8 -4
package/README.md CHANGED
@@ -1,47 +1,62 @@
1
1
  # wspai
2
2
 
3
- `wspai` is the short npm command for the complete Workspai CLI. It delegates to
4
- the canonical [`workspai`](https://www.npmjs.com/package/workspai) package, so
5
- both commands expose the same Workspace Intelligence features and contracts.
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
- npx wspai create workspace my-workspace --profile enterprise --yes
10
- cd my-workspace
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 canonical package and command name.
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. The
21
- alias does not maintain a separate runtime, configuration format, artifact
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.48.0
40
+ npm install -g wspai@0.50.0
26
41
  wspai --version
27
42
  ```
28
43
 
29
- The canonical package remains available directly:
44
+ The main package remains available directly:
30
45
 
31
46
  ```bash
32
- npm install -g workspai@0.48.0
47
+ npm install -g workspai@0.50.0
33
48
  workspai --help
34
49
  ```
35
50
 
36
- Workspace state and generated evidence use the canonical `.workspai`
37
- directory regardless of which command spelling you choose.
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/rapidkitlabs/workspai/blob/main/packages/cli/README.md)
42
- - [Task-oriented documentation](https://github.com/rapidkitlabs/workspai/blob/main/packages/cli/docs/README.md)
43
- - [Command reference](https://github.com/rapidkitlabs/workspai/blob/main/packages/cli/docs/commands-reference.md)
44
- - [Workspace Intelligence contracts](https://github.com/rapidkitlabs/workspai/tree/main/packages/cli/contracts)
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/rapidkitlabs/workspai/issues).
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.48.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": "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.48.0"
42
+ "workspai": "0.50.0"
39
43
  },
40
44
  "publishConfig": {
41
45
  "registry": "https://registry.npmjs.org",