Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
af41321
feat: add spec-kit power for Spec-Driven Development
catface996 Dec 15, 2025
5e4f32c
chore: translate spec-kit workflow templates to English
catface996 Dec 15, 2025
ac4fdee
feat: require userInput tool for single-choice clarification questions
catface996 Dec 15, 2025
ad030c5
fix: correct wording for userInput tool requirement
catface996 Dec 15, 2025
141d1ca
refactor: streamline POWER.md and remove duplicates
catface996 Dec 15, 2025
827a791
feat: add userInput tool requirement for clarification questions
catface996 Dec 16, 2025
790d85e
Merge branch 'kirodotdev:main' into main
catface996 Dec 17, 2025
4ea9bf2
Add MIT License to spec-kit
catface996 Dec 19, 2025
66ce69a
Merge branch 'kirodotdev:main' into main
catface996 Jan 6, 2026
ac71a2f
Update code
catface996 Jan 6, 2026
891ba34
refactor(aidlc): Flatten rule-details into steering directory
catface996 Jan 7, 2026
885c371
Add PPTX Power with MCP server support
Jan 8, 2026
925e7aa
Add AgentCore Browser Power with MCP server support
Jan 8, 2026
0740d10
Add Skill Conversion Power for migrating Claude Skills to Kiro Powers
Jan 8, 2026
6ac0cbb
Merge pull request #1 from dashjim/feature/add-skill-conversion-power
JoeShi Jan 8, 2026
ad3f19f
Merge pull request #2 from dashjim/feature/add-agentcore-browser-power
JoeShi Jan 8, 2026
828b6aa
Merge pull request #3 from dashjim/feature/add-pptx-power
JoeShi Jan 8, 2026
a8d8ded
Merge branch 'kirodotdev:main' into main
catface996 Jan 16, 2026
2066040
feat(requirements-analyst): Add requirements analyst power
catface996 Jan 18, 2026
c20af7e
Add legacy-app-modernization-analyzer power
Jan 22, 2026
373d076
feat: Enhanced pathway scoring framework and cost visualization
Jan 23, 2026
bc0c27f
Merge pull request #5 from davidcslau/main
JoeShi Jan 23, 2026
97c4e7d
feat: Update legacy-app-modernization-analyzer - AD/SSO blocker, deci…
davelau-amzn Feb 11, 2026
70a0d62
feat: Add COBOL/Mainframe to Java Spring Boot modernization pathway w…
Mar 11, 2026
34b5df2
Merge pull request #6 from davidcslau/main
JoeShi Mar 11, 2026
ebcfda8
Merge branch 'kirodotdev:main' into main
catface996 Mar 16, 2026
6312348
sync(aidlc): align with aidlc-workflows v0.1.8
May 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,13 @@ Documentation is available at https://kiro.dev/docs/powers/

---

### spec-kit
**Spec-Driven Development** - Complete SDD methodology power with 10 workflows: Steering, Specify, Clarify, Plan, Tasks, Implement, Analyze, Checklist, Sync, and Discover - transforming specifications into executable code.

**MCP Servers:** None (Knowledge Base Power)

---

### strands
**Build an agent with Strands SDK** - Build AI agents with Strands SDK using Bedrock, Anthropic, OpenAI, Gemini, or Llama models.

Expand Down
41 changes: 41 additions & 0 deletions agentcore-browser-mcp-server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/
env/
build/
dist/
*.egg-info/

# Playwright
.playwright/

# Screenshots
screenshots/
*.png
*.jpg

# Logs
*.log

# IDE
.vscode/
.idea/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Test outputs
.pytest_cache/
.coverage
htmlcov/
test_*.html
test_*.json
Loading
Loading