dsh-agora 0.2.0 → 0.2.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 +11 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -23,8 +23,17 @@ dsh plugin --profile web add /path/to/dsh-agora
|
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
> **pnpm workspace-root gotcha**: with pnpm ≥ 8.15 the profile's workspace
|
|
26
|
-
> root rejects a bare `add` (`ERR_PNPM_ADDING_TO_ROOT`).
|
|
27
|
-
> `dsh plugin
|
|
26
|
+
> root rejects a bare `add` (`ERR_PNPM_ADDING_TO_ROOT`). The clean fix is to
|
|
27
|
+
> disable the check once per profile so plain `dsh plugin add` just works:
|
|
28
|
+
>
|
|
29
|
+
> ```sh
|
|
30
|
+
> echo "ignore-workspace-root-check=true" > ~/.dsh/profiles/web/.npmrc
|
|
31
|
+
> dsh plugin --profile web add dsh-agora
|
|
32
|
+
> ```
|
|
33
|
+
>
|
|
34
|
+
> (Alternative: add `-w` to the command: `dsh plugin --profile web add -w dsh-agora`.
|
|
35
|
+
> The root cause is dsh's `plugin` subcommand forwarding verbatim to pnpm with
|
|
36
|
+
> no package-manager switch — worth an upstream issue if it bites more users.)
|
|
28
37
|
>
|
|
29
38
|
> **link: dev mode**: the profile must resolve the runtime peer
|
|
30
39
|
> `@deepseek-ai/dsh-skill`. Install it in the repo checkout first
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-agora",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "DSH skill bundle: the Agora skill (RTC, RTM, ConvoAI, CLI, Cloud Recording, tokens) synced verbatim from AgoraIO/skills at a pinned release tag. Install to add the `agora` skill to DeepSeek Harness.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/
|
|
20
|
+
"url": "git+https://github.com/AgoraIO-Community/dsh-agora.git"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"deepseek-harness",
|