A monorepo of Kiro Powers. Each subdirectory is a self-contained Power — its own POWER.md, optional mcp.json, and (when needed) its own embedded MCP server.
| Power | What it does | Shape | Has MCP server? |
|---|---|---|---|
commander/ |
Commander Collector (MTG game-tracking app) project context + version-gap status | tool + resource + embedded server | Yes |
portfolio/ |
rickwphillips.com project context: architecture, blog posts, deploy, troubleshooting | steering-only | No |
deploy/ |
Deploy commander/portfolio/grandkid/all to prod, with preflight checks (git clean, commander migration location) | single tool | Yes |
- In Kiro, open the Powers panel
- Choose "Import from GitHub URL"
- Paste the URL to the specific Power's subdirectory, e.g.
https://github.com/<user>/kiro-powers/tree/main/commander - Follow any onboarding prompts the Power's
POWER.mddefines
kiro-powers/
└── <name>/
├── POWER.md # required — frontmatter (name, displayName, description, keywords, author) + steering
├── mcp.json # optional — only if the Power uses MCP tools/resources
├── README.md # human-readable install/test notes
└── server/ # optional — embedded MCP server (only if mcp.json points here)
├── package.json
├── tsconfig.json
└── src/
Each Power is independent. No shared code across Powers — each is fully installable on its own.