@aident-ai/cli 0.1.0 → 0.1.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 +10 -5
- package/dist/cli.mjs +1429 -104
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -53,21 +53,26 @@ aident capabilities search --query "send email"
|
|
|
53
53
|
aident capabilities get --name "gmail_tools.gmail_send_email"
|
|
54
54
|
aident capabilities execute --name "gmail_tools.gmail_send_email" --input '{"to":"user@example.com"}'
|
|
55
55
|
aident vault status --integrationId github_tools
|
|
56
|
+
aident integrations migrate-local --json
|
|
57
|
+
aident integrations migrate-local --apply --integrationIds github_tools,slack_tools --json
|
|
56
58
|
aident audit recent --limit 20
|
|
57
59
|
```
|
|
58
60
|
|
|
61
|
+
`integrations migrate-local` scans known local MCP/agent config files, redacts secret-like values, maps supported
|
|
62
|
+
providers to Loadout integrations, and starts selected Vault/OAuth connect flows only when `--apply` is passed.
|
|
63
|
+
|
|
59
64
|
## Configuration
|
|
60
65
|
|
|
61
66
|
Settings live in `~/.aident/config.json`; OAuth credentials live in `~/.aident/credentials.json`.
|
|
62
67
|
|
|
63
|
-
| Key | Default
|
|
64
|
-
| ---------- |
|
|
65
|
-
| `baseUrl` | `https://
|
|
66
|
-
| `packages` | `["loadout"]`
|
|
68
|
+
| Key | Default | Purpose |
|
|
69
|
+
| ---------- | --------------------------- | ----------------------------------------------------- |
|
|
70
|
+
| `baseUrl` | `https://loadout.aident.ai` | API host used for logins and command execution. |
|
|
71
|
+
| `packages` | `["loadout"]` | Enabled packages. Loadout is always included locally. |
|
|
67
72
|
|
|
68
73
|
```bash
|
|
69
74
|
aident config show
|
|
70
|
-
aident config set baseUrl https://
|
|
75
|
+
aident config set baseUrl https://loadout.aident.ai
|
|
71
76
|
aident config set packages playbook
|
|
72
77
|
aident config unset packages
|
|
73
78
|
```
|