@aident-ai/cli 0.1.8 → 0.2.0-rc.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 +23 -2
- package/cordis.patch.yml +3 -0
- package/dist/cli.mjs +5812 -2185
- package/dist/dsh.mjs +7258 -0
- package/package.json +17 -3
package/README.md
CHANGED
|
@@ -47,6 +47,20 @@ aident logout
|
|
|
47
47
|
|
|
48
48
|
When using `AIDENT_TOKEN`, unset it in your shell after running `aident logout`.
|
|
49
49
|
|
|
50
|
+
## DeepSeek Harness Plugin
|
|
51
|
+
|
|
52
|
+
Install the same package as a native DSH plugin:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
dsh plugin --profile web add @aident-ai/cli
|
|
56
|
+
dsh --profile web
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
The package bundle activates `@aident-ai/cli/dsh`. It registers an `auth` tool and the server-owned Loadout tool
|
|
60
|
+
catalog directly with DSH, while keeping CLI-only lifecycle commands private to the terminal interface. The plugin
|
|
61
|
+
shares `~/.aident/credentials.json` and `AIDENT_TOKEN` with the CLI. Run `aident login` before starting DSH, or ask the
|
|
62
|
+
agent to call the `auth` tool with `action: "login"`; newly authenticated tools are loaded without a restart.
|
|
63
|
+
|
|
50
64
|
## Updates
|
|
51
65
|
|
|
52
66
|
Check without changing the machine, or explicitly update both the CLI and static skill:
|
|
@@ -97,8 +111,12 @@ providers to Loadout integrations, and starts selected Vault/OAuth connect flows
|
|
|
97
111
|
|
|
98
112
|
`skills favorite` saves the account preference and immediately synchronizes all current favorites. `skills sync`
|
|
99
113
|
reconciles each current public revision into `~/.agents/skills` and links it into supported harness-global Skill
|
|
100
|
-
directories, where the deterministic `loadout-<slug>-<id>` name is available as a slash command.
|
|
101
|
-
|
|
114
|
+
directories, where the deterministic `loadout-<slug>-<id>` name is available as a slash command. Its discovery
|
|
115
|
+
description uses the reviewed display name and summary for the CLI's system language, with English fallback. The CLI
|
|
116
|
+
tracks its owned paths in `~/.aident/favorite-skills.json` and never overwrites or removes unmanaged paths. During
|
|
117
|
+
normal authenticated commands, the server compares the manifest state with the user's current favorites. When they
|
|
118
|
+
differ, the CLI tells the agent to finish the current task and ask the user before running `aident skills sync`; it
|
|
119
|
+
never synchronizes favorite Skills automatically.
|
|
102
120
|
|
|
103
121
|
`billing balance` keeps `balance` and returns `currentCreditSource` for the currently selected wallet. The legacy
|
|
104
122
|
`creditSource` alias remains available for compatibility. The response also returns `wallets.personal` plus
|
|
@@ -109,6 +127,9 @@ uncharged and historical rows return `null`. Team owners can pass `--scope team`
|
|
|
109
127
|
active members instead of just their own: each entry adds `actingUserId`/`actingUserEmail`/`actingUserName`, and the
|
|
110
128
|
summary adds a `byActingUser` breakdown. `--scope team` is rejected for anyone who isn't the owner of a team with
|
|
111
129
|
credit sharing enabled; the default `--scope mine` behavior is unchanged.
|
|
130
|
+
Successful self-owned rows can include `resultFiles` with a direct `downloadUrl` and nullable `expiresAt`, allowing a
|
|
131
|
+
caller to recover persisted output after an interrupted response. Audit output does not expose internal asset IDs, and
|
|
132
|
+
team scope does not expose another member's result files.
|
|
112
133
|
|
|
113
134
|
## Configuration
|
|
114
135
|
|
package/cordis.patch.yml
ADDED