Skip to main content

Documentation Index

Fetch the complete documentation index at: https://subframe-59800133-claude-pensive-edison-7rclv.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Agent skills are structured instructions that teach AI assistants how to use tools correctly. While the MCP server gives your AI the ability to access Subframe, skills give it the knowledge of how to use it well. Skills are an open standard ↗ and becoming widely adopted throughout the industry.

Installation

1

Install the Subframe plugin

claude plugin marketplace add https://github.com/SubframeApp/subframe && claude plugin install subframe@subframe
The Subframe plugin for Claude Code sets up the MCP server and agent skills in one install.
2

Enable auto-update (recommended)

Keep the Subframe plugin up to date automatically:
  1. Run /plugin to open the plugin manager
  2. Select the Marketplaces tab
  3. Choose the subframe marketplace
  4. Select Enable auto-update
3

Verify installation

Run /mcp to check that the Subframe MCP server is connected, then try asking Claude Code to use Subframe.
4

Create your first design

Follow the Working with AI agents guide to design and implement your first page.

Available skills

/subframe:design — Designs and edits anything in Subframe: pages, components, snippets, design documents, and the theme. Also handles deletion of those resources except theme. Gathers context from your codebase, kicks off background AI jobs in Subframe, and returns URLs where each design appears live as it generates. Use this for new UI, design system additions, written design docs, theme tweaks, and cleanup. /subframe:develop — Implements designs in code with business logic. Fetches the design, syncs components if needed, places the code in your codebase, and wires up data fetching, forms, event handlers, and loading/error states. /subframe:install — Installs Subframe into a codebase so you can implement designs locally. Detects the framework, runs the CLI, configures Tailwind and fonts, and syncs components. You don’t need to install to create designs. /subframe:bulk-import — Uploads many components from an existing codebase to Subframe in one CLI batch. This is purely a throughput option for when you want to migrate many components at once instead of one at a time. Available for select teams. For most import use cases, use /subframe:design which is generally available.

Next steps

See these skills in action in the Working with AI agents guide, which walks through the full design-to-code workflow.

Keep skills up to date

Claude Code

The Subframe plugin for Claude Code bundles the MCP server and skills together. To enable auto-updates:
  1. Run /plugin to open the plugin manager
  2. Select the Marketplaces tab
  3. Choose the subframe marketplace
  4. Select Enable auto-update

Manually update the plugin

Reload the plugin to pick up the latest version:
/reload-plugins
If that doesn’t work, reinstall the plugin:
claude plugin uninstall subframe@subframe && claude plugin install subframe@subframe

Cursor, Codex, and other clients

Check for available skill updates:
npx skills check
Update all skills to the latest versions:
npx skills update
Or re-run the original install command to get the latest version.

Enable for your team

If you use Claude Code, you can add Subframe to your project settings so team members are automatically prompted to install the plugin when they open the project. Add the following to .claude/settings.json in your repository root:
.claude/settings.json
{
  "enabledPlugins": {
    "subframe@subframe": true
  },
  "extraKnownMarketplaces": {
    "subframe": {
      "source": {
        "source": "github",
        "repo": "SubframeApp/subframe"
      }
    }
  }
}
Commit this file to your repository. When a team member opens the project in Claude Code, they’ll be prompted to install the Subframe marketplace and plugin.

FAQ

Skills depend on the MCP server being properly connected. Check these:
  1. Make sure the MCP server is running and connected
  2. Update to the latest version — see Keep skills up to date
Last modified on May 20, 2026