JohnXu22786/skill-manager0

dsh-skill-manager

dsh.bundle bridge that drives the repertoire skill catalog (Python) over its --io JSON-lines protocol

包名
dsh-skill-manager
版本
0.1.0
许可证
MIT
最近更新
2026年8月16日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:JohnXu22786/skill-manager

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"]
}
KeyDefaultDescription
markerSKILL.mdskill marker file name
max_scan_depth2max relative depth of skill directories within a zone
max_open_bytes262144body load size limit (force bypasses it)
max_body_lines500body line-count warning threshold
peek_cap_bytes65536per-read limit for attached files
strictfalseescalate 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…)