SuperKiro


NameSuperKiro JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummarySuperKiro Framework Management Hub - AI-enhanced development framework for Kiro-compatible workflows
upload_time2025-09-09 18:16:23
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords claude ai automation framework mcp agents development code-generation assistant
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

# πŸš€ SuperKiro Framework

### **Transform Claude Code into a Structured Development Platform**

<p align="center">
  <img src="https://img.shields.io/badge/version-0.0.4-blue" alt="Version">
  <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
  <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome">
</p>

<p align="center">
  <a href="https://superclaude.netlify.app/">
    <img src="https://img.shields.io/badge/🌐_Visit_Website-blue" alt="Website">
  </a>
  <a href="https://pypi.org/project/SuperClaude/">
    <img src="https://img.shields.io/pypi/v/SuperClaude.svg?" alt="PyPI">
  </a>
  <a href="https://www.npmjs.com/package/@bifrost_inc/superclaude">
    <img src="https://img.shields.io/npm/v/@bifrost_inc/superclaude.svg" alt="npm">
  </a>
</p>

<p align="center">
  <a href="README.md">
    <img src="https://img.shields.io/badge/πŸ‡ΊπŸ‡Έ_English-blue" alt="English">
  </a>
  <a href="README-zh.md">
    <img src="https://img.shields.io/badge/πŸ‡¨πŸ‡³_δΈ­ζ–‡-red" alt="δΈ­ζ–‡">
  </a>
  <a href="README-ja.md">
    <img src="https://img.shields.io/badge/πŸ‡―πŸ‡΅_ζ—₯本θͺž-green" alt="ζ—₯本θͺž">
  </a>
</p>

<p align="center">
  <a href="#-quick-installation">Quick Start</a> β€’
  <a href="#-support-the-project">Support</a> β€’
  <a href="#-whats-new-in-v4">Features</a> β€’
  <a href="#-documentation">Docs</a> β€’
  <a href="#-contributing">Contributing</a>
</p>

</div>

---

<div align="center">

## πŸ“Š **Framework Statistics**

| **Commands** | **Agents** | **Modes** | **MCP Servers** |
|:------------:|:----------:|:---------:|:---------------:|
| **22** | **14** | **6** | **6** |
| Slash Commands | Specialized AI | Behavioral | Integrations |

</div>

---

<div align="center">

## 🎯 **Overview**

SuperKiro is a **meta-programming configuration framework** that transforms Claude Code into a structured development platform through behavioral instruction injection and component orchestration. It provides systematic workflow automation with powerful tools and intelligent agents.

## ⚑ **Quick Installation**

### **Choose Your Installation Method**

| Method | Command | Best For |
|:------:|---------|----------|
| **🐍 pipx** | `pipx install SuperKiro && pipx upgrade SuperKiro && SuperKiro install` | **βœ… Recommended** - Linux/macOS |
| **πŸ“¦ pip** | `pip install SuperKiro && pip upgrade SuperKiro && SuperKiro install` | Traditional Python environments |
| **🌐 npm** | `npm install -g @bifrost_inc/superclaude && superclaude install` | Cross-platform, Node.js users |

</div>

### Custom Install Directory

- You can specify where framework files are installed using `--install-dir`.
- Examples:
  - `SuperKiro install --install-dir ~/mykiro`
  - `SuperKiro update --install-dir ~/mykiro`
  - `SuperKiro uninstall --install-dir ~/mykiro`
- Default install directory: `~/.kiro`
- Tip: Use the same `--install-dir` for install/update/uninstall to manage one location.

### Directory Layout

- Framework root (controlled by `--install-dir`, default `~/.kiro`):
  - Core: `<install-dir>/*`
  - Commands: `<install-dir>/commands/sc/*` (customize via `--commands-dir`)
  - Agents: `<install-dir>/agents/*` (customize via `--agents-dir`)
  - Modes: `<install-dir>/*` (mode files)
  - Logs: `<install-dir>/logs/*`
- Project steering (per project, installed via `kiro-init`):
  - `.kiro/steering/super_kiro.md`
  - `.kiro/steering/sk_*.md` (agent personas for `#<agent>` triggers)
  - `.kiro/super_kiro/commands/sk_*.md` (slash-command steering)
- Notes:
  - `--install-dir` does not affect project steering. Use `SuperKiro kiro-init <project_dir>` (or `SuperKiro install <project_dir>`) to place steering files.
  - Agent triggers use `.kiro/steering/sk_*.md` in your project, not `<install-dir>/agents/*`.

### Per-Component Directories (Advanced)

- Override where Commands/Agents live under the install root.
- Install examples:
  - `SuperKiro install --commands-dir commands/custom-sc`
  - `SuperKiro install --agents-dir personas`
  - `SuperKiro install --install-dir ~/mykiro --commands-dir commands/custom-sc --agents-dir personas`
- Uninstall examples (use the same overrides to remove):
  - `SuperKiro uninstall --components commands --install-dir ~/mykiro --commands-dir commands/custom-sc`
  - `SuperKiro uninstall --components agents --install-dir ~/mykiro --agents-dir personas`
- Notes:
  - Relative paths resolve under `--install-dir`.
  - Absolute paths are respected as-is (ensure permissions/safety).

### Project vs Global

- Project steering (per project):
  - Install/update into a project folder using `SuperKiro kiro-init <target_dir>` (or `SuperKiro install <target_dir>`).
  - Files live under `<target_dir>/.kiro/steering` and `<target_dir>/.kiro/super_kiro/commands` and are read by Kiro in that project.
  - Not affected by `--install-dir`.
- Global framework (user-level tools):
  - Install/update/uninstall with `SuperKiro install|update|uninstall` and optional `--install-dir` (default `~/.kiro`).
  - Components include core, commands, agents, modes, MCP docs.

### Uninstall Behavior

- In a project (when `./.kiro` exists):
  - Just run `SuperKiro uninstall` to prune SuperKiro-managed steering files.
  - You no longer need `--prune-steering --steering-target .`.
- Global uninstall (user-level framework files):
  - Specific components: `SuperKiro uninstall --components core commands agents` (plus `--install-dir` if customized).
  - Complete removal: `SuperKiro uninstall --complete [--install-dir <dir>]`.

<details>
<summary><b>⚠️ IMPORTANT: Upgrading from SuperClaude V3</b></summary>

**If you have SuperClaude V3 installed, you SHOULD uninstall it before installing SuperKiro:**

```bash
# Uninstall V3 first
Remove all related files and directories :
*.md *.json and commands/

# Then install
pipx install SuperKiro && pipx upgrade SuperKiro && SuperKiro install
```

**βœ… What gets preserved during upgrade:**
- βœ“ Your custom slash commands (outside `commands/sc/`)
- βœ“ Your custom content in `CLAUDE.md` 
- βœ“ Claude Code's `.claude.json`, `.credentials.json`, `settings.json` and `settings.local.json`
- βœ“ Any custom agents and files you've added

**⚠️ Note:** Other SuperClaude-related `.json` files from V3 may cause conflicts and should be removed.

</details>

<details>
<summary><b>πŸ’‘ Troubleshooting PEP 668 Errors</b></summary>

```bash
# Option 1: Use pipx (Recommended)
pipx install SuperKiro

# Option 2: User installation
pip install --user SuperKiro

# Option 3: Force installation (use with caution)
pip install --break-system-packages SuperKiro
```
</details>

---

<div align="center">

## πŸ’– **Support the Project**

> Hey, let's be real - maintaining SuperClaude takes time and resources.
> 
> *The Claude Max subscription alone runs $100/month for testing, and that's before counting the hours spent on documentation, bug fixes, and feature development.*
> *If you're finding value in SuperClaude for your daily work, consider supporting the project.*
> *Even a few dollars helps cover the basics and keeps development active.*
> 
> Every contributor matters, whether through code, feedback, or support. Thanks for being part of this community! πŸ™

<table>
<tr>
<td align="center" width="33%">
  
### β˜• **Ko-fi**
[![Ko-fi](https://img.shields.io/badge/Support_on-Ko--fi-ff5e5b?logo=ko-fi)](https://ko-fi.com/superclaude)

*One-time contributions*

</td>
<td align="center" width="33%">

### 🎯 **Patreon**
[![Patreon](https://img.shields.io/badge/Become_a-Patron-f96854?logo=patreon)](https://patreon.com/superclaude)

*Monthly support*

</td>
<td align="center" width="33%">

### πŸ’œ **GitHub**
[![GitHub Sponsors](https://img.shields.io/badge/GitHub-Sponsor-30363D?logo=github-sponsors)](https://github.com/sponsors/SuperClaude-Org)

*Flexible tiers*

</td>
</tr>
</table>

### **Your Support Enables:**

| Item | Cost/Impact |
|------|-------------|
| πŸ”¬ **Claude Max Testing** | $100/month for validation & testing |
| ⚑ **Feature Development** | New capabilities & improvements |
| πŸ“š **Documentation** | Comprehensive guides & examples |
| 🀝 **Community Support** | Quick issue responses & help |
| πŸ”§ **MCP Integration** | Testing new server connections |
| 🌐 **Infrastructure** | Hosting & deployment costs |

> **Note:** No pressure though - the framework stays open source regardless. Just knowing people use and appreciate it is motivating. Contributing code, documentation, or spreading the word helps too! πŸ™

</div>

---

<div align="center">

## πŸŽ‰ **What's New in V4**

> *Version 4 brings significant improvements based on community feedback and real-world usage patterns.*

<table>
<tr>
<td width="50%">

### πŸ€– **Smarter Agent System**
**14 specialized agents** with domain expertise:
- Security engineer catches real vulnerabilities
- Frontend architect understands UI patterns
- Automatic coordination based on context
- Domain-specific expertise on demand

</td>
<td width="50%">

### πŸ“ **Improved Namespace**
**`/sc:` prefix** for all commands:
- No conflicts with custom commands
- 22 commands covering full lifecycle
- From brainstorming to deployment
- Clean, organized command structure

</td>
</tr>
<tr>
<td width="50%">

### πŸ”§ **MCP Server Integration**
**6 powerful servers** working together:
- **Context7** β†’ Up-to-date documentation
- **Sequential** β†’ Complex analysis
- **Magic** β†’ UI component generation
- **Playwright** β†’ Browser testing
- **Morphllm** β†’ Bulk transformations
- **Serena** β†’ Session persistence

</td>
<td width="50%">

### 🎯 **Behavioral Modes**
**6 adaptive modes** for different contexts:
- **Brainstorming** β†’ Asks right questions
- **Business Panel** β†’ Multi-expert strategic analysis
- **Orchestration** β†’ Efficient tool coordination
- **Token-Efficiency** β†’ 30-50% context savings
- **Task Management** β†’ Systematic organization
- **Introspection** β†’ Meta-cognitive analysis

</td>
</tr>
<tr>
<td width="50%">

### ⚑ **Optimized Performance**
**Smaller framework, bigger projects:**
- Reduced framework footprint
- More context for your code
- Longer conversations possible
- Complex operations enabled

</td>
<td width="50%">

### πŸ“š **Documentation Overhaul**
**Complete rewrite** for developers:
- Real examples & use cases
- Common pitfalls documented
- Practical workflows included
- Better navigation structure

</td>
</tr>
</table>

</div>

---

<div align="center">

## πŸ“š **Documentation**

### **Complete Guide to SuperKiro**

<table>
<tr>
<th align="center">πŸš€ Getting Started</th>
<th align="center">πŸ“– User Guides</th>
<th align="center">πŸ› οΈ Developer Resources</th>
<th align="center">πŸ“‹ Reference</th>
</tr>
<tr>
<td valign="top">

- πŸ“ [**Quick Start Guide**](Docs/Getting-Started/quick-start.md)  
  *Get up and running fast*

- πŸ’Ύ [**Installation Guide**](Docs/Getting-Started/installation.md)  
  *Detailed setup instructions*

</td>
<td valign="top">

- 🎯 [**Commands Reference**](Docs/User-Guide/commands.md)  
  *All 22 slash commands*

- πŸ€– [**Agents Guide**](Docs/User-Guide/agents.md)  
  *14 specialized agents*

- 🎨 [**Behavioral Modes**](Docs/User-Guide/modes.md)  
  *5 adaptive modes*

- 🚩 [**Flags Guide**](Docs/User-Guide/flags.md)  
  *Control behaviors*

- πŸ”§ [**MCP Servers**](Docs/User-Guide/mcp-servers.md)  
  *6 server integrations*

- πŸ’Ό [**Session Management**](Docs/User-Guide/session-management.md)  
  *Save & restore state*

</td>
<td valign="top">

- πŸ—οΈ [**Technical Architecture**](Docs/Developer-Guide/technical-architecture.md)  
  *System design details*

- πŸ’» [**Contributing Code**](Docs/Developer-Guide/contributing-code.md)  
  *Development workflow*

- πŸ§ͺ [**Testing & Debugging**](Docs/Developer-Guide/testing-debugging.md)  
  *Quality assurance*

</td>
<td valign="top">

- ✨ [**Best Practices**](Docs/Reference/quick-start-practices.md)  
  *Pro tips & patterns*

- πŸ““ [**Examples Cookbook**](Docs/Reference/examples-cookbook.md)  
  *Real-world recipes*

- πŸ” [**Troubleshooting**](Docs/Reference/troubleshooting.md)  
  *Common issues & fixes*

</td>
</tr>
</table>

</div>

---

<div align="center">

## 🀝 **Contributing**

### **Join the SuperKiro Community**

We welcome contributions of all kinds! Here's how you can help:

| Priority | Area | Description |
|:--------:|------|-------------|
| πŸ“ **High** | Documentation | Improve guides, add examples, fix typos |
| πŸ”§ **High** | MCP Integration | Add server configs, test integrations |
| 🎯 **Medium** | Workflows | Create command patterns & recipes |
| πŸ§ͺ **Medium** | Testing | Add tests, validate features |
| 🌐 **Low** | i18n | Translate docs to other languages |

<p align="center">
  <a href="CONTRIBUTING.md">
    <img src="https://img.shields.io/badge/πŸ“–_Read-Contributing_Guide-blue" alt="Contributing Guide">
  </a>
  <a href="https://github.com/SuperClaude-Org/SuperClaude_Framework/graphs/contributors">
    <img src="https://img.shields.io/badge/πŸ‘₯_View-All_Contributors-green" alt="Contributors">
  </a>
</p>

</div>

---

<div align="center">

## βš–οΈ **License**

This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.

<p align="center">
  <img src="https://img.shields.io/badge/License-MIT-yellow.svg?" alt="MIT License">
</p>

</div>

---

<div align="center">

## ⭐ **Star History**

<a href="https://www.star-history.com/#SuperClaude-Org/SuperClaude_Framework&Timeline">
 <picture>
   <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=SuperClaude-Org/SuperClaude_Framework&type=Timeline&theme=dark" />
   <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=SuperClaude-Org/SuperClaude_Framework&type=Timeline" />
   <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=SuperClaude-Org/SuperClaude_Framework&type=Timeline" />
 </picture>
</a>


</div>

---

<div align="center">

### **πŸš€ Built with passion by the SuperKiro community**

<p align="center">
  <sub>Made with ❀️ for developers who push boundaries</sub>
</p>

<p align="center">
  <a href="#-superkiro-framework">Back to Top ↑</a>
</p>

</div>

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "SuperKiro",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "claude, ai, automation, framework, mcp, agents, development, code-generation, assistant",
    "author": null,
    "author_email": "NomenAK <anton.knoery@gmail.com>, Mithun Gowda B <mithungowda.b7411@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7f/53/3f0f33745d3d9b79a22b329ec8a7ea7c04c6754d2d445713833a181d97d9/superkiro-0.1.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n# \ud83d\ude80 SuperKiro Framework\n\n### **Transform Claude Code into a Structured Development Platform**\n\n<p align=\"center\">\n  <img src=\"https://img.shields.io/badge/version-0.0.4-blue\" alt=\"Version\">\n  <img src=\"https://img.shields.io/badge/License-MIT-yellow.svg\" alt=\"License\">\n  <img src=\"https://img.shields.io/badge/PRs-welcome-brightgreen.svg\" alt=\"PRs Welcome\">\n</p>\n\n<p align=\"center\">\n  <a href=\"https://superclaude.netlify.app/\">\n    <img src=\"https://img.shields.io/badge/\ud83c\udf10_Visit_Website-blue\" alt=\"Website\">\n  </a>\n  <a href=\"https://pypi.org/project/SuperClaude/\">\n    <img src=\"https://img.shields.io/pypi/v/SuperClaude.svg?\" alt=\"PyPI\">\n  </a>\n  <a href=\"https://www.npmjs.com/package/@bifrost_inc/superclaude\">\n    <img src=\"https://img.shields.io/npm/v/@bifrost_inc/superclaude.svg\" alt=\"npm\">\n  </a>\n</p>\n\n<p align=\"center\">\n  <a href=\"README.md\">\n    <img src=\"https://img.shields.io/badge/\ud83c\uddfa\ud83c\uddf8_English-blue\" alt=\"English\">\n  </a>\n  <a href=\"README-zh.md\">\n    <img src=\"https://img.shields.io/badge/\ud83c\udde8\ud83c\uddf3_\u4e2d\u6587-red\" alt=\"\u4e2d\u6587\">\n  </a>\n  <a href=\"README-ja.md\">\n    <img src=\"https://img.shields.io/badge/\ud83c\uddef\ud83c\uddf5_\u65e5\u672c\u8a9e-green\" alt=\"\u65e5\u672c\u8a9e\">\n  </a>\n</p>\n\n<p align=\"center\">\n  <a href=\"#-quick-installation\">Quick Start</a> \u2022\n  <a href=\"#-support-the-project\">Support</a> \u2022\n  <a href=\"#-whats-new-in-v4\">Features</a> \u2022\n  <a href=\"#-documentation\">Docs</a> \u2022\n  <a href=\"#-contributing\">Contributing</a>\n</p>\n\n</div>\n\n---\n\n<div align=\"center\">\n\n## \ud83d\udcca **Framework Statistics**\n\n| **Commands** | **Agents** | **Modes** | **MCP Servers** |\n|:------------:|:----------:|:---------:|:---------------:|\n| **22** | **14** | **6** | **6** |\n| Slash Commands | Specialized AI | Behavioral | Integrations |\n\n</div>\n\n---\n\n<div align=\"center\">\n\n## \ud83c\udfaf **Overview**\n\nSuperKiro is a **meta-programming configuration framework** that transforms Claude Code into a structured development platform through behavioral instruction injection and component orchestration. It provides systematic workflow automation with powerful tools and intelligent agents.\n\n## \u26a1 **Quick Installation**\n\n### **Choose Your Installation Method**\n\n| Method | Command | Best For |\n|:------:|---------|----------|\n| **\ud83d\udc0d pipx** | `pipx install SuperKiro && pipx upgrade SuperKiro && SuperKiro install` | **\u2705 Recommended** - Linux/macOS |\n| **\ud83d\udce6 pip** | `pip install SuperKiro && pip upgrade SuperKiro && SuperKiro install` | Traditional Python environments |\n| **\ud83c\udf10 npm** | `npm install -g @bifrost_inc/superclaude && superclaude install` | Cross-platform, Node.js users |\n\n</div>\n\n### Custom Install Directory\n\n- You can specify where framework files are installed using `--install-dir`.\n- Examples:\n  - `SuperKiro install --install-dir ~/mykiro`\n  - `SuperKiro update --install-dir ~/mykiro`\n  - `SuperKiro uninstall --install-dir ~/mykiro`\n- Default install directory: `~/.kiro`\n- Tip: Use the same `--install-dir` for install/update/uninstall to manage one location.\n\n### Directory Layout\n\n- Framework root (controlled by `--install-dir`, default `~/.kiro`):\n  - Core: `<install-dir>/*`\n  - Commands: `<install-dir>/commands/sc/*` (customize via `--commands-dir`)\n  - Agents: `<install-dir>/agents/*` (customize via `--agents-dir`)\n  - Modes: `<install-dir>/*` (mode files)\n  - Logs: `<install-dir>/logs/*`\n- Project steering (per project, installed via `kiro-init`):\n  - `.kiro/steering/super_kiro.md`\n  - `.kiro/steering/sk_*.md` (agent personas for `#<agent>` triggers)\n  - `.kiro/super_kiro/commands/sk_*.md` (slash-command steering)\n- Notes:\n  - `--install-dir` does not affect project steering. Use `SuperKiro kiro-init <project_dir>` (or `SuperKiro install <project_dir>`) to place steering files.\n  - Agent triggers use `.kiro/steering/sk_*.md` in your project, not `<install-dir>/agents/*`.\n\n### Per-Component Directories (Advanced)\n\n- Override where Commands/Agents live under the install root.\n- Install examples:\n  - `SuperKiro install --commands-dir commands/custom-sc`\n  - `SuperKiro install --agents-dir personas`\n  - `SuperKiro install --install-dir ~/mykiro --commands-dir commands/custom-sc --agents-dir personas`\n- Uninstall examples (use the same overrides to remove):\n  - `SuperKiro uninstall --components commands --install-dir ~/mykiro --commands-dir commands/custom-sc`\n  - `SuperKiro uninstall --components agents --install-dir ~/mykiro --agents-dir personas`\n- Notes:\n  - Relative paths resolve under `--install-dir`.\n  - Absolute paths are respected as-is (ensure permissions/safety).\n\n### Project vs Global\n\n- Project steering (per project):\n  - Install/update into a project folder using `SuperKiro kiro-init <target_dir>` (or `SuperKiro install <target_dir>`).\n  - Files live under `<target_dir>/.kiro/steering` and `<target_dir>/.kiro/super_kiro/commands` and are read by Kiro in that project.\n  - Not affected by `--install-dir`.\n- Global framework (user-level tools):\n  - Install/update/uninstall with `SuperKiro install|update|uninstall` and optional `--install-dir` (default `~/.kiro`).\n  - Components include core, commands, agents, modes, MCP docs.\n\n### Uninstall Behavior\n\n- In a project (when `./.kiro` exists):\n  - Just run `SuperKiro uninstall` to prune SuperKiro-managed steering files.\n  - You no longer need `--prune-steering --steering-target .`.\n- Global uninstall (user-level framework files):\n  - Specific components: `SuperKiro uninstall --components core commands agents` (plus `--install-dir` if customized).\n  - Complete removal: `SuperKiro uninstall --complete [--install-dir <dir>]`.\n\n<details>\n<summary><b>\u26a0\ufe0f IMPORTANT: Upgrading from SuperClaude V3</b></summary>\n\n**If you have SuperClaude V3 installed, you SHOULD uninstall it before installing SuperKiro:**\n\n```bash\n# Uninstall V3 first\nRemove all related files and directories :\n*.md *.json and commands/\n\n# Then install\npipx install SuperKiro && pipx upgrade SuperKiro && SuperKiro install\n```\n\n**\u2705 What gets preserved during upgrade:**\n- \u2713 Your custom slash commands (outside `commands/sc/`)\n- \u2713 Your custom content in `CLAUDE.md` \n- \u2713 Claude Code's `.claude.json`, `.credentials.json`, `settings.json` and `settings.local.json`\n- \u2713 Any custom agents and files you've added\n\n**\u26a0\ufe0f Note:** Other SuperClaude-related `.json` files from V3 may cause conflicts and should be removed.\n\n</details>\n\n<details>\n<summary><b>\ud83d\udca1 Troubleshooting PEP 668 Errors</b></summary>\n\n```bash\n# Option 1: Use pipx (Recommended)\npipx install SuperKiro\n\n# Option 2: User installation\npip install --user SuperKiro\n\n# Option 3: Force installation (use with caution)\npip install --break-system-packages SuperKiro\n```\n</details>\n\n---\n\n<div align=\"center\">\n\n## \ud83d\udc96 **Support the Project**\n\n> Hey, let's be real - maintaining SuperClaude takes time and resources.\n> \n> *The Claude Max subscription alone runs $100/month for testing, and that's before counting the hours spent on documentation, bug fixes, and feature development.*\n> *If you're finding value in SuperClaude for your daily work, consider supporting the project.*\n> *Even a few dollars helps cover the basics and keeps development active.*\n> \n> Every contributor matters, whether through code, feedback, or support. Thanks for being part of this community! \ud83d\ude4f\n\n<table>\n<tr>\n<td align=\"center\" width=\"33%\">\n  \n### \u2615 **Ko-fi**\n[![Ko-fi](https://img.shields.io/badge/Support_on-Ko--fi-ff5e5b?logo=ko-fi)](https://ko-fi.com/superclaude)\n\n*One-time contributions*\n\n</td>\n<td align=\"center\" width=\"33%\">\n\n### \ud83c\udfaf **Patreon**\n[![Patreon](https://img.shields.io/badge/Become_a-Patron-f96854?logo=patreon)](https://patreon.com/superclaude)\n\n*Monthly support*\n\n</td>\n<td align=\"center\" width=\"33%\">\n\n### \ud83d\udc9c **GitHub**\n[![GitHub Sponsors](https://img.shields.io/badge/GitHub-Sponsor-30363D?logo=github-sponsors)](https://github.com/sponsors/SuperClaude-Org)\n\n*Flexible tiers*\n\n</td>\n</tr>\n</table>\n\n### **Your Support Enables:**\n\n| Item | Cost/Impact |\n|------|-------------|\n| \ud83d\udd2c **Claude Max Testing** | $100/month for validation & testing |\n| \u26a1 **Feature Development** | New capabilities & improvements |\n| \ud83d\udcda **Documentation** | Comprehensive guides & examples |\n| \ud83e\udd1d **Community Support** | Quick issue responses & help |\n| \ud83d\udd27 **MCP Integration** | Testing new server connections |\n| \ud83c\udf10 **Infrastructure** | Hosting & deployment costs |\n\n> **Note:** No pressure though - the framework stays open source regardless. Just knowing people use and appreciate it is motivating. Contributing code, documentation, or spreading the word helps too! \ud83d\ude4f\n\n</div>\n\n---\n\n<div align=\"center\">\n\n## \ud83c\udf89 **What's New in V4**\n\n> *Version 4 brings significant improvements based on community feedback and real-world usage patterns.*\n\n<table>\n<tr>\n<td width=\"50%\">\n\n### \ud83e\udd16 **Smarter Agent System**\n**14 specialized agents** with domain expertise:\n- Security engineer catches real vulnerabilities\n- Frontend architect understands UI patterns\n- Automatic coordination based on context\n- Domain-specific expertise on demand\n\n</td>\n<td width=\"50%\">\n\n### \ud83d\udcdd **Improved Namespace**\n**`/sc:` prefix** for all commands:\n- No conflicts with custom commands\n- 22 commands covering full lifecycle\n- From brainstorming to deployment\n- Clean, organized command structure\n\n</td>\n</tr>\n<tr>\n<td width=\"50%\">\n\n### \ud83d\udd27 **MCP Server Integration**\n**6 powerful servers** working together:\n- **Context7** \u2192 Up-to-date documentation\n- **Sequential** \u2192 Complex analysis\n- **Magic** \u2192 UI component generation\n- **Playwright** \u2192 Browser testing\n- **Morphllm** \u2192 Bulk transformations\n- **Serena** \u2192 Session persistence\n\n</td>\n<td width=\"50%\">\n\n### \ud83c\udfaf **Behavioral Modes**\n**6 adaptive modes** for different contexts:\n- **Brainstorming** \u2192 Asks right questions\n- **Business Panel** \u2192 Multi-expert strategic analysis\n- **Orchestration** \u2192 Efficient tool coordination\n- **Token-Efficiency** \u2192 30-50% context savings\n- **Task Management** \u2192 Systematic organization\n- **Introspection** \u2192 Meta-cognitive analysis\n\n</td>\n</tr>\n<tr>\n<td width=\"50%\">\n\n### \u26a1 **Optimized Performance**\n**Smaller framework, bigger projects:**\n- Reduced framework footprint\n- More context for your code\n- Longer conversations possible\n- Complex operations enabled\n\n</td>\n<td width=\"50%\">\n\n### \ud83d\udcda **Documentation Overhaul**\n**Complete rewrite** for developers:\n- Real examples & use cases\n- Common pitfalls documented\n- Practical workflows included\n- Better navigation structure\n\n</td>\n</tr>\n</table>\n\n</div>\n\n---\n\n<div align=\"center\">\n\n## \ud83d\udcda **Documentation**\n\n### **Complete Guide to SuperKiro**\n\n<table>\n<tr>\n<th align=\"center\">\ud83d\ude80 Getting Started</th>\n<th align=\"center\">\ud83d\udcd6 User Guides</th>\n<th align=\"center\">\ud83d\udee0\ufe0f Developer Resources</th>\n<th align=\"center\">\ud83d\udccb Reference</th>\n</tr>\n<tr>\n<td valign=\"top\">\n\n- \ud83d\udcdd [**Quick Start Guide**](Docs/Getting-Started/quick-start.md)  \n  *Get up and running fast*\n\n- \ud83d\udcbe [**Installation Guide**](Docs/Getting-Started/installation.md)  \n  *Detailed setup instructions*\n\n</td>\n<td valign=\"top\">\n\n- \ud83c\udfaf [**Commands Reference**](Docs/User-Guide/commands.md)  \n  *All 22 slash commands*\n\n- \ud83e\udd16 [**Agents Guide**](Docs/User-Guide/agents.md)  \n  *14 specialized agents*\n\n- \ud83c\udfa8 [**Behavioral Modes**](Docs/User-Guide/modes.md)  \n  *5 adaptive modes*\n\n- \ud83d\udea9 [**Flags Guide**](Docs/User-Guide/flags.md)  \n  *Control behaviors*\n\n- \ud83d\udd27 [**MCP Servers**](Docs/User-Guide/mcp-servers.md)  \n  *6 server integrations*\n\n- \ud83d\udcbc [**Session Management**](Docs/User-Guide/session-management.md)  \n  *Save & restore state*\n\n</td>\n<td valign=\"top\">\n\n- \ud83c\udfd7\ufe0f [**Technical Architecture**](Docs/Developer-Guide/technical-architecture.md)  \n  *System design details*\n\n- \ud83d\udcbb [**Contributing Code**](Docs/Developer-Guide/contributing-code.md)  \n  *Development workflow*\n\n- \ud83e\uddea [**Testing & Debugging**](Docs/Developer-Guide/testing-debugging.md)  \n  *Quality assurance*\n\n</td>\n<td valign=\"top\">\n\n- \u2728 [**Best Practices**](Docs/Reference/quick-start-practices.md)  \n  *Pro tips & patterns*\n\n- \ud83d\udcd3 [**Examples Cookbook**](Docs/Reference/examples-cookbook.md)  \n  *Real-world recipes*\n\n- \ud83d\udd0d [**Troubleshooting**](Docs/Reference/troubleshooting.md)  \n  *Common issues & fixes*\n\n</td>\n</tr>\n</table>\n\n</div>\n\n---\n\n<div align=\"center\">\n\n## \ud83e\udd1d **Contributing**\n\n### **Join the SuperKiro Community**\n\nWe welcome contributions of all kinds! Here's how you can help:\n\n| Priority | Area | Description |\n|:--------:|------|-------------|\n| \ud83d\udcdd **High** | Documentation | Improve guides, add examples, fix typos |\n| \ud83d\udd27 **High** | MCP Integration | Add server configs, test integrations |\n| \ud83c\udfaf **Medium** | Workflows | Create command patterns & recipes |\n| \ud83e\uddea **Medium** | Testing | Add tests, validate features |\n| \ud83c\udf10 **Low** | i18n | Translate docs to other languages |\n\n<p align=\"center\">\n  <a href=\"CONTRIBUTING.md\">\n    <img src=\"https://img.shields.io/badge/\ud83d\udcd6_Read-Contributing_Guide-blue\" alt=\"Contributing Guide\">\n  </a>\n  <a href=\"https://github.com/SuperClaude-Org/SuperClaude_Framework/graphs/contributors\">\n    <img src=\"https://img.shields.io/badge/\ud83d\udc65_View-All_Contributors-green\" alt=\"Contributors\">\n  </a>\n</p>\n\n</div>\n\n---\n\n<div align=\"center\">\n\n## \u2696\ufe0f **License**\n\nThis project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details.\n\n<p align=\"center\">\n  <img src=\"https://img.shields.io/badge/License-MIT-yellow.svg?\" alt=\"MIT License\">\n</p>\n\n</div>\n\n---\n\n<div align=\"center\">\n\n## \u2b50 **Star History**\n\n<a href=\"https://www.star-history.com/#SuperClaude-Org/SuperClaude_Framework&Timeline\">\n <picture>\n   <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=SuperClaude-Org/SuperClaude_Framework&type=Timeline&theme=dark\" />\n   <source media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=SuperClaude-Org/SuperClaude_Framework&type=Timeline\" />\n   <img alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=SuperClaude-Org/SuperClaude_Framework&type=Timeline\" />\n </picture>\n</a>\n\n\n</div>\n\n---\n\n<div align=\"center\">\n\n### **\ud83d\ude80 Built with passion by the SuperKiro community**\n\n<p align=\"center\">\n  <sub>Made with \u2764\ufe0f for developers who push boundaries</sub>\n</p>\n\n<p align=\"center\">\n  <a href=\"#-superkiro-framework\">Back to Top \u2191</a>\n</p>\n\n</div>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "SuperKiro Framework Management Hub - AI-enhanced development framework for Kiro-compatible workflows",
    "version": "0.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/SuperClaude-Org/SuperKiro_Framework/issues",
        "GitHub": "https://github.com/SuperClaude-Org/SuperKiro_Framework",
        "Homepage": "https://github.com/SuperClaude-Org/SuperKiro_Framework",
        "Mithun Gowda B": "https://github.com/mithun50",
        "NomenAK": "https://github.com/NomenAK"
    },
    "split_keywords": [
        "claude",
        " ai",
        " automation",
        " framework",
        " mcp",
        " agents",
        " development",
        " code-generation",
        " assistant"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2909eed5fab71f768432b8b3e2b2b959ca447302111e138040564cc53a0e6bb9",
                "md5": "74f2179813368e23082dbb8d35653594",
                "sha256": "a382940631da72fd96e8f118efd5965e10546d49d005906c9bb7b02796a35bc8"
            },
            "downloads": -1,
            "filename": "superkiro-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "74f2179813368e23082dbb8d35653594",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 155464,
            "upload_time": "2025-09-09T18:16:21",
            "upload_time_iso_8601": "2025-09-09T18:16:21.563750Z",
            "url": "https://files.pythonhosted.org/packages/29/09/eed5fab71f768432b8b3e2b2b959ca447302111e138040564cc53a0e6bb9/superkiro-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f533f0f33745d3d9b79a22b329ec8a7ea7c04c6754d2d445713833a181d97d9",
                "md5": "7a10950de3dbc4abf6c292e0263f5d3a",
                "sha256": "059691192de33d161e4f484d722eac81f18529cb436c16f40313b8450f3ceaa4"
            },
            "downloads": -1,
            "filename": "superkiro-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7a10950de3dbc4abf6c292e0263f5d3a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 337923,
            "upload_time": "2025-09-09T18:16:23",
            "upload_time_iso_8601": "2025-09-09T18:16:23.145961Z",
            "url": "https://files.pythonhosted.org/packages/7f/53/3f0f33745d3d9b79a22b329ec8a7ea7c04c6754d2d445713833a181d97d9/superkiro-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-09 18:16:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SuperClaude-Org",
    "github_project": "SuperKiro_Framework",
    "github_not_found": true,
    "lcname": "superkiro"
}
        
Elapsed time: 0.55309s