skill-package-manifest.json 667 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "__SKILL_NAME__",
  3. "version": "0.1.0",
  4. "description": "__SUMMARY__",
  5. "skills": [
  6. {
  7. "name": "__SKILL_NAME__",
  8. "path": "skills/__SKILL_NAME__/SKILL.md"
  9. }
  10. ],
  11. "install": "npx --yes __SKILL_NAME__@latest workspace",
  12. "cli": {
  13. "__CLI_NAME__": "./bin/__CLI_NAME__.mjs"
  14. },
  15. "entry": {
  16. "sdk": "./lib/index.mjs"
  17. },
  18. "tier": "service",
  19. "platforms": ["gogs", "github", "npm", "skillhub"],
  20. "skillhub": {
  21. "slug": "fmode-__SKILL_NAME__",
  22. "displayName": "__SKILL_NAME__"
  23. },
  24. "repository": {
  25. "gogs": "https://git.fmode.cn/fmode/__SKILL_NAME__",
  26. "github": "https://github.com/fmodecn/__SKILL_NAME__"
  27. }
  28. }