@weibaohui/experts-management 0.1.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.
@@ -0,0 +1,13 @@
1
+ # dsh-plugin-experts-management bundle patch: contributes the plugin row into the host
2
+ # composition when this package is installed via `dsh plugin add`.
3
+ #
4
+ # The plugin is HOST-PLANE: it registers an expert provider on the host
5
+ # `skills` registry (each expert as a user-invocable, model-invisible skill so
6
+ # the `/expert-<name>` gesture boundary injects the expert's role prompt) and
7
+ # serves its HTTP API over a webServer route; its client half registers a
8
+ # full-page management surface plus a settings page. It must therefore land in
9
+ # the host composition (this insert), never inside an agent preset.
10
+
11
+ - insert:
12
+ - id: experts-management
13
+ name: '@weibaohui/experts-management'
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@weibaohui/experts-management",
3
+ "version": "0.1.0",
4
+ "description": "dsh 插件 · 专家市场:管理 ntd 格式的专家与专家团队(plugin.json + Agent MD + 技能集),浏览/安装 50+ 内置专家市场;每个专家注册为「仅用户可调用」的技能,在对话输入框用 /expert-名称 即可以该专家的身份执行任务(宿主确定性注入角色定义与技能清单,不占用模型目录 token)。",
5
+ "license": "MIT",
6
+ "keywords": [
7
+ "dsh",
8
+ "deepseek-harness",
9
+ "cordis",
10
+ "plugin",
11
+ "experts",
12
+ "agents",
13
+ "marketplace",
14
+ "ntd",
15
+ "dsh-plugin"
16
+ ],
17
+ "main": "src/index.js",
18
+ "exports": {
19
+ ".": "./src/index.js",
20
+ "./client": "./client/bundle.js",
21
+ "./package.json": "./package.json"
22
+ },
23
+ "dsh": {
24
+ "bundle": {
25
+ "patch": "./cordis.patch.yml"
26
+ },
27
+ "client": {
28
+ "platform": "web"
29
+ }
30
+ },
31
+ "files": [
32
+ "src",
33
+ "client",
34
+ "docs",
35
+ "cordis.patch.yml"
36
+ ],
37
+ "scripts": {
38
+ "check": "node --check src/index.js && node --check client/index.js",
39
+ "test": "node --test test/*.test.mjs",
40
+ "build:client": "node scripts/build-client.mjs",
41
+ "prepublishOnly": "npm run build:client && npm run check && npm test"
42
+ },
43
+ "engines": {
44
+ "node": ">=22.5"
45
+ },
46
+ "dependencies": {
47
+ "yaml": "^2.9.0"
48
+ },
49
+ "devDependencies": {
50
+ "@deepseek-ai/schemastery": "^3.18.1"
51
+ },
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/weibaohui/experts-management.git"
55
+ },
56
+ "homepage": "https://github.com/weibaohui/experts-management#readme",
57
+ "bugs": {
58
+ "url": "https://github.com/weibaohui/experts-management/issues"
59
+ },
60
+ "publishConfig": {
61
+ "access": "public"
62
+ }
63
+ }