Figma plugin for consistent file naming and project page structures.
Copy Name
- Generate file names with client, product, version, and tags
- Live preview of the generated name
- Copy to clipboard with one click (Figma API doesn't allow direct file rename)
- Metadata stored for future sessions
- Shows if current file follows naming convention
Create Structure
- Pre-built templates: Web App, Mobile App, Design System, Marketing Website, Branding
- Each template includes guideline frames and a populated cover page
- Custom structures: one page per line,
---for dividers - Import JSON templates via the Config tab
npm install
npm run build- Figma desktop → Plugins → Development → Import plugin from manifest
- Select
manifest.json - Run from Plugins → Development
{
"name": "Template Name",
"pages": [
{ "name": "Cover", "description": "...", "bestPractices": ["..."] },
{ "name": "---", "isDivider": true },
{ "name": "Research", "description": "...", "bestPractices": ["..."] }
]
}| Command | Description |
|---|---|
npm run build |
Compile TypeScript |
npm run watch |
Auto-rebuild on changes |
npm run lint |
Run linter |
- Branch:
feature/<desc>,fix/<desc>, orchore/<desc> - PR title:
type: summary(e.g.,feat: add divider pages) - Run
npm run lint && npm run buildbefore submitting