wspai 0.46.0 → 0.48.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 +34 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,21 +1,47 @@
1
1
  # wspai
2
2
 
3
- Short npm alias for the Workspai CLI.
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.
4
6
 
5
7
  ```bash
6
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
7
12
  ```
8
13
 
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`.
14
+ ## Which package should I use?
11
15
 
12
- Canonical package:
16
+ - Use `workspai` in documentation, automation, CI, and long-lived scripts. It is
17
+ the canonical package and command name.
18
+ - Use `wspai` when you prefer a shorter interactive command.
19
+
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.
13
23
 
14
24
  ```bash
15
- npx workspai --help
25
+ npm install -g wspai@0.48.0
26
+ wspai --version
16
27
  ```
17
28
 
18
- Documentation:
29
+ The canonical package remains available directly:
30
+
31
+ ```bash
32
+ npm install -g workspai@0.48.0
33
+ workspai --help
34
+ ```
35
+
36
+ Workspace state and generated evidence use the canonical `.workspai`
37
+ directory regardless of which command spelling you choose.
38
+
39
+ ## Documentation
40
+
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)
19
45
 
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)
46
+ Issues and contributions belong in the
47
+ [Workspai repository](https://github.com/rapidkitlabs/workspai/issues).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wspai",
3
- "version": "0.46.0",
3
+ "version": "0.48.0",
4
4
  "type": "module",
5
5
  "description": "Short npm alias for the Workspai CLI.",
6
6
  "keywords": [
@@ -35,7 +35,7 @@
35
35
  "scripts"
36
36
  ],
37
37
  "dependencies": {
38
- "workspai": "0.46.0"
38
+ "workspai": "0.48.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "registry": "https://registry.npmjs.org",