├── .claude └── settings.local.json ├── LICENSE ├── README.md └── .claude-plugin └── marketplace.json /.claude/settings.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "permissions": { 3 | "allow": [ 4 | "Bash(python3:*)", 5 | "mcp__plugin_episodic-memory_episodic-memory__search", 6 | "Bash(git add:*)", 7 | "Bash(git commit:*)", 8 | "Bash(git push)" 9 | ], 10 | "deny": [], 11 | "ask": [] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Jesse Vincent 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Superpowers Marketplace 2 | 3 | Curated Claude Code plugins for skills, workflows, and productivity tools. 4 | 5 | ## Installation 6 | 7 | Add this marketplace to Claude Code: 8 | 9 | ```bash 10 | /plugin marketplace add obra/superpowers-marketplace 11 | ``` 12 | 13 | ## Available Plugins 14 | 15 | ### Superpowers (Core) 16 | 17 | **Description:** Core skills library with TDD, debugging, collaboration patterns, and proven techniques 18 | 19 | **Categories:** Testing, Debugging, Collaboration, Meta 20 | 21 | **Install:** 22 | ```bash 23 | /plugin install superpowers@superpowers-marketplace 24 | ``` 25 | 26 | **What you get:** 27 | - 20+ battle-tested skills 28 | - `/brainstorm`, `/write-plan`, `/execute-plan` commands 29 | - Skills-search tool for discovery 30 | - SessionStart context injection 31 | 32 | **Repository:** https://github.com/obra/superpowers 33 | 34 | --- 35 | 36 | ### Elements of Style 37 | 38 | **Description:** Writing guidance based on William Strunk Jr.'s The Elements of Style (1918) 39 | 40 | **Categories:** Writing, Documentation, Reference 41 | 42 | **Install:** 43 | ```bash 44 | /plugin install elements-of-style@superpowers-marketplace 45 | ``` 46 | 47 | **What you get:** 48 | - `writing-clearly-and-concisely` skill 49 | - Complete 1918 reference text (~12k tokens) 50 | - All 18 rules for clear, concise writing 51 | - Grammar, punctuation, and composition guidance 52 | 53 | **Repository:** https://github.com/obra/the-elements-of-style 54 | 55 | --- 56 | 57 | ### Superpowers: Developing for Claude Code 58 | 59 | **Description:** Skills and resources for developing Claude Code plugins, skills, MCP servers, and extensions 60 | 61 | **Categories:** Development, Documentation, Claude Code, Plugin Development 62 | 63 | **Install:** 64 | ```bash 65 | /plugin install superpowers-developing-for-claude-code@superpowers-marketplace 66 | ``` 67 | 68 | **What you get:** 69 | - `working-with-claude-code` skill with 42+ official documentation files 70 | - `developing-claude-code-plugins` skill for streamlined development workflows 71 | - Self-update mechanism for documentation 72 | - Complete reference for plugin development, skills, MCP servers, and extensions 73 | 74 | **Repository:** https://github.com/obra/superpowers-developing-for-claude-code 75 | 76 | --- 77 | 78 | ## Marketplace Structure 79 | 80 | ``` 81 | superpowers-marketplace/ 82 | ├── .claude-plugin/ 83 | │ └── marketplace.json # Plugin catalog 84 | └── README.md # This file 85 | ``` 86 | 87 | ## Support 88 | 89 | - **Issues**: https://github.com/obra/superpowers-marketplace/issues 90 | - **Core Plugin**: https://github.com/obra/superpowers 91 | 92 | ## License 93 | 94 | Marketplace metadata: MIT License 95 | 96 | Individual plugins: See respective plugin licenses 97 | -------------------------------------------------------------------------------- /.claude-plugin/marketplace.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "superpowers-marketplace", 3 | "owner": { 4 | "name": "Jesse Vincent", 5 | "email": "jesse@fsck.com" 6 | }, 7 | "metadata": { 8 | "description": "Skills, workflows, and productivity tools", 9 | "version": "1.0.9" 10 | }, 11 | "plugins": [ 12 | { 13 | "name": "superpowers", 14 | "source": { 15 | "source": "url", 16 | "url": "https://github.com/obra/superpowers.git" 17 | }, 18 | "description": "Core skills library: TDD, debugging, collaboration patterns, and proven techniques", 19 | "version": "4.0.0", 20 | "strict": true 21 | }, 22 | { 23 | "name": "superpowers-chrome", 24 | "source": { 25 | "source": "url", 26 | "url": "https://github.com/obra/superpowers-chrome.git" 27 | }, 28 | "description": "BETA: VERY LIGHTLY TESTED - Direct Chrome DevTools Protocol access via 'browsing' skill. Skill mode (17 CLI commands) + MCP mode (single use_browser tool). Zero dependencies, auto-starts Chrome.", 29 | "version": "1.6.1", 30 | "strict": true 31 | }, 32 | { 33 | "name": "elements-of-style", 34 | "source": { 35 | "source": "url", 36 | "url": "https://github.com/obra/the-elements-of-style.git" 37 | }, 38 | "description": "Writing guidance based on William Strunk Jr.'s The Elements of Style (1918) - foundational rules for clear, concise, grammatically correct writing", 39 | "version": "1.0.0", 40 | "strict": true 41 | }, 42 | { 43 | "name": "episodic-memory", 44 | "source": { 45 | "source": "url", 46 | "url": "https://github.com/obra/episodic-memory.git" 47 | }, 48 | "description": "Semantic search for Claude Code conversations. Remember past discussions, decisions, and patterns across sessions. Gives you memory that persists between sessions.", 49 | "version": "1.0.15", 50 | "strict": true 51 | }, 52 | { 53 | "name": "superpowers-lab", 54 | "source": { 55 | "source": "url", 56 | "url": "https://github.com/obra/superpowers-lab.git" 57 | }, 58 | "description": "Experimental skills for Superpowers: Control interactive CLI tools (vim, menuconfig, REPLs, git rebase -i) through tmux automation", 59 | "version": "0.1.0", 60 | "strict": true 61 | }, 62 | { 63 | "name": "superpowers-developing-for-claude-code", 64 | "source": { 65 | "source": "url", 66 | "url": "https://github.com/obra/superpowers-developing-for-claude-code.git" 67 | }, 68 | "description": "Skills and resources for developing Claude Code plugins, skills, MCP servers, and extensions. Includes comprehensive official documentation and self-update mechanism.", 69 | "version": "0.3.1", 70 | "strict": true 71 | }, 72 | { 73 | "name": "double-shot-latte", 74 | "source": { 75 | "source": "url", 76 | "url": "https://github.com/obra/double-shot-latte.git" 77 | }, 78 | "description": "Stop 'Would you like me to continue?' interruptions. Automatically evaluates whether Claude should continue working using Claude-judged decision making.", 79 | "version": "1.1.5", 80 | "strict": true 81 | } 82 | ] 83 | } 84 | --------------------------------------------------------------------------------