osuite 2.9.1 → 2.9.2
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 -1
- package/cli.js +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# OSuite SDK (v2.9.
|
|
1
|
+
# OSuite SDK (v2.9.2)
|
|
2
2
|
|
|
3
3
|
**Governed action SDK for AI agents.**
|
|
4
4
|
|
|
@@ -450,6 +450,12 @@ OSuite uses standard HTTP status codes and custom error classes:
|
|
|
450
450
|
|
|
451
451
|
Install the OSuite CLI to connect a runtime, preview CAVA interpretation, review Decision V2 output, and approve agent actions from the terminal:
|
|
452
452
|
|
|
453
|
+
```bash
|
|
454
|
+
curl -fsSL https://studio.osuite.ai/install.sh | bash -s -- sdk
|
|
455
|
+
```
|
|
456
|
+
|
|
457
|
+
If you prefer npm directly:
|
|
458
|
+
|
|
453
459
|
```bash
|
|
454
460
|
npm install -g osuite
|
|
455
461
|
```
|
package/cli.js
CHANGED
|
@@ -103,7 +103,7 @@ function printHelp() {
|
|
|
103
103
|
write(' osuite review <actionId> Render the decision review card');
|
|
104
104
|
write(' osuite approve <actionId> --reason "Looks safe"');
|
|
105
105
|
write(' osuite deny <actionId> --reason "Outside change window"');
|
|
106
|
-
write(' osuite init [codex|claude|mcp]
|
|
106
|
+
write(' osuite init [sdk|codex|claude|mcp] Print setup steps for a runtime lane');
|
|
107
107
|
write('');
|
|
108
108
|
write(c('Environment', ANSI.bold));
|
|
109
109
|
write(' OSUITE_BASE_URL Studio URL, for example https://studio.osuite.ai');
|
|
@@ -382,7 +382,13 @@ function init(target = 'generic') {
|
|
|
382
382
|
write('export OSUITE_AGENT_ID=<agent-or-runtime-id>');
|
|
383
383
|
write('');
|
|
384
384
|
|
|
385
|
-
if (target === '
|
|
385
|
+
if (target === 'sdk') {
|
|
386
|
+
write(c('Embedded SDK runtime lane', ANSI.bold));
|
|
387
|
+
write(' npm install osuite');
|
|
388
|
+
write(' export OSUITE_RUNTIME_FAMILY=framework_sdk');
|
|
389
|
+
write(' export OSUITE_ADAPTER_MODE=inline_sdk');
|
|
390
|
+
write(' osuite doctor');
|
|
391
|
+
} else if (target === 'codex') {
|
|
386
392
|
write(c('Codex runtime lane', ANSI.bold));
|
|
387
393
|
write(' osuite doctor');
|
|
388
394
|
write(' npm run runtime:install:codex-plugin');
|