JohnXu22786/skill-manager ↗★ 0
dsh-skill-manager
dsh.bundle bridge that drives the repertoire skill catalog (Python) over its --io JSON-lines protocol
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:JohnXu22786/skill-manager说明文档
阅读完整 README ↗Configuration
JSON configuration file (--config ); scalar items (marker, the various limits, strict) can be overridden with environment variables REPERTOIRE_*, e.g. REPERTOIRE_STRICT=1 (zone_paths / extra_zone_paths are structural items, config file only):
{
"marker": "SKILL.md",
"max_scan_depth": 2,
"max_open_bytes": 262144,
"max_body_lines": 500,
"peek_cap_bytes": 65536,
"strict": false,
"zone_paths": { "workspace": "C:/work/.dsh/skills" },
"extra_zone_paths": ["D:/shared-skills"]
}
| Key | Default | Description |
|---|---|---|
marker | SKILL.md | skill marker file name |
max_scan_depth | 2 | max relative depth of skill directories within a zone |
max_open_bytes | 262144 | body load size limit (force bypasses it) |
max_body_lines | 500 | body line-count warning threshold |
peek_cap_bytes | 65536 | per-read limit for attached files |
strict | false | escalate warnings to fatal |
zone_paths | {} | override default zone locations; extra keys become named zones |
extra_zone_paths | [] | append lower-priority zones (auto-named extra-1…) |