-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "dsh-plugin-guide",
"version": "0.3.0",
"description": "The dsh-plugin-guide knowledge base plus the dsh-plugin-dev CLI toolchain: official docs, Cordis primer, community deep-dives, and battle-tested pitfalls registered as an on-demand agent skill, with a scaffolder, static checker, and pack verifier for building DSH plugins.",
"type": "module",
"main": "index.js",
"bin": {
"dsh-plugin-dev": "./bin/dsh-plugin-dev.js"
},
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"files": [
"index.js",
"bin",
"dist",
"templates",
"cordis.patch.yml",
"SKILL.md",
"guide",
"references",
"scripts",
"LICENSE",
"NOTICE.md",
"README.md",
"README.zh.md",
"README.es.md",
"README.pt.md",
"README.hi.md"
],
"keywords": [
"dsh",
"deepseek-harness",
"dsh-plugin",
"cordis",
"agent-skill",
"plugin-development",
"knowledge-base",
"cli",
"scaffold",
"checker"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/PerryLink/dsh-plugin-guide.git"
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"typecheck:ci": "tsc --noEmit --pretty false",
"test": "vitest run",
"check:kit": "pwsh -File scripts/verify-kit.ps1",
"verify:artifacts": "node scripts/verify-artifacts.mjs",
"verify:self-contained": "pnpm run build && node dist/dsh-plugin-dev.js verify",
"prepare": "tsdown",
"prepack": "tsdown"
},
"dependencies": {
"tsdown": "^0.22.14",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/node": "^22.20.1",
"vitest": "^3.2.7"
},
"peerDependencies": {
"@deepseek-ai/dsh": ">=0.1.0-rc.8 <0.2.0"
},
"peerDependenciesMeta": {
"@deepseek-ai/dsh": {
"optional": true
}
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "pnpm@11.7.0",
"dshWorkshop": {
"schema": "omdsh-workshop-package/v1",
"type": "plugin",
"integration": {
"protocol": "harness-profile",
"artifact": "cordis.patch.yml"
},
"install": {
"mode": "transactional",
"adapter": "profile-bundle",
"failurePolicy": "generation-rollback",
"touchesCurrentBeforeActivation": false
},
"lifecycle": {
"activation": "restart-profile",
"dispose": "supported"
},
"permissions": ["filesystem:read"],
"compatibility": {
"dshVersions": ["0.1.1-rc.2"]
},
"capability": {
"id": "dsh-plugin-guide",
"kind": "service",
"invocation": "ctx.skills.get('dsh-plugin-guide') resolves a complete SkillDefinition",
"expected": "session skill catalog lists dsh-plugin-guide and the loaded body carries the SKILL.md workflow with a directory resourceBase"
},
"evidence": {
"install": null,
"failureIsolation": null,
"hotReload": null,
"remove": null
}
}
}