@logictan/dsh-plugins-all 0.2.0 → 0.2.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.
- package/cordis.patch.yml +46 -0
- package/package.json +11 -2
package/cordis.patch.yml
CHANGED
|
@@ -25,3 +25,49 @@
|
|
|
25
25
|
- insert:
|
|
26
26
|
- id: config-manager
|
|
27
27
|
name: '@logictan/dsh-config-manager'
|
|
28
|
+
|
|
29
|
+
# from ../dsh-workbuddy-connect
|
|
30
|
+
# Register the WorkBuddy provider without changing the profile's current
|
|
31
|
+
# default model. The plugin reuses the WorkBuddy desktop app's sign-in; no
|
|
32
|
+
# separate OAuth flow is started.
|
|
33
|
+
#
|
|
34
|
+
# Row id stays `llm-workbuddy`: it equals the host half's `export const name`
|
|
35
|
+
# in src/index.ts, and the browser half keys its configuration entry on
|
|
36
|
+
# `<bundle package name>#llm-workbuddy` for this same id.
|
|
37
|
+
- insert:
|
|
38
|
+
- id: llm-workbuddy
|
|
39
|
+
name: '@logictan/dsh-workbuddy-connect'
|
|
40
|
+
|
|
41
|
+
# from ../dsh-easyrewrite
|
|
42
|
+
# dsh-easyrewrite bundle patch layer —— 把本插件挂载进 profile 树。
|
|
43
|
+
#
|
|
44
|
+
# 行 id 保持 `dsh-easyrewrite`:它等于宿主半边 src/index.js 的 `export const name`,
|
|
45
|
+
# 浏览器半边则以 `<bundle 包名>#dsh-easyrewrite` 作为自己的配置项 key。
|
|
46
|
+
# name 为发布包名(@logictan 作用域)。
|
|
47
|
+
- insert:
|
|
48
|
+
- id: dsh-easyrewrite
|
|
49
|
+
name: '@logictan/dsh-easyrewrite'
|
|
50
|
+
|
|
51
|
+
# from ../dsh-market
|
|
52
|
+
# dsh bundle patch: inserts this plugin into a profile's layer stack.
|
|
53
|
+
#
|
|
54
|
+
# Row id stays `dsh-market`: it equals the host half's `export const name`
|
|
55
|
+
# in src/index.ts, and the browser half keys its configuration entry on
|
|
56
|
+
# `<bundle package name>#dsh-market` for this same id.
|
|
57
|
+
- insert:
|
|
58
|
+
- id: dsh-market
|
|
59
|
+
name: '@logictan/dshmarket'
|
|
60
|
+
|
|
61
|
+
# from ../dsh-imagegen
|
|
62
|
+
# dsh-imagegen bundle patch: inserts the plugin row into the web profile
|
|
63
|
+
# roster. The row is a bare plugin by package name: the node half (exports ".")
|
|
64
|
+
# runs in the host process (settings bridge + image-generation proxy routes),
|
|
65
|
+
# and the `dsh.client` declaration in package.json makes the browser half
|
|
66
|
+
# (exports "./client", served at /plugins/<id>/client.js) load in the web GUI.
|
|
67
|
+
#
|
|
68
|
+
# Row id stays `imagegen`: it equals the host half's `export const name` in
|
|
69
|
+
# src/index.ts, and the browser half keys its configuration entry on
|
|
70
|
+
# `<bundle package name>#imagegen` for this same id.
|
|
71
|
+
- insert:
|
|
72
|
+
- id: imagegen
|
|
73
|
+
name: '@logictan/dsh-imagegen'
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@logictan/dsh-plugins-all",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "DSH plugin aggregate bundle: one install for every plugin in this repo.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/dale0525/dsh-plugins.git",
|
|
10
|
+
"directory": "packages/all"
|
|
11
|
+
},
|
|
7
12
|
"dsh": {
|
|
8
13
|
"bundle": {
|
|
9
14
|
"patch": "./cordis.patch.yml"
|
|
@@ -14,6 +19,10 @@
|
|
|
14
19
|
"cordis.patch.yml"
|
|
15
20
|
],
|
|
16
21
|
"dependencies": {
|
|
17
|
-
"@logictan/dsh-config-manager": "^0.1.60"
|
|
22
|
+
"@logictan/dsh-config-manager": "^0.1.60",
|
|
23
|
+
"@logictan/dsh-easyrewrite": "^2.5.4",
|
|
24
|
+
"@logictan/dsh-imagegen": "^1.5.13",
|
|
25
|
+
"@logictan/dsh-workbuddy-connect": "^0.5.4",
|
|
26
|
+
"@logictan/dshmarket": "^1.48.0"
|
|
18
27
|
}
|
|
19
28
|
}
|