mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
This reverts commit f12c131ee9fdbc01b9294c8dc2c73cd36ab717cf. The layered host skill registry closes the gap the bypass recorded: a repository plugin's skill root registers into the global layer and reaches every preset-composed session's catalog, so the fixture declares its skill root again and the e2e proves the full skill, MCP, and TypeScript contribution set. The accidental .claude/launch.json from that commit goes with it.
31 lines
744 B
JSON
31 lines
744 B
JSON
{
|
|
"name": "dsh-github-repository-plugin-e2e-fixture",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"files": [
|
|
"lib",
|
|
"dsh-plugin.mjs",
|
|
"dsh-plugin-assets"
|
|
],
|
|
"scripts": {
|
|
"prepack": "tsc --noEmit && tsdown src/plugin.ts src/mcp-server.ts --no-config --tsconfig tsconfig.json --out-dir lib --platform node --target es2024 --clean && dsh-plugin-prepare"
|
|
},
|
|
"dsh": {
|
|
"skills": [
|
|
"../skills"
|
|
],
|
|
"mcpServers": "./.mcp.json",
|
|
"entry": "./lib/plugin.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "1.29.0"
|
|
},
|
|
"devDependencies": {
|
|
"@deepseek-ai/dsh-repository-plugin": "0.0.1",
|
|
"cordis": "4.0.0-rc.7",
|
|
"tsdown": "0.22.2",
|
|
"typescript": "6.0.3"
|
|
}
|
|
}
|