superpowers-mcp
Advanced tools
+1
-1
@@ -5,3 +5,3 @@ { | ||
| "description": "Superpowers skills library (TDD, debugging, collaboration workflows) as an MCP server for VSCode and Antigravity", | ||
| "version": "5.1.1", | ||
| "version": "5.1.2", | ||
| "publisher": "superpowers", | ||
@@ -8,0 +8,0 @@ "license": "MIT", |
+7
-2
@@ -5,3 +5,3 @@ # Superpowers MCP Toolpack Usage Guide | ||
| [](https://github.com/Poseidoncode/superpowers-mcp) | ||
| [](https://github.com/Poseidoncode/superpowers-mcp) | ||
| [](LICENSE) | ||
@@ -131,3 +131,8 @@ | ||
| ### v5.1.1 (Latest) | ||
| ### v5.1.2 (Latest) | ||
| - **Security Hardening**: Removed the last remaining `innerHTML` usage in `skills/brainstorming/scripts/helper.js`, replacing it with safe DOM creation methods β now zero `innerHTML` in the entire codebase. | ||
| - **Dependency Security**: Upgraded `hono` from `4.12.23` to `4.12.26` to patch 5 advisories including CORS origin reflection, Lambda body-limit bypass, and Set-Cookie header merging. | ||
| - **Clean Slate**: All 37 Dependabot advisories and npm audit warnings now fully resolved β zero outstanding vulnerabilities. | ||
| ### v5.1.1 | ||
| - **Security Audit & Hardening**: Conducted a full-scale security audit and updated `.gitignore` rules to prevent potential secret leaks. | ||
@@ -134,0 +139,0 @@ - **Vulnerability Patches**: Patched XSS vulnerability in brainstorming Visual Companion (`helper.js`) by replacing unsafe `innerHTML` usage with secure DOM APIs. Upgraded `path-to-regexp` to `8.4.2` to resolve a high-severity ReDoS vulnerability. |
@@ -64,3 +64,8 @@ (function() { | ||
| } else { | ||
| indicator.innerHTML = '<span class="selected-text">' + selected.length + ' selected</span> β return to terminal to continue'; | ||
| const countText = document.createElement('span'); | ||
| countText.className = 'selected-text'; | ||
| countText.textContent = selected.length + ' selected'; | ||
| indicator.textContent = ''; | ||
| indicator.appendChild(countText); | ||
| indicator.append(' β return to terminal to continue'); | ||
| } | ||
@@ -67,0 +72,0 @@ }, 0); |
648514
0.11%1981
0.25%159
3.25%