.claude/skills/export-project/SKILL.md
Bundle a page and all its dependent components into a portable archive for sharing. Use when user says "export project", "bundle page", "package page", "export bundle", or wants to share a page with its dependencies.
npx skillsauth add TETRA2000/figma-web-studio export-projectInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
src/pages/{route}/index.tsxCreate a manifest listing all included assets:
{
"version": "1.0",
"exportedAt": "2026-03-15T00:00:00Z",
"page": {
"route": "{route}",
"filePath": "src/pages/{route}/index.tsx"
},
"components": [
{
"name": "ComponentName",
"directory": "src/components/ComponentName/",
"files": ["ComponentName.tsx", "ComponentName.stories.tsx"]
}
],
"tokens": ["src/index.css"]
}
Bundle all files into a .tar.gz archive:
tar -czf exports/{route}.tar.gz manifest.json src/pages/{route}/ src/components/{deps}/ src/index.css
Output to exports/{route}.tar.gz
List all included files with sizes.
Report:
exports/{route}.tar.gzdevelopment
Fetch current Figma design state and apply changes back to React code. Use when user says "sync from Figma", "pull Figma changes", "update from Figma", "apply Figma changes", or wants to bring Figma edits into code.
tools
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
testing
Import an exported project archive, placing assets into the correct directories. Use when user says "import project", "import bundle", "import package", "unpack project", or has a .tar.gz archive to import.
tools
Push React components and pages to Figma using the Figma MCP server. Use when user says "export to Figma", "push to Figma", "create Figma design", "send to Figma", or wants to create a Figma design from code.