Agent skills for Orderly plugin workflows (create, submit to Marketplace, add to a DEX host).
| Directory | name (frontmatter) |
Purpose |
|---|---|---|
| skills/orderly-plugin-create | orderly-plugin-create |
orderly create plugin (CLI scaffold) |
| skills/orderly-plugin-write | orderly-plugin-write |
Write plugin code: interceptors, hooks, lifecycle, patterns |
| skills/orderly-plugin-add | orderly-plugin-add |
Wire plugin into host (OrderlyAppProvider / workspace) |
| skills/orderly-plugin-submit | orderly-plugin-submit |
README (optional), usagePrompt + confirm, orderly submit |
Shared reference: skills/_shared/orderly-plugin-reference.md.
Install (Vercel skills CLI)
Replace <owner/repo> with this repository’s GitHub path.
All four:
npx skills add <owner/repo> \
--skill orderly-plugin-create \
--skill orderly-plugin-write \
--skill orderly-plugin-add \
--skill orderly-plugin-submit \
-yOne skill:
npx skills add <owner/repo> --skill orderly-plugin-create -yDirect path to a skill folder (monorepo-friendly):
npx skills add https://github.com/<owner>/<repo>/tree/main/skills/orderly-plugin-createSkills assume @orderly.network/cli (orderly binary) for create/submit flows.
orderly-plugin-gen was replaced by orderly-plugin-create + orderly-plugin-write + orderly-plugin-add + orderly-plugin-submit. Use the install commands above.