Turn any screenshot or design reference into a precise, copy-paste-ready developer prompt — with exact hex colors, Tailwind classes, animation specs, and component structure. Ready for Lovable, Bolt, Cursor, Replit, or any AI coding agent.
FAQ
replica is a Claude Code plugin with 1 hand-picked skill for development work, indexed on Flowy. Install it with the command on its page. It includes Replica. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add Surya17155/Replica --agent claude-code
Repo: Surya17155/Replica
Turn any screenshot or design reference into a precise, copy-paste-ready developer prompt — with exact hex colors, Tailwind classes, animation specs, and component structure. Ready for Lovable, Bolt, Cursor, Replit, or any AI coding agent.
flowchart LR
A["🎯 Screenshot / Design<br/>(Pinterest, Dribbble, Figma)"]
B["🧠 Replica Skill<br/>Analyzes & Classifies"]
C["📝 Developer Prompt<br/>Hex Codes · Tailwind · Animations"]
D["⚡ AI Coding Agent<br/>Lovable · Bolt · Cursor · Replit"]
E["🎨 Live Website<br/>Pixel-perfect Replica"]
A --> B --> C --> D --> E
Replica is an AI skill file that acts as a bridge between visual design and code. Upload a screenshot (or describe a design), and Replica's structured knowledge base generates a production-grade developer prompt with:
flowchart TB
subgraph Input["📥 Input"]
S["Screenshot / URL / Description"]
end
subgraph Process["🧠 Replica Processing Pipeline"]
direction TB
A["1. Scope Confirmation<br/>Hero section or full landing page?"]
B["2. Aesthetic Classification<br/>glassmorphism · dark-portfolio · fintech-saas<br/>nft-web3 · creative-studio · modern-agency"]
C["3. Motion & Effects Analysis<br/>Stagger · Parallax · Magnetic · Scroll-Reveal<br/>Marquee · Typewriter · 3D Tilt · etc."]
D["4. Asset Inventory<br/>Images · Videos · Icons · SVGs"]
E["5. Prompt Assembly<br/>Using Reference Templates"]
F["6. Quality Check<br/>15-point verification"]
end
subgraph Output["📤 Output"]
O["Production-Ready Developer Prompt"]
end
S --> A --> B --> C --> D --> E --> F --> O
Clone the repository:
git clone https://github.com/Surya17155/Replica.git
Or download the ZIP.
| AI Agent | How to Install |
|---|---|
| Claude Code | Place the SKILL.md file in your .claude/skills/ directory (or upload the ZIP to your agent) |
| Cursor | Add to .cursor/skills/ directory |
| Lovable / Bolt / Replit | Copy SKILL.md content into your project instructions |
User: "I found this hero section on Dribbble [uploads screenshot]"
Replica: "I can see this is a glassmorphism dark-portfolio hero with:
- Floating pill navbar (glass effect, blur-20)
- Stagger entrance animation (fade-up, 0.7s each, 0.15s delay between)
- Gradient text headline (#FFFFFF → #B600A8)
- Multi-layer CTA button with inset shadow
Here's your exact prompt..."
Replica/
│
├── SKILL.md # Main skill file — the entry point
├── README.md # This file
├── LICENSE # MIT License
│
├── DESIGNER/ # Design routing & catalog
│ ├── skill-catalog.json # Skill lookup catalog
│ ├── skill-decision-engine.md # Algorithmic skill selection
│ ├── skill-fingerprints.json # Skill identification
│ └── skill-router.md # Routes design requests to skills
│
├── DIRECTOR/ # Workflow & quality control
│ ├── asset-inventory.md # Asset requirement analysis
│ ├── decision-trees.md # Aesthetic & motion classification
│ ├── delegation.md # Task delegation patterns
│ ├── headroom-integration.md # Token budget management
│ ├── lazy-loading-rule.md # Performance optimization
│ ├── motion-effects-decision.md # Motion effect selection
│ ├── quality-rules.md # 15-point quality checklist
│ ├── rules-engine.md # 7-phase workflow engine
│ ├── scroll-effects-decision.md # Scroll animation decisions
│ ├── scroll-video-frames-workflow.md # Video frame workflow
│ └── skill-decision-engine.md # Skill routing decisions
│
├── REFERENCE/ # Knowledge base (46+ files)
│ ├── README.md # Reference hub
│ ├── quick-aesthetic-guide.md # Aesthetic identification
│ ├── motionsites-ai.md # Prompt fidelity benchmark
│ ├── image-analysis-checklist-hero.md
│ ├── image-analysis-checklist-landing-page.md
│ ├── prompt-output-template-hero.md
│ ├── prompt-output-template-landing-page.md
│ │
│ ├── aesthetic-cards/ # 6 aesthetic style guides
│ │ ├── glassmorphism.md
│ │ ├── dark-portfolio.md
│ │ ├── fintechsaas.md
│ │ ├── nftweb3.md
│ │ ├── creative-studio.md
│ │ └── modern-agency.md
│ │
│ ├── component-patterns/ # 6 component architectures
│ │ ├── navbar-pill-floating-glass.md
│ │ ├── navbar-full-width-transparent-dark.md
│ │ ├── hero-video-background-with-rounded-card.md
│ │ ├── hero-full-screen-dark-with-3d-portrait-magnet.md
│ │ ├── card-sticky-stacking-card-portfolioprojects.md
│ │ └── marquee-logo-ticker.md
│ │
│ ├── css-presets/ # 7 ready-to-use CSS blocks
│ │ ├── glassmorphism-dark-theme.md
│ │ ├── gradient-text.md
│ │ ├── multi-layer-button-shadow-premium-cta.md
│ │ ├── neon-glow-effect-nft-web3-dark-cyber.md
│ │ ├── noise-grain-texture-overlay.md
│ │ ├── section-transition-rounded-top-pull-up.md
│ │ └── scroll-driven-fade-out-bottom-of-hero.md
│ │
│ ├── motion-effects/ # 13 animation specs
│ │ ├── stagger-fade-in-page-load-entrance.md
│ │ ├── scroll-triggered-reveal-whileinview.md
│ │ ├── parallax-scroll-multi-speed-layers.md
│ │ ├── sticky-card-stacking-scale-down-on-scroll.md
│ │ ├── magnetic-mouse-follow-magnet-component.md
│ │ ├── float-animation-continuous-up-down.md
│ │ ├── scroll-driven-marquee-infinite-logo-scroll.md
│ │ ├── hover-scale-glow-effect-micro-interaction.md
│ │ ├── counter-animation-number-scroll-up.md
│ │ ├── typewriter-effect-character-reveal.md
│ │ ├── svg-path-draw-line-animation.md
│ │ ├── cursor-trail-mouse-particles.md
│ │ └── 3d-tilt-on-hover-perspective-transform.md
│ │
│ └── pinterest-doc/ # 8 verified Pinterest example prompts
│ ├── pinterest-template-01.md through 08.md
│ └── professional-prompt-nova-hero.md
│
├── PROMPTS/ # 270+ verified prompt library
│ ├── _index.md
│ ├── github-catalog/
│ │ └── catalog.json # Searchable catalog of all prompts
│ └── github-interfaces/ # 170+ ready-to-use prompt JSONs
│ ├── 0.json, 1.json, ... # (indexed by ID)
│ ├── acreage-farming-hero.json
│ ├── ai-automation.json
│ ├── cybersecurity-hero.json
│ ├── finflow.json
│ ├── nexacore-hero.json
│ ├── stellar-ai-hero.json
│ └── ... (170+ total)
│
├── scripts/ # Utility scripts
│ ├── asset_prompt_generator.py # Generate asset prompts
│ ├── headroom_compress.py # Context compression
│ ├── ontology_matcher.py # RAG ontology matching
│ ├── ontology.md # Ontology reference
│ ├── rag_sync.py # RAG sync utility
│ └── safe_sync.py # Safe sync utility
│
└── skills-list/ # 27 supplementary design skills
├── skills-lock.json # Skill dependency lockfile
└── agents/skills/
├── frontend-design/ # General frontend design
├── impeccable/ # UI critique & polish (27 reference files)
├── gsap-core/ # GSAP animation core
├── gsap-react/ # GSAP + React
├── gsap-scrolltrigger/ # Scroll-driven animations
├── gsap-timeline/ # Timeline sequencing
├── gsap-plugins/ # GSAP plugin ecosystem
├── gsap-frameworks/ # Framework integrations
├── gsap-performance/ # Performance optimization
├── gsap-utils/ # GSAP utilities
├── threejs-fundamentals/ # 3D WebGL fundamentals
├── threejs-geometry/ # 3D geometry
├── threejs-materials/ # Materials & shaders
├── threejs-lighting/ # Lighting systems
├── threejs-loaders/ # Asset loaders
├── threejs-animation/ # 3D animation
├── threejs-interaction/ # User interaction
├── threejs-shaders/ # Custom shaders
├── threejs-postprocessing/ # Post-processing effects
├── threejs-textures/ # Texture management
├── ui-ux-pro-max/ # Premium UI/UX skill
├── minimalist-ui/ # Minimalist design
├── industrial-brutalist-ui/ # Industrial aesthetic
├── high-end-visual-design/ # Luxury design
├── design-taste-frontend/ # Design taste
├── emil-design-eng/ # UI polish philosophy
└── ... (27 total skills)
Every prompt generated by Replica must pass 15 quality rules:
| # | Rule | Example |
|---|---|---|
| 1 | Exact classes, not adjectives | bg-gradient-to-r from-[#18011F] via-[#B600A8] not "a nice gradient" |
| 2 | Hex codes, not color names | bg-[#0C0C0C] not "dark background" |
| 3 | clamp() for fluid typography | fontSize: clamp(3rem, 12vw, 160px) |
| 4 | 4-part animation tuple | initial={{opacity:0,y:30}} animate={{opacity:1,y:0}} transition={{duration:0.7,delay:0.35}} |
| 5 | Complete glassmorphism CSS | Full backdrop-filter + mask-composite block |
| 6 | Multi-layer button shadows | Combined drop + inset shadows |
| 7 | 5 video attributes | autoPlay muted loop playsInline + object-cover |
| 8 | Explicit section transitions | rounded-t-[60px] -mt-14 z-10 |
| 9 | Marquee direction + speed | animation: marquee-left 30s linear infinite |
| 10 | Card grid column splits | Explicit w-[40%] / w-[60%] ratios |
| 11 | PascalCase + file paths | src/components/HeroSection.tsx |
| 12 | Mobile-first Tailwind | text-2xl sm:text-3xl md:text-5xl lg:text-7xl |
| 13 | Decorative element positioning | absolute top-X left-X w-[80px] + animation |
| 14 | Custom font @font-face | Full URL, format, font-family declaration |
| 15 | Explicit scroll offsets | useScroll({ target, offset: ['start 0.8', 'end 0.2'] }) |
Replica can identify and generate prompts for these aesthetics:
mindmap
root((Replica<br/>Aesthetics))
Glassmorphism
Frosted glass
Blur backgrounds
Light border glow
Dark Portfolio
Minimal black
White typography
Accent highlights
Fintech/SaaS
Clean layouts
Data visualization
Trust signals
NFT / Web3
Neon gradients
Cyber elements
3D objects
Creative Studio
Bold typography
Asymmetric grids
Vibrant colors
Modern Agency
Editorial style
Large media
Bento grids
| Effect | Tech | Trigger |
|---|---|---|
| Stagger Fade-In | Framer Motion | Page load |
| Scroll Reveal | Framer Motion + whileInView | Scroll |
| Parallax | Framer Motion useTransform | Scroll |
| Sticky Card Stacking | CSS sticky + scale | Scroll |
| Magnetic Hover | onMouseMove transform | Mouse |
| Float Animation | CSS @keyframes | Continuous |
| Marquee Scroll | CSS @keyframes + duplicate | Continuous |
| Hover Scale + Glow | CSS transition + box-shadow | Hover |
| Counter Animation | Framer Motion useSpring | Scroll |
| Typewriter | Character mapping | Page load |
| SVG Path Draw | stroke-dasharray | Scroll |
| Cursor Trail | Particles | Mouse |
| 3D Tilt | onMouseMove perspective | Hover |
Contributions are welcome! If you have:
Please open an issue or submit a pull request.
MIT © Surya Kant
DESIGNER/
skill-catalog.json
skill-decision-engine.md
skill-fingerprints.json
skill-router.md
DIRECTOR/
asset-inventory.md
decision-trees.md
delegation.md
headroom-integration.md
lazy-loading-rule.md
motion-effects-decision.md
quality-rules.md
rules-engine.md
scroll-effects-decision.md
scroll-video-frames-workflow.md
skill-decision-engine.md
LICENSE
PROMPTS/
_index.md
github-catalog/
catalog.json
github-interfaces/
_coverage-aggregate.json
_coverage-report.md
_missing.json
_pilot.json
_todo.json
0.json
1.json
10.json
11.json
12.json
13.json
14.json
15.json
16.json
18.json
19.json
2.json
20.json
21.json
22.json
24.json
25.json
26.json
27.json
28.json
29.json
3.json
30.json
31.json
33.json
36.json
acreage-farming-hero.json
aerocore.json
aethera-hero.json
aetheris-voyage-hero.json
agency-services.json
ai-automation.json
ai-designer-agency.json
ai-image-generator-ui.json
ai-workflow.json
akor-security-landing.json
animated-cards.json
apex-program-accordion.json
apex-saas-hero.json
arcade-card.json
arcade-video-slide.json
arceage-contact-us.json
arceage-services.json
arceage-stats.json
arceage-testimonial.json
audio-showcase.json
auramail.json
aurora-onboard.json
automation-machines-hero.json
axion-about.json
beauty-categories.json
beauty-products.json
benefits-features.json
bento-grid-stats.json
bio-digital.json
bionova-hero.json
bl.json
book-hero.json
book-pattern.json
botanical-shadow-about.json
brain-hero.json
brand-list.json
brand-page.json
brand-pattern.json
brand-section.json
browser-cards.json
bytes-cli-patterns.json
callout-section.json
card-with-background-pattern.json
career-page.json
case-study-pattern.json
celestia-hero.json
center-card.json
cinematic-brand.json
clubx-hero.json
community-cta.json
conversion.json
creative-studio.json
crypto-wealth-hero.json
cursor-follow.json
cyberpunk-reveal.json
cybersecurity-hero-v2.json
cybersecurity-hero.json
daisy-sweet.json
daisy-wild.json
dashboard.json
datacore-booking-hero.json
deck-investor.json
design-rocket-email-hero.json
designpro-hero.json
digital-epoch-hero.json
digital-reality-hero.json
digitwist-hero.json
dot-hero.json
dreamcore-landing.json
duolingo-styleguide-hero.json
ecommerce-website-landing.json
ecovolta-hero.json
ecovolta-v2-hero.json
editorial-collection-cta.json
email-landing-page.json
ember-dsgn-hero.json
equilibrium.json
evergreen-finance.json
evr-ventures-hero.json
faq-cta.json
features.json
feedback-slider.json
financialfocus.json
finflow.json
finlytic-hero.json
flowmate-carousal.json
flowmate-landing.json
focus-ai-landing.json
future-state.json
futuristic-cinematic.json
futuristic-tech.json
gateway-portal.json
glassmorphic-feature-tabs.json
global-cta-footer.json
glow-features.json
grow-ai-hero.json
growth-marketing-saas.json
guardnet-benefits.json
guardnet-demo.json
guardnet-landing.json
halo-benefits.json
halo-usd-landing.json
halo-use-case.json
haul-footer.json
impressive-hero.json
innovation-landing.json
intelligentx.json
interactive-discovery.json
interior-features.json
keep-ahead-features.json
kova-features.json
kova-testimonial.json
kresna-footer.json
kresna-hero.json
launchex-submissions.json
lumina-footer.json
luxe-reach-hero.json
magic-mind.json
medi-assist.json
medpro-appo-hero.json
medpro-card.json
medpro-hero.json
medpro-team.json
medpro-testimonials.json
minimalist-cta-footer.json
modern-portfolio.json
motion-reveal.json
neural-link-features.json
nex-max-upgrade.json
nexora-features.json
nexora-hero.json
nexpro-hero.json
nexus-ai-hero.json
nexus-hero.json
nickel-hero.json
notar-hero.json
notar-pricing.json
nova-ai-features.json
nova-cta-footer.json
nova-landing.json
nova-protect-hero.json
nova-showcase.json
novadesk-signup.json
once-upon-ai.json
orbit-features.json
orbit-hero.json
orbit-web3-hero.json
parallax-hero.json
pipedream-landing.json
pixel-pattern-app-hero.json
placeholder-interactions.json
portal-hero.json
power-ai-hero.json
ppc-landing.json
premier-cta-footer.json
prestige-world-footer.json
prioritize-hero.json
product-hunt-clone.json
propwise-hero.json
prosthetics-hero.json
quantum-ai-hero.json
radial-diagram.json
railroad-ai-hero.json
reach-digital-hero.json
reflective-luxury-landing.json
rejouice-clone.json
relume-clone.json
reputation-management.json
results-driven.json
revenue-boost-exp.json
rivr-hero.json
saas-pricing.json
saas-scale-hero.json
sahi-wallet.json
sassit-portfolio.json
scale-up-profits.json
scholarly-landing.json
scroll-marquee.json
seo-landing.json
serene-skin-hero.json
shadcn-themes.json
shamoni-hero.json
ship-dark-hero.json
ship-fast-hero.json
slam-dunk-hero.json
smart-insights.json
solace-demo.json
spark-landing.json
speed-test-landing.json
stackblitz-clone.json
stark-minimal-footer.json
static-job-board.json
stock-ai-hero.json
strategy-consulting-hero.json
stratflow-landing.json
stratosphere-altitude.json
studio-visual-hero.json
supreme-card.json
syncup-hero.json
tailgrids-clone.json
taskly-hero.json
technical-specifications.json
testimonial-variants.json
the-grid-hero.json
the-union-hero.json
thrive-marketing-hero.json
tome-clone.json
trade-champion-hero.json
travel-social-app.json
trillio-hero.json
trusted-partners.json
tutorly-ai-hero.json
ui-labs-hero.json
ultimate-team-hero.json
vaultshield.json
veloce-cards.json
velorah-hero.json
velorix-iic.json
venture-capital-landing.json
venturist-hero.json
visionary-products.json
vivid-hero.json
voice-ai-hero.json
web-design-portfolio.json
web-development-agency.json
web3-hero.json
wicked-hero.json
wix-clone.json
zenith-hero.json
zoom-clone.json
README.md
REFERENCE/
aesthetic-cards/
_index.md
4-01 -- glassmorphism.md
4-02 -- dark-portfolio.md
4-03 -- fintechsaas.md
4-04 -- nftweb3.md
4-05 -- creative-studio.md
4-06 -- modern-agency.md
component-patterns/
_index.md
3-01 -- navbar-pill-floating-glass.md
3-02 -- navbar-full-width-transparent-dark.md
3-03 -- hero-video-background-with-rounded-card.md
3-04 -- hero-full-screen-dark-with-3d-portrait-magnet.md
3-05 -- card-sticky-stacking-card-portfolioprojects.md
3-06 -- marquee-logo-ticker.md
css-presets/
_index.md
2-01 -- glassmorphism-dark-theme.md
2-02 -- gradient-text.md
2-03 -- multi-layer-button-shadow-premium-cta.md
2-04 -- neon-glow-effect-nft-web3-dark-cyber.md
2-05 -- noise-grain-texture-overlay.md
2-06 -- section-transition-rounded-top-pull-up.md
2-07 -- scroll-driven-fade-out-bottom-of-hero.md
image-analysis-checklist-hero.md
image-analysis-checklist-landing-page.md
motion-effects/
_index.md
1-01 -- stagger-fade-in-page-load-entrance.md
1-02 -- scroll-triggered-reveal-whileinview.md
1-03 -- parallax-scroll-multi-speed-layers.md
1-04 -- sticky-card-stacking-scale-down-on-scroll.md
1-05 -- magnetic-mouse-follow-magnet-component.md
1-06 -- float-animation-continuous-up-down.md
1-07 -- scroll-driven-marquee-infinite-logo-scroll.md
1-08 -- hover-scale-glow-effect-micro-interaction.md
1-09 -- counter-animation-number-scroll-up.md
1-10 -- typewriter-effect-character-reveal.md
1-11 -- svg-path-draw-line-animation.md
1-12 -- cursor-trail-mouse-particles.md
1-13 -- 3d-tilt-on-hover-perspective-transform.md
motionsites-ai.md
pinterest-doc/
_index.md
pinterest-template-01.md
pinterest-template-02.md
pinterest-template-03.md
pinterest-template-04.md
pinterest-template-05.md
pinterest-template-06.md
pinterest-template-07.md
pinterest-template-08.md
professional-prompt-nova-hero.md
prompt-output-template-hero.md
prompt-output-template-landing-page.md
quick-aesthetic-guide.md
README.md
scripts/
asset_prompt_generator.py
headroom_compress.py
ontology_matcher.py
ontology.md
rag_sync.py
safe_sync.py
SKILL.md
skills-list/
agents/
skills/
_skills-index.md
brainstorming/
GUIDE.md
scripts/
frame-template.html
helper.js
server.cjs
start-server.sh
stop-server.sh
spec-document-reviewer-prompt.md
visual-companion.md
emil-design-eng/
GUIDE.md
frontend-design/
GUIDE.md
gpt-taste/
GUIDE.md
gsap-core/
GUIDE.md
gsap-frameworks/
GUIDE.md
gsap-performance/
GUIDE.md
gsap-plugins/
GUIDE.md
gsap-react/
GUIDE.md
gsap-scrolltrigger/
GUIDE.md
gsap-timeline/
GUIDE.md
gsap-utils/
GUIDE.md
high-end-visual-design/
GUIDE.md
industrial-brutalist-ui/
GUIDE.md
minimalist-ui/
GUIDE.md
redesign-existing-projects/
GUIDE.md
stitch-design-taste/
DESIGN.md
GUIDE.md
threejs-animation/
... 32 more© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic