plugin.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "schemaVersion": 1,
  3. "name": "superpowers",
  4. "displayName": "Superpowers",
  5. "version": "6.4.1",
  6. "description": "Core skills library for Muse: TDD, debugging, collaboration patterns, and proven techniques",
  7. "compat": {
  8. "source": "native",
  9. "manifestDir": ".muse-plugin"
  10. },
  11. "capabilities": {
  12. "skills": [
  13. {
  14. "id": "brainstorming",
  15. "path": "skills/brainstorming/SKILL.md"
  16. },
  17. {
  18. "id": "diagnosing-superpowers",
  19. "path": "skills/diagnosing-superpowers/SKILL.md"
  20. },
  21. {
  22. "id": "dispatching-parallel-agents",
  23. "path": "skills/dispatching-parallel-agents/SKILL.md"
  24. },
  25. {
  26. "id": "executing-plans",
  27. "path": "skills/executing-plans/SKILL.md"
  28. },
  29. {
  30. "id": "finishing-a-development-branch",
  31. "path": "skills/finishing-a-development-branch/SKILL.md"
  32. },
  33. {
  34. "id": "receiving-code-review",
  35. "path": "skills/receiving-code-review/SKILL.md"
  36. },
  37. {
  38. "id": "requesting-code-review",
  39. "path": "skills/requesting-code-review/SKILL.md"
  40. },
  41. {
  42. "id": "subagent-driven-development",
  43. "path": "skills/subagent-driven-development/SKILL.md"
  44. },
  45. {
  46. "id": "systematic-debugging",
  47. "path": "skills/systematic-debugging/SKILL.md"
  48. },
  49. {
  50. "id": "test-driven-development",
  51. "path": "skills/test-driven-development/SKILL.md"
  52. },
  53. {
  54. "id": "using-git-worktrees",
  55. "path": "skills/using-git-worktrees/SKILL.md"
  56. },
  57. {
  58. "id": "using-superpowers",
  59. "path": "skills/using-superpowers/SKILL.md"
  60. },
  61. {
  62. "id": "verification-before-completion",
  63. "path": "skills/verification-before-completion/SKILL.md"
  64. },
  65. {
  66. "id": "writing-plans",
  67. "path": "skills/writing-plans/SKILL.md"
  68. },
  69. {
  70. "id": "writing-skills",
  71. "path": "skills/writing-skills/SKILL.md"
  72. }
  73. ],
  74. "commands": [],
  75. "hooks": [
  76. {
  77. "id": "session-start",
  78. "event": "SessionStart",
  79. "command": [
  80. "sh",
  81. "hooks/session-start"
  82. ],
  83. "timeoutMs": 5000
  84. }
  85. ],
  86. "mcpServers": [],
  87. "reminders": []
  88. }
  89. }