Fectivnfy112357 / dsh-dual-plugin-guide

목록에 있음

Dual-format plugin development guide: DSH static plugin package (dsh plugin --profile add) + Agent Plugins 1.0 (plugin.json + skills/). Not DSH-only — installs through both formats.

main도구스킬 소스 보기

설치

npx skills add Fectivnfy112357/dsh-dual-plugin-guide

이 명령은 GitHub 저장소 주소에서 생성됩니다. 실행 전에 업스트림 README와 소스를 검토하고 재현성이 필요하면 release 또는 commit을 고정하세요.

README

유지 관리자가 작성한 문서 스냅샷입니다.

GitHub에서 보기 ↗
커밋 a4305cf동기화 2026. 8. 17.

dsh-dual-plugin-guide

Dual-format plugin development guide. This plugin teaches an agent how to build plugins that are compatible with both ecosystems from one directory:

  • DSH static plugin package — installable via dsh plugin --profile <name> add <spec>
  • Agent Plugins 1.0plugin.json + skills/, loadable by compatible clients (Codex, Cursor, VS Code, …)
  • (bonus) Standard agent skillsnpx skills add discovers the same skills/ tree

Not DSH-only: this package itself installs through both formats.

Install

# DSH — register the guidance skill into the agent catalog (pick one source)
dsh plugin --profile web add dsh-dual-plugin-guide                          # npm (recommended)
dsh plugin --profile web add github:Fectivnfy112357/dsh-dual-plugin-guide   # GitHub

# Agent Plugins 1.0 — point a compatible client at the npm package or the repo:
#   https://www.npmjs.com/package/dsh-dual-plugin-guide
#   https://github.com/Fectivnfy112357/dsh-dual-plugin-guide
# Standard skills
npx skills add Fectivnfy112357/dsh-dual-plugin-guide

After the DSH install and a profile restart, the dsh-dual-plugin-guide skill shows up in the agent's skill catalog; the agent then follows it to build dual-format plugins. The bundled skills/dsh-dual-plugin-guide/scripts/scaffold.mjs generates a valid dual-format skeleton in one command.

Structure

dsh-dual-plugin-guide/
├── package.json       # "dsh": {"bundle": {"patch": "./cordis.patch.yml"}}
├── plugin.json        # Agent Plugins 1.0 manifest
├── cordis.patch.yml   # dsh bundle insert (id: dsh-dual-plugin-guide-skill)
├── lib/index.js       # Cordis entry: registers skills/dsh-dual-plugin-guide/SKILL.md into ctx.skills
└── skills/dsh-dual-plugin-guide/
    ├── SKILL.md       # the guidance (single source of content)
    ├── references/    # verified fact catalog (events, services, slots, tools, packaging, agent-plugins)
    └── scripts/       # scaffold.mjs — dual-format skeleton generator

How it works

lib/index.js is a minimal Cordis plugin (inject: ['skills']) that reads skills/dsh-dual-plugin-guide/SKILL.md (Agent Skills format) and registers it with ctx.skills via resourceBase, so relative references resolve. The same skills/ tree is what Agent Plugins clients and npx skills read — one content source, three loaders.

License

MIT

프로젝트 파일 및 신호

표시된 항목은 디렉터리 스냅샷에서 감지된 공개 저장소 신호입니다.

플러그인 매니페스트감지됨

저장소 정보

언어
JavaScript
라이선스
MIT
마지막 업데이트
2026. 8. 17. AM 7:16

신중하게 설치하기

소스 코드, 권한, 수명 주기 스크립트, 의존성 및 네트워크 접근을 검토하고 신뢰하지 않는 플러그인은 격리 환경에서 테스트하세요.