@aident-ai/cli 0.1.3-rc.1 → 0.1.3

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 CHANGED
@@ -63,12 +63,18 @@ aident capabilities execute --name "composio:gmail_tools:gmail_send_email" --inp
63
63
  aident vault status --integrationId composio:github_tools
64
64
  aident integrations migrate-local --json
65
65
  aident integrations migrate-local --apply --integrationIds github_tools,slack_tools --json
66
+ aident billing balance --json
66
67
  aident audit recent --limit 20
67
68
  ```
68
69
 
69
70
  `integrations migrate-local` scans known local MCP/agent config files, redacts secret-like values, maps supported
70
71
  providers to Loadout integrations, and starts selected Vault/OAuth connect flows only when `--apply` is passed.
71
72
 
73
+ `billing balance` keeps `balance` and returns `currentCreditSource` for the currently selected wallet. The legacy
74
+ `creditSource` alias remains available for compatibility. The response also returns `wallets.personal` plus
75
+ `wallets.team` when the team owner has enabled credit sharing. The Team wallet includes its team and owner names;
76
+ `wallets.team` is `null` while sharing is unavailable.
77
+
72
78
  ## Configuration
73
79
 
74
80
  Settings live in `~/.aident/config.json`; OAuth credentials live in `~/.aident/credentials.json`.
package/dist/cli.mjs CHANGED
@@ -548,7 +548,7 @@ function normalizeBaseUrl(url) {
548
548
  }
549
549
 
550
550
  // src/version.ts
551
- var VERSION = "0.1.3-rc.1";
551
+ var VERSION = "0.1.3";
552
552
 
553
553
  // src/catalogCache.ts
554
554
  var CACHE_TTL_MS = 5 * 60 * 1000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aident-ai/cli",
3
- "version": "0.1.3-rc.1",
3
+ "version": "0.1.3",
4
4
  "description": "Aident CLI — umbrella access to Loadout integrations, Playbook automation, Intern tools, and the Aident platform.",
5
5
  "homepage": "https://aident.ai",
6
6
  "repository": {