@240xu/dsh-tech-lead-bundle 0.3.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.
- package/cordis.patch.yml +6 -0
- package/package.json +37 -0
package/cordis.patch.yml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# tech-lead bundle: one insert row over the profile root. The plugin is
|
|
2
|
+
# strictly read-only (no fs writes, no subprocesses, no network); see
|
|
3
|
+
# packages/dsh-tech-lead-plugin/src/tools.js for the full surface.
|
|
4
|
+
- insert:
|
|
5
|
+
- id: tech-lead-tools
|
|
6
|
+
name: '@240xu/dsh-tech-lead-plugin'
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@240xu/dsh-tech-lead-bundle",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Opt-in dsh profile bundle exposing the read-only tech-lead tool surface",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/240xu/tech-lead-skill.git",
|
|
10
|
+
"directory": "packages/dsh-tech-lead-bundle"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"cordis.patch.yml"
|
|
14
|
+
],
|
|
15
|
+
"dsh": {
|
|
16
|
+
"bundle": {
|
|
17
|
+
"patch": "./cordis.patch.yml"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@240xu/dsh-tech-lead-plugin": "workspace:^"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=16"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"dsh",
|
|
31
|
+
"deepseek-harness",
|
|
32
|
+
"cordis",
|
|
33
|
+
"tech-lead",
|
|
34
|
+
"plugin",
|
|
35
|
+
"opencode"
|
|
36
|
+
]
|
|
37
|
+
}
|