From vfm-agent-company
Frontend and mobile performance optimization expertise from Meta. Techniques for 60fps animations, Core Web Vitals, app startup optimization, and delivering buttery-smooth experiences at Instagram/Facebook scale. Use when optimizing web/mobile performance, improving load times, or achieving perfect Core Web Vitals scores.
npx claudepluginhub duylinhdang1998/claude-template-agent --plugin vfm-agent-companyThis skill uses the workspace's default tool permissions.
**Expert**: Sarah Chen (Meta React Core Team, 12 years)
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Expert: Sarah Chen (Meta React Core Team, 12 years) Level: 10/10 - World-class performance expert
Performance optimization at Meta means serving 3 billion users with buttery-smooth 60fps experiences. This is the expertise that made Instagram Web 60% faster (4.5s → 1.8s load time).
Web Performance:
React Performance:
Mobile Performance:
Target scores:
See references/core-web-vitals.md for optimization techniques.
Avoid unnecessary re-renders:
// Use React.memo for expensive components
const ExpensiveComponent = React.memo(({ data }) => {
// Only re-renders when data changes
return <div>{data}</div>;
});
// Use useMemo for expensive calculations
const expensiveValue = useMemo(() => {
return complexCalculation(data);
}, [data]);
See references/react-optimization.md for complete guide.
Instagram Web (2020):
Facebook Web:
Last Updated: 2026-02-03 Expert: Sarah Chen (Meta, 12 years) - Made Instagram 60% faster