mirror of
https://github.com/obra/superpowers.git
synced 2026-08-08 15:22:59 +08:00
Devin CLI's `devin plugins install obra/superpowers` fails today because the
repo has no `.devin-plugin/plugin.json` manifest. Add the manifest (skills are
auto-discovered from the co-located skills/ directory), a Devin tool mapping
linked from using-superpowers' Platform Adaptation section, a README install
section, version tracking in .version-bump.json, a Codex-sync exclude for the
new dotdir, and a CI-safe test mirroring the kimi/antigravity test style.
Bootstrap rides Devin's native skill surfacing: every installed skill's
name + description is injected into the system prompt at session start with a
standing instruction to invoke matching skills via the native skill tool.
Acceptance test ("Let's make a react todo list") passes in a clean session:
using-superpowers and brainstorming auto-trigger before any code is written.
24 lines
791 B
JSON
24 lines
791 B
JSON
{
|
|
"files": [
|
|
{ "path": "package.json", "field": "version" },
|
|
{ "path": ".hermes-plugin/plugin.yaml", "field": "version" },
|
|
{ "path": ".claude-plugin/plugin.json", "field": "version" },
|
|
{ "path": ".cursor-plugin/plugin.json", "field": "version" },
|
|
{ "path": ".codex-plugin/plugin.json", "field": "version" },
|
|
{ "path": ".devin-plugin/plugin.json", "field": "version" },
|
|
{ "path": ".kimi-plugin/plugin.json", "field": "version" },
|
|
{ "path": ".claude-plugin/marketplace.json", "field": "plugins.0.version" },
|
|
{ "path": "gemini-extension.json", "field": "version" }
|
|
],
|
|
"audit": {
|
|
"exclude": [
|
|
"CHANGELOG.md",
|
|
"RELEASE-NOTES.md",
|
|
"node_modules",
|
|
".git",
|
|
".version-bump.json",
|
|
"scripts/bump-version.sh"
|
|
]
|
|
}
|
|
}
|