Implement Subframe designs with business logic into your codebase.
Works with
Fetches designs via MCP from Subframe by URL, page ID, or name, then syncs required components locally
Detects project state and guides you through either full Subframe integration or using designs as inspiration in existing non-Subframe projects
Handles component syncing, page creation in the correct directory structure, and preservation of existing business logic when updating designs
Provides patterns for adding
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondevelopExecute the skills CLI command in your project's root directory to begin installation:
Fetches develop from subframeapp/subframe and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate develop. Access via /develop in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
381
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
381
stars
Implement Subframe designs in the codebase. Fetch the design via MCP, sync components, and add business logic.
If you cannot find the get_page_info tool (or any Subframe MCP tools), the MCP server likely needs to be authenticated. Ask the user to authenticate the Subframe MCP server. If the user is using Claude Code, instruct them to run /mcp to view and authenticate their MCP servers, and then say "done" when they're finished.
Before starting, check for package.json and .subframe/ folder in the current directory:
| Condition | Action |
|---|---|
No package.json |
Run /subframe:setup first — there's no project to implement into yet. |
Has package.json AND has .subframe/ folder |
Proceed with the workflow below. |
Has package.json but NO .subframe/ folder |
Ask the user (see below). |
If the current directory has a package.json but no .subframe/ folder, ask the user which approach they prefer:
/subframe:setup first, then continue with the Workflow below.get_page_info with the URL, ID, or name.Use this workflow when the user chose to use the design as inspiration in an existing non-Subframe project.
get_page_info with the URL, ID, or name to get the design's layout and structure. Use other available Subframe MCP tools as needed to get additional context (e.g., get_component_info to understand a component's props, get_theme to check theme values).Button → the project's own button component)// By URL
get_page_info({ url: "https://app.subframe.com/PROJECT_ID/design/PAGE_ID/edit" })
// By ID (e.g., from /subframe:design)
get_page_info({ id: "PAGE_ID", projectId: "PROJECT_ID" })
// By name
get_page_info({ name: "Settings Page", projectId: "PROJECT_ID" })
// List all pages first if needed
list_pages({ projectId: "PROJECT_ID" })
Get the projectId from .subframe/sync.json. If .subframe/sync.json doesn't exist or doesn't contain a projectId, call list_projects to get the available projects. Each project includes a projectId, name, teamId, and teamName.
teamName to disambiguate. If the user already mentioned a specific team or project name, match it against the teamName and name fields — but still confirm before proceeding. Never silently pick a project when multiple exist.Sync components when they don't exist locally. You can sync specific components by name:
npx @subframe/cli@latest sync Button Alert TextField
Or sync all components:
npx @subframe/cli@latest sync --all
When to sync:
Never modify synced component files - they get overwritten. Create wrapper components if you need to add logic.
If you must modify a synced component file directly, add // @subframe/sync-disable to the top of the file:
// @subframe/sync-disable
import * as React from "react"
// ... rest of component
This prevents the file from being overwritten on future syncs.
Updating a sync-disabled component:
If the user wants to update a component that has sync-disable, the sync command will skip it. To get the latest version:
get_component_info to fetch the latest code from SubframeSubframe generates presentational code with placeholder data. You add:
Data fetching:
const { data, isLoading, error } = useQuery(...)
if (isLoading) return <Skeleton />
if (error) return <Alert variant="error">{error.message}</Alert>
return <PageComponent {...data} />
Form handling:
const handleSubmit = async (e: FormEvent) => {
e.preventDefault()
await submitForm(formData)
}
Event handlers:
<Button onClick={handleClick}>Submit</Button>
<Card actionSlot={<IconButton onClick={handleDelete} />} />
When a design changes:
When diffing the updated design against the existing code, if there are design changes beyond what the user asked you to design (e.g., layout tweaks, new elements, removed sections), call those out and ask whether to include them.
| Tool | Purpose | Key Parameters |
|---|---|---|
get_page_info |
Fetch page code | url, id, or name; projectId |
get_component_info |
Fetch component code | url, id, or name; projectId |
list_pages |
List all pages | projectId |
list_components |
List all components | projectId |
get_theme |
Get Tailwind config | projectId, cssType |
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
develop has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in develop — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: develop is focused, and the summary matches what you get after install.
We added develop from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
develop reduced setup friction for our internal harness; good balance of opinion and flexibility.
I recommend develop for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
I recommend develop for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
develop reduced setup friction for our internal harness; good balance of opinion and flexibility.
We added develop from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Solid pick for teams standardizing on skills: develop is focused, and the summary matches what you get after install.
showing 1-10 of 48