| name | anima-core-workflow-b |
| description | Clone websites to React/HTML code and customize Anima output with AI.
Use when converting live websites to code, customizing generated components,
or building design-system-aware code from URL screenshots.
Trigger: "anima website to code", "anima URL clone", "anima AI customization",
"website to react", "clone website to code".
|
| allowed-tools | Read, Write, Edit, Bash(npm:*), Grep |
| version | 1.4.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","design","figma","anima","website-cloning"] |
| compatibility | Designed for Claude Code |
Anima Core Workflow B — Website-to-Code & AI Customization
Overview
Secondary workflow: use Anima to clone live websites into React/HTML code and customize generated output with AI-powered code modification. Anima supports URL-to-code conversion alongside Figma-to-code.
Prerequisites
- Completed
anima-install-auth setup
- Understanding of Anima's code generation settings
Instructions
Step 1: Website-to-Code Conversion
import { Anima } from '@animaapp/anima-sdk';
const anima = new Anima({
auth: { token: process.env.ANIMA_TOKEN! },
});
async function cloneWebsiteToReact(url: string, outputDir: string) {
console.log(`Cloning ${url} to React components...`);
}