@aident-ai/cli 0.2.0-rc.0 → 0.2.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 +14 -0
- package/cordis.patch.yml +3 -0
- package/dist/cli.mjs +5714 -2201
- 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:
|
package/cordis.patch.yml
ADDED