Set up and manage a Supered environment directly from Claude. This repo is both a plugin and a marketplace — installing it connects the Supered MCP and gives Claude a set of skills for onboarding and building out a Supered workspace.
- Connects the Supered MCP (
https://app.supered.io/mcp, OAuth2) so Claude can read and write your Supered environment. Tools are feature-flagged per team. - Guides environment setup — collections, content, guides, page triggers, process boards, sync-engine rules/rulesets, and action plans — with Supered best practices baked in.
/plugin marketplace add getsupered/supered-plugin
/plugin install supered@supered
/reload-plugins
On first use, Claude opens the Supered OAuth flow in your browser. Approve access, then confirm
with the whoami tool. Tokens are handled by Claude Code — you never paste them into chat.
Manual MCP connection (other clients, or without the plugin):
claude mcp add --transport http Supered https://app.supered.io/mcp
| Skill | Purpose |
|---|---|
supered:setup-supered |
Orchestrator / entry point. Detects state and routes to the others. |
supered:connect-supered-mcp |
Connect & verify the Supered MCP (OAuth). |
supered:connect-integrations |
Connect the CRM (HubSpot/Salesforce) and other MCPs. |
supered:build-content-and-guides |
Collections, cards, folders, guides, page triggers. |
supered:build-rules-and-boards |
Sync-engine rules/rulesets and process boards (needs CRM). |
supered:build-action-plans |
Phases, sections, tasks, roles, assignments, templates. |
Start with: /supered:setup-supered
supered-plugin/
├── .claude-plugin/
│ ├── plugin.json # plugin manifest
│ └── marketplace.json # marketplace catalog (this repo hosts one plugin)
├── .mcp.json # Supered MCP server (http + OAuth)
├── skills/
│ ├── setup-supered/SKILL.md
│ ├── connect-supered-mcp/SKILL.md
│ ├── connect-integrations/SKILL.md
│ ├── build-content-and-guides/SKILL.md
│ ├── build-rules-and-boards/SKILL.md
│ └── build-action-plans/SKILL.md
└── README.md
Test without installing from a marketplace:
claude --plugin-dir ./supered-plugin
Then run /reload-plugins after edits, and validate before publishing:
claude plugin validate ./supered-plugin
- Bump
versionin.claude-plugin/plugin.jsonon each release so installed users update only on real releases (omit it and every commit becomes a new version via the git SHA). - Enable auto-update on the marketplace so improvements to the skills propagate to users.
- To list publicly, submit via Anthropic's community-marketplace form (requires a Team/Enterprise org with directory-management access).
Because this repo is public (required for a marketplace), the Supered app can treat these skill files as the canonical best-practice content: a GenServer fetches them from the public repo on init and every X minutes (with a last-known-good fallback), so the in-app Supered Assistant and external Claude share one set of instructions and never drift. Edit the guidance here once.