@dsh-plugin-hub/dsh-plugin 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.
- package/LICENSE +21 -0
- package/README.md +14 -1
- package/package.json +20 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 DSH Plugin Hub contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @dsh-plugin-hub/dsh-plugin
|
|
2
|
+
|
|
3
|
+
Agent-facing DSH tools for planning, sharing, applying, and rolling back
|
|
4
|
+
reproducible [DSH Plugin Hub](https://dshpluginhub.ai) Profiles.
|
|
5
|
+
|
|
6
|
+
- Website: [dshpluginhub.ai](https://dshpluginhub.ai)
|
|
7
|
+
- Browse plugins: [dshpluginhub.ai/plugins](https://dshpluginhub.ai/plugins)
|
|
8
|
+
- Explore Profiles: [dshpluginhub.ai/profiles](https://dshpluginhub.ai/profiles)
|
|
2
9
|
|
|
3
10
|
Install into a Profile:
|
|
4
11
|
|
|
@@ -17,3 +24,9 @@ The bundle exposes five DSH tools backed by the local `dsh-hub` CLI:
|
|
|
17
24
|
Every machine-triggered mutation uses an expiring, single-use, preconditioned
|
|
18
25
|
plan and the same staging, validation, atomic switch and rollback implementation
|
|
19
26
|
as direct CLI use.
|
|
27
|
+
|
|
28
|
+
Requires Node.js 22.13 or later, `@deepseek-ai/cordis`, and
|
|
29
|
+
`@deepseek-ai/dsh-tools`.
|
|
30
|
+
|
|
31
|
+
This is an independent community project and is not affiliated with or endorsed
|
|
32
|
+
by DeepSeek.
|
package/package.json
CHANGED
|
@@ -1,16 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dsh-plugin-hub/dsh-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "DSH tools for planning and applying reproducible Plugin Hub Profiles through the local dsh-hub CLI",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dsh-plugin",
|
|
7
|
+
"deepseek-harness",
|
|
8
|
+
"profile",
|
|
9
|
+
"agent-tools",
|
|
10
|
+
"rollback"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://dshpluginhub.ai",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/pax-beehive/dsh-plugin-hub.git",
|
|
16
|
+
"directory": "packages/dsh-plugin"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/pax-beehive/dsh-plugin-hub/issues"
|
|
20
|
+
},
|
|
5
21
|
"type": "module",
|
|
6
22
|
"main": "./index.js",
|
|
7
23
|
"files": [
|
|
8
24
|
"index.js",
|
|
9
25
|
"cordis.patch.yml",
|
|
10
|
-
"README.md"
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE"
|
|
11
28
|
],
|
|
12
29
|
"dependencies": {
|
|
13
|
-
"@dsh-plugin-hub/cli": "0.1.
|
|
30
|
+
"@dsh-plugin-hub/cli": "0.1.1"
|
|
14
31
|
},
|
|
15
32
|
"peerDependencies": {
|
|
16
33
|
"@deepseek-ai/cordis": "^4.0.1",
|