dsh-model-router 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +6 -5
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -12,14 +12,15 @@ The idea is simple: pro is the better thinker, flash is fast and cheap at grindi
12
12
  Add it to a profile (this installs into the `web` profile; change the name for another one):
13
13
 
14
14
  ```bash
15
- dsh plugin --profile web add git+https://github.com/thedeveloper256/dsh-model-router
15
+ dsh plugin --profile web add dsh-model-router
16
16
  ```
17
17
 
18
- That's a git install, so pnpm clones the repo and builds it on the spot. pnpm guards build scripts by default, though it'll print an `allowBuilds` key you need to add to the profile's `pnpm-workspace.yaml`, then re-run the same `dsh plugin` command. It's a one-time thing:
18
+ That pulls it from npm, which ships prebuiltno build step needed.
19
19
 
20
- ```yaml
21
- allowBuilds:
22
- dsh-model-router@git+https://github.com/thedeveloper256/dsh-model-router#<commit>: true
20
+ Prefer the source? A git install works too, but pnpm clones and builds it on the spot and will ask you to approve the build script once (add the `allowBuilds` key it prints to the profile's `pnpm-workspace.yaml`, then re-run):
21
+
22
+ ```bash
23
+ dsh plugin --profile web add git+https://github.com/thedeveloper256/dsh-model-router
23
24
  ```
24
25
 
25
26
  Once it's in, restart the profile. You should see the row under `model-router` in `dsh web --dump-config`.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-model-router",
3
3
  "description": "DeepSeek Harness plugin: role-based model routing — the planner agent runs on deepseek-v4-pro, delegated executor subagents run on deepseek-v4-flash.",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -46,10 +46,14 @@
46
46
  },
47
47
  "keywords": [
48
48
  "deepseek",
49
+ "deepseek-harness",
49
50
  "harness",
50
51
  "dsh",
52
+ "dsh-plugin",
51
53
  "cordis",
52
54
  "model-routing",
55
+ "ai-agents",
56
+ "llm",
53
57
  "plugin"
54
58
  ]
55
59
  }