@alter-ai/cli 0.3.3 → 0.5.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 +28 -16
- package/dist/cli.js +10372 -2207
- package/package.json +9 -4
package/README.md
CHANGED
|
@@ -21,22 +21,34 @@ ALTER_PAT=alter_pat_... alter apps list # headless / CI
|
|
|
21
21
|
## Commands
|
|
22
22
|
|
|
23
23
|
```
|
|
24
|
-
auth
|
|
25
|
-
apps
|
|
26
|
-
keys
|
|
27
|
-
agents
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
policy
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
24
|
+
auth login | status | logout
|
|
25
|
+
apps list | create | show | update | archive | unarchive | delete
|
|
26
|
+
keys list | statistics | mint | show | rotate | revoke | rename
|
|
27
|
+
agents list | create | show | update | revoke | audit |
|
|
28
|
+
registry-list | registry-show |
|
|
29
|
+
(+ mint-key, list-keys, revoke-key, deprecate-key, undeprecate-key)
|
|
30
|
+
providers list | list-catalog | create | show | update | delete
|
|
31
|
+
identity-providers create | discover | webhook {enable, disable, rotate, status}
|
|
32
|
+
managed-secrets list | show | create | rotate | delete | templates | access |
|
|
33
|
+
set-delegation-policy | set-allowed-hosts | users |
|
|
34
|
+
grants {list, list-for-agent, create, update, revoke} |
|
|
35
|
+
groups {list, show}
|
|
36
|
+
policy show-app | rules {create, list, get, update, delete}
|
|
37
|
+
audit list | show | explain | portal-actions | grant-events | traces |
|
|
38
|
+
threads | thread | agents | agent | integrity-check
|
|
39
|
+
grants list | revoke
|
|
40
|
+
analytics summary | dashboard | api-calls | by-provider | by-app |
|
|
41
|
+
policy | latency | errors
|
|
42
|
+
end-users list | show
|
|
43
|
+
branding get | set | reset
|
|
44
|
+
approvals defaults
|
|
45
|
+
pats whoami
|
|
46
|
+
link / unlink pin an app to the current directory
|
|
47
|
+
design / verify design-doc gate | code + runtime verification
|
|
48
|
+
init / doctor project scaffolding | environment diagnosis
|
|
49
|
+
completion install | print
|
|
50
|
+
self-update --to <v>
|
|
51
|
+
sdk-passthrough request <grant-id> --url <url>
|
|
40
52
|
```
|
|
41
53
|
|
|
42
54
|
All commands accept `--output=json|table|jsonl` and `--fields a,b,c`. See [scripting](https://docs.alterauth.com/reference/cli/scripting) for exit codes and CI patterns, and [authentication](https://docs.alterauth.com/reference/cli/authentication) for token storage details.
|