Claude Code plugin collection — .claude/ documentation authoring + Figma-to-code component creation.
| Plugin | What it does | Status |
|---|---|---|
docs-creator |
Generates and maintains .claude/ documentation for any project — architecture, design system, component conventions, data flow, API contracts |
stable v0.15.0 |
component-creator |
Creates UI components from Figma designs with visual verification, Code Connect integration, and component registry management | beta v0.0.6 |
{
"extraKnownMarketplaces": {
"docs-creator-toolkit": {
"source": {
"source": "github",
"repo": "max200pl/docs-creator-toolkit"
}
}
}
}{
"enabledPlugins": {
"docs-creator@docs-creator-toolkit": true,
"component-creator@docs-creator-toolkit": true
}
}Plugins load automatically on next session start. Skills are namespaced:
/docs-creator:init-project
/docs-creator:analyze-frontend
/docs-creator:create-frontend-docs
/docs-creator:menu ← shows all available commands
/component-creator:create-component <figma-url>
# 1. Initialize .claude/ in your project
/docs-creator:init-project
# 2. Analyze frontend (if applicable)
/docs-creator:analyze-frontend
# 3. Generate human-readable docs
/docs-creator:create-frontend-docs
# 4. See all available commands
/docs-creator:menu
Requires docs-creator analysis to have run first (reference-component-creation-template.md must exist).
# Create a component from Figma design
/component-creator:create-component https://www.figma.com/design/<fileKey>?node-id=<nodeId>
Add to your project's .claude/settings.json instead of ~/.claude/settings.json to limit the plugins to a specific project:
{
"extraKnownMarketplaces": {
"docs-creator-toolkit": {
"source": {
"source": "github",
"repo": "max200pl/docs-creator-toolkit"
}
}
},
"enabledPlugins": {
"docs-creator@docs-creator-toolkit": true,
"component-creator@docs-creator-toolkit": true
}
}.claude-plugin/
marketplace.json ← plugin registry
plugins/
docs-creator/ ← .claude/ documentation toolkit
component-creator/ ← Figma-to-code component scaffolding
Development repo: max200pl/claude-docs-creator This repo is auto-synced from the monorepo via GitHub Actions.