ClaudeCursorGeminiFront-End Development

landing-page-generator

Generates high-converting Next.js/React landing pages with Tailwind CSS. Uses PAS, AIDA, and BAB frameworks for optimized copy/components (Heroes, Features, Pricing). Focuses on Core Web Vitals/SEO.

31,392 stars
Complexity: easy

About this skill

This AI agent skill empowers developers and marketers to rapidly generate complete, high-converting Next.js/React landing pages styled with Tailwind CSS. It leverages proven marketing frameworks like Problem-Agitate-Solution (PAS), AIDA (Attention, Interest, Desire, Action), and Before-After-Bridge (BAB) to craft compelling copy and structure optimized components such as Heroes, Features, and Pricing sections. The generated output focuses on technical performance, adhering to Core Web Vitals (targeting LCP < 1s, CLS < 0.1) and SEO best practices to ensure high rankings and user experience. Unlike placeholder generators, it produces actual, conversion-focused content based on a product description, making it ideal for quick prototyping and deployment of marketing assets.

Best use case

Rapidly prototyping marketing pages; generating SEO-optimized landing pages without manual coding from scratch; creating conversion-focused web assets for product launches or campaigns; aiding non-technical marketers in generating functional landing page code; expediting front-end development of marketing sites.

Generates high-converting Next.js/React landing pages with Tailwind CSS. Uses PAS, AIDA, and BAB frameworks for optimized copy/components (Heroes, Features, Pricing). Focuses on Core Web Vitals/SEO.

A complete, production-ready Next.js/React component or set of components representing a high-converting landing page. This output includes structured HTML, Tailwind CSS styling, and conversion-focused copy for sections like hero, features, and pricing, all optimized for SEO and Core Web Vitals.

Practical example

Example input

Generate a landing page for a new AI-powered task management tool called 'FocusFlow'. It helps individuals and teams streamline their workflows, prioritize tasks using smart suggestions, and integrate with popular collaboration tools like Slack and Asana. Key features include an intuitive drag-and-drop interface, AI-driven task prioritization, real-time collaboration, and analytics dashboards. Target audience: busy professionals and small to medium-sized teams struggling with productivity.

Example output

```jsx
// src/app/page.js or components/FocusFlowLandingPage.jsx
import React from 'react';
import Head from 'next/head'; // For SEO metadata

const FocusFlowLandingPage = () => {
  return (
    <>
      <Head>
        <title>FocusFlow - AI-Powered Task Management for Peak Productivity</title>
        <meta name='description' content='Streamline workflows, prioritize with AI, and collaborate effortlessly. Boost your team\'s productivity with FocusFlow.' />
        {/* ... other SEO meta tags and schema markup ... */}
      </Head>
      <div className="min-h-screen bg-gray-50 font-sans text-gray-900">
        {/* Hero Section - AIDA: Attention, Interest */}
        <section className="relative bg-gradient-to-r from-blue-600 to-indigo-700 text-white py-20 md:py-32">
          <div className="container mx-auto px-4 text-center">
            <h1 className="text-4xl md:text-6xl font-extrabold leading-tight mb-4">
              Reclaim Your Time. Master Your Tasks.
            </h1>
            <p className="text-xl md:text-2xl mb-8 max-w-2xl mx-auto">
              FocusFlow: The AI-powered task management tool designed to streamline your workflows,
              prioritize tasks with smart suggestions, and boost team productivity.
            </p>
            <div className="flex justify-center space-x-4">
              <a href="#get-started" className="bg-white text-indigo-700 hover:bg-gray-100 font-bold py-3 px-8 rounded-full shadow-lg transition duration-300">
                Start Your Free Trial
              </a>
              <a href="#features" className="border border-white text-white hover:bg-white hover:text-indigo-700 font-bold py-3 px-8 rounded-full transition duration-300">
                Learn More
              </a>
            </div>
          </div>
        </section>

        {/* Problem-Agitate-Solution Section (PAS) */}
        <section className="py-16 bg-white">
          <div className="container mx-auto px-4 max-w-3xl text-center">
            <h2 className="text-3xl md:text-4xl font-bold mb-8">Tired of Overwhelm and Missed Deadlines?</h2>
            <p className="text-lg text-gray-700 mb-6">
              <strong className="text-red-600">Problem:</strong> In today's fast-paced world, managing tasks can feel like an endless battle. You juggle multiple projects,
              struggle with prioritization, and spend more time organizing than actually doing.
            </p>
            <p className="text-lg text-gray-700 mb-6">
              <strong className="text-orange-600">Agitate:</strong> This leads to stress, missed opportunities, and a constant feeling of being behind. Your team's
              productivity suffers, and important tasks slip through the cracks.
            </p>
            <p className="text-lg text-gray-700">
              <strong className="text-green-600">Solution:</strong> FocusFlow cuts through the chaos. Our AI intelligently prioritizes your work, automates tedious
              organizational tasks, and keeps your team aligned, so you can focus on what truly matters.
            </p>
          </div>
        </section>

        {/* Features Section - AIDA: Desire */}
        <section id="features" className="py-16 bg-blue-50">
          <div className="container mx-auto px-4">
            <h2 className="text-3xl md:text-4xl font-bold text-center mb-12">Unlock Peak Productivity with FocusFlow</h2>
            <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
              {/* Feature 1 */}
              <div className="bg-white p-8 rounded-lg shadow-md text-center">
                <div className="text-blue-500 mb-4">
                  {/* Icon placeholder */}
                  <svg className="w-12 h-12 mx-auto" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z"></path></svg>
                </div>
                <h3 className="text-xl font-semibold mb-3">AI-Driven Prioritization</h3>
                <p className="text-gray-600">
                  Our intelligent algorithms analyze your tasks, deadlines, and context to provide smart suggestions,
                  ensuring you always work on what matters most.
                </p>
              </div>
              {/* Feature 2 */}
              <div className="bg-white p-8 rounded-lg shadow-md text-center">
                <div className="text-blue-500 mb-4">
                  {/* Icon placeholder */}
                  <svg className="w-12 h-12 mx-auto" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"></path></svg>
                </div>
                <h3 className="text-xl font-semibold mb-3">Intuitive Drag-and-Drop</h3>
                <p className="text-gray-600">
                  Organize your projects and tasks effortlessly with a clean, visual interface that makes
                  managing your workload a breeze.
                </p>
              </div>
              {/* Feature 3 */}
              <div className="bg-white p-8 rounded-lg shadow-md text-center">
                <div className="text-blue-500 mb-4">
                  {/* Icon placeholder */}
                  <svg className="w-12 h-12 mx-auto" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.653-.13-1.282-.387-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.653.13-1.282.387-1.857m0 0a2 2 0 11.758-2.648l1.455-1.456m0 0a2 2 0 00.758-2.648l1.455-1.456m0 0a2 2 0 01.758-2.648l1.455-1.456"></path></svg>
                </div>
                <h3 className="text-xl font-semibold mb-3">Seamless Collaboration</h3>
                <p className="text-gray-600">
                  Share tasks, comment in real-time, and stay synced with your team. Integrates with Slack and Asana
                  for a truly connected workspace.
                </p>
              </div>
            </div>
          </div>
        </section>

        {/* Pricing Section (Conceptual - AIDA: Desire) */}
        <section id="pricing" className="py-16 bg-white">
          <div className="container mx-auto px-4 text-center">
            <h2 className="text-3xl md:text-4xl font-bold mb-12">Simple, Transparent Pricing</h2>
            <div className="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
              {/* Pricing Card 1 */}
              <div className="border rounded-lg p-8 shadow-lg">
                <h3 className="text-2xl font-bold mb-4">Starter</h3>
                <p className="text-5xl font-extrabold mb-6">$0<span className="text-lg font-normal">/month</span></p>
                <ul className="text-left mb-8 space-y-2">
                  <li>✅ Up to 5 users</li>
                  <li>✅ Basic task management</li>
                  <li>✅ Limited AI suggestions</li>
                </ul>
                <a href="#" className="block w-full bg-blue-600 text-white py-3 rounded-md hover:bg-blue-700 transition duration-300">Get Started</a>
              </div>
              {/* Pricing Card 2 (Popular) */}
              <div className="border-2 border-indigo-600 rounded-lg p-8 shadow-xl relative transform scale-105">
                <span className="absolute -top-3 left-1/2 -translate-x-1/2 bg-indigo-600 text-white text-xs font-bold px-3 py-1 rounded-full">Most Popular</span>
                <h3 className="text-2xl font-bold mb-4">Pro</h3>
                <p className="text-5xl font-extrabold mb-6">$19<span className="text-lg font-normal">/user/month</span></p>
                <ul className="text-left mb-8 space-y-2">
                  <li>✅ Unlimited users</li>
                  <li>✅ Advanced AI prioritization</li>
                  <li>✅ Real-time collaboration</li>
                  <li>✅ Slack & Asana integration</li>
                  <li>✅ Analytics dashboards</li>
                </ul>
                <a href="#" className="block w-full bg-indigo-600 text-white py-3 rounded-md hover:bg-indigo-700 transition duration-300">Choose Pro</a>
              </div>
              {/* Pricing Card 3 */}
              <div className="border rounded-lg p-8 shadow-lg">
                <h3 className="text-2xl font-bold mb-4">Enterprise</h3>
                <p className="text-5xl font-extrabold mb-6">Custom</p>
                <ul className="text-left mb-8 space-y-2">
                  <li>✅ All Pro features</li>
                  <li>✅ Dedicated support</li>
                  <li>✅ Custom integrations</li>
                  <li>✅ On-premise options</li>
                </ul>
                <a href="#" className="block w-full bg-blue-600 text-white py-3 rounded-md hover:bg-blue-700 transition duration-300">Contact Sales</a>
              </div>
            </div>
          </div>
        </section>

        {/* Call to Action - AIDA: Action */}
        <section className="py-20 bg-indigo-700 text-white text-center">
          <div className="container mx-auto px-4">
            <h2 className="text-4xl md:text-5xl font-bold mb-6">Ready to Supercharge Your Productivity?</h2>
            <p className="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">
              Join thousands of teams who are already achieving more with FocusFlow.
              Start your free trial today and experience the difference.
            </p>
            <a href="#get-started" className="bg-white text-indigo-700 hover:bg-gray-100 font-bold py-4 px-10 rounded-full shadow-lg transition duration-300 text-xl">
              Get Started for Free
            </a>
          </div>
        </section>

        {/* Footer */}
        <footer className="bg-gray-800 text-white py-8">
          <div className="container mx-auto px-4 text-center text-sm">
            <p>&copy; 2023 FocusFlow. All rights reserved.</p>
            {/* Add links: Privacy Policy, Terms of Service, etc. */}
          </div>
        </footer>
      </div>
    </>
  );
};

export default FocusFlowLandingPage;
```

When to use this skill

  • When you need to quickly launch a landing page for a new product, service, or feature; when a marketing campaign requires multiple A/B test variations of a landing page; when technical resources are limited, but a high-quality, performant landing page is needed; to jumpstart development by generating a solid foundational codebase for a landing page; when prioritizing Core Web Vitals and SEO from the outset of page creation.

When not to use this skill

  • For highly custom, design-intensive web applications requiring unique UX/UI that cannot be easily expressed via standard components; when a full-stack application with complex backend logic is required, as this skill focuses solely on the front-end landing page; if you require a static HTML/CSS page without React/Next.js dependencies; for content generation that is highly nuanced, context-specific, or requires deep domain expertise beyond what a product description can convey.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/landing-page-generator/SKILL.md --create-dirs "https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/plugins/antigravity-awesome-skills-claude/skills/landing-page-generator/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/landing-page-generator/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How landing-page-generator Compares

Feature / Agentlanding-page-generatorStandard Approach
Platform SupportClaude, Cursor, GeminiLimited / Varies
Context Awareness High Baseline
Installation ComplexityeasyN/A

Frequently Asked Questions

What does this skill do?

Generates high-converting Next.js/React landing pages with Tailwind CSS. Uses PAS, AIDA, and BAB frameworks for optimized copy/components (Heroes, Features, Pricing). Focuses on Core Web Vitals/SEO.

Which AI agents support this skill?

This skill is designed for Claude, Cursor, Gemini.

How difficult is it to install?

The installation complexity is rated as easy. You can find the installation instructions above.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Landing Page Generator

Generate high-converting landing pages from a product description. Output complete Next.js/React components with multiple section variants, proven copy frameworks, SEO optimization, and performance-first patterns. Not lorem ipsum — actual copy that converts.

**Target:** LCP < 1s · CLS < 0.1 · FID < 100ms  
**Output:** TSX components + Tailwind styles + SEO meta + copy variants

## When to Use

- You need to generate a marketing landing page in Next.js or React.
- The task involves conversion-focused page structure, section variants, Tailwind styling, or SEO-aware copy.
- You want complete landing-page output from a product description rather than isolated UI fragments.

## Core Capabilities

- 5 hero section variants (centered, split, gradient, video-bg, minimal)
- Feature sections (grid, alternating, cards with icons)
- Pricing tables (2–4 tiers with feature lists and toggle)
- FAQ accordion with schema markup
- Testimonials (grid, carousel, single-quote)
- CTA sections (banner, full-page, inline)
- Footer (simple, mega, minimal)
- 4 design styles with Tailwind class sets

---

## Generation Workflow

Follow these steps in order for every landing page request:

1. **Gather inputs** — collect product name, tagline, audience, pain point, key benefit, pricing tiers, design style, and copy framework using the trigger format below. Ask only for missing fields.
2. **Analyze brand voice** (recommended) — if the user has existing brand content (website copy, blog posts, marketing materials), run it through `marketing-skill/content-production/scripts/brand_voice_analyzer.py` to get a voice profile (formality, tone, perspective). Use the profile to inform design style and copy framework selection:
   - formal + professional → **enterprise** style, **AIDA** framework
   - casual + friendly → **bold-startup** style, **BAB** framework
   - professional + authoritative → **dark-saas** style, **PAS** framework
   - casual + conversational → **clean-minimal** style, **BAB** framework
3. **Select design style** — map the user's choice (or infer from brand voice analysis) to one of the four Tailwind class sets in the Design Style Reference.
4. **Apply copy framework** — write all headline and body copy using the chosen framework (PAS / AIDA / BAB) before generating components. Match the voice profile's formality and tone throughout.
5. **Generate sections in order** — Hero → Features → Pricing → FAQ → Testimonials → CTA → Footer. Skip sections not relevant to the product.
6. **Validate against SEO checklist** — run through every item in the SEO Checklist before outputting final code. Fix any gaps inline.
7. **Output final components** — deliver complete, copy-paste-ready TSX files with all Tailwind classes, SEO meta, and structured data included.

---

## Triggering This Skill

```
Product: [name]
Tagline: [one sentence value prop]
Target audience: [who they are]
Key pain point: [what problem you solve]
Key benefit: [primary outcome]
Pricing tiers: [free/pro/enterprise or describe]
Design style: dark-saas | clean-minimal | bold-startup | enterprise
Copy framework: PAS | AIDA | BAB
```

---

## Design Style Reference

| Style | Background | Accent | Cards | CTA Button |
|---|---|---|---|---|
| **Dark SaaS** | `bg-gray-950 text-white` | `violet-500/400` | `bg-gray-900 border border-gray-800` | `bg-violet-600 hover:bg-violet-500` |
| **Clean Minimal** | `bg-white text-gray-900` | `blue-600` | `bg-gray-50 border border-gray-200 rounded-2xl` | `bg-blue-600 hover:bg-blue-700` |
| **Bold Startup** | `bg-white text-gray-900` | `orange-500` | `shadow-xl rounded-3xl` | `bg-orange-500 hover:bg-orange-600 text-white` |
| **Enterprise** | `bg-slate-50 text-slate-900` | `slate-700` | `bg-white border border-slate-200 shadow-sm` | `bg-slate-900 hover:bg-slate-800 text-white` |

> **Bold Startup** headings: add `font-black tracking-tight` to all `<h1>`/`<h2>` elements.

---

## Copy Frameworks

**PAS (Problem → Agitate → Solution)**
- H1: Painful state they're in
- Sub: What happens if they don't fix it
- CTA: What you offer
- *Example — H1:* "Your team wastes 3 hours a day on manual reporting" / *Sub:* "Every hour spent on spreadsheets is an hour not closing deals. Your competitors are already automated." / *CTA:* "Automate your reports in 10 minutes →"

**AIDA (Attention → Interest → Desire → Action)**
- H1: Bold attention-grabbing statement → Sub: Interesting fact or benefit → Features: Desire-building proof points → CTA: Clear action

**BAB (Before → After → Bridge)**
- H1: "[Before state] → [After state]" → Sub: "Here's how [product] bridges the gap" → Features: How it works (the bridge)

---

## Representative Component: Hero (Centered Gradient — Dark SaaS)

Use this as the structural template for all hero variants. Swap layout classes, gradient direction, and image placement for split, video-bg, and minimal variants.

```tsx
export function HeroCentered() {
  return (
    <section className="relative flex min-h-screen flex-col items-center justify-center overflow-hidden bg-gray-950 px-4 text-center">
      <div className="absolute inset-0 bg-gradient-to-b from-violet-900/20 to-transparent" />
      <div className="pointer-events-none absolute -top-40 left-1/2 h-[600px] w-[600px] -translate-x-1/2 rounded-full bg-violet-600/20 blur-3xl" />
      <div className="relative z-10 max-w-4xl">
        <div className="mb-6 inline-flex items-center gap-2 rounded-full border border-violet-500/30 bg-violet-500/10 px-4 py-1.5 text-sm text-violet-300">
          <span className="h-1.5 w-1.5 rounded-full bg-violet-400" />
          Now in public beta
        </div>
        <h1 className="mb-6 text-5xl font-bold tracking-tight text-white md:text-7xl">
          Ship faster.<br />
          <span className="bg-gradient-to-r from-violet-400 to-pink-400 bg-clip-text text-transparent">
            Break less.
          </span>
        </h1>
        <p className="mx-auto mb-10 max-w-2xl text-xl text-gray-400">
          The deployment platform that catches errors before your users do.
          Zero config. Instant rollbacks. Real-time monitoring.
        </p>
        <div className="flex flex-col items-center gap-4 sm:flex-row sm:justify-center">
          <Button size="lg" className="bg-violet-600 text-white hover:bg-violet-500 px-8">
            Start free trial
          </Button>
          <Button size="lg" variant="outline" className="border-gray-700 text-gray-300">
            See how it works →
          </Button>
        </div>
        <p className="mt-4 text-sm text-gray-500">No credit card required · 14-day free trial</p>
      </div>
    </section>
  )
}
```

---

## Other Section Patterns

### Feature Section (Alternating)

Map over a `features` array with `{ title, description, image, badge }`. Toggle layout direction with `i % 2 === 1 ? "lg:flex-row-reverse" : ""`. Use `<Image>` with explicit `width`/`height` and `rounded-2xl shadow-xl`. Wrap in `<section className="py-24">` with `max-w-6xl` container.

### Pricing Table

Map over a `plans` array with `{ name, price, description, features[], cta, highlighted }`. Highlighted plan gets `border-2 border-violet-500 bg-violet-950/50 ring-4 ring-violet-500/20`; others get `border border-gray-800 bg-gray-900`. Render `null` price as "Custom". Use `<Check>` icon per feature row. Layout: `grid gap-8 lg:grid-cols-3`.

### FAQ with Schema Markup

Inject `FAQPage` JSON-LD via `<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }} />` inside the section. Map FAQs with `{ q, a }` into shadcn `<Accordion>` with `type="single" collapsible`. Container: `max-w-3xl`.

### Testimonials, CTA, Footer

- **Testimonials:** Grid (`grid-cols-1 md:grid-cols-3`) or single-quote hero block with avatar, name, role, and quote text.
- **CTA Banner:** Full-width section with headline, subhead, and two buttons (primary + ghost). Add trust signals (money-back guarantee, logo strip) immediately below.
- **Footer:** Logo + nav columns + social links + legal. Use `border-t border-gray-800` separator.

---

## SEO Checklist

- [ ] `<title>` tag: primary keyword + brand (50–60 chars)
- [ ] Meta description: benefit + CTA (150–160 chars)
- [ ] OG image: 1200×630px with product name and tagline
- [ ] H1: one per page, includes primary keyword
- [ ] Structured data: FAQPage, Product, or Organization schema
- [ ] Canonical URL set
- [ ] Image alt text on all `<Image>` components
- [ ] robots.txt and sitemap.xml configured
- [ ] Core Web Vitals: LCP < 1s, CLS < 0.1
- [ ] Mobile viewport meta tag present
- [ ] Internal linking to pricing and docs

> **Validation step:** Before outputting final code, verify every checklist item above is satisfied. Fix any gaps inline — do not skip items.

---

## Performance Targets

| Metric | Target | Technique |
|---|---|---|
| LCP | < 1s | Preload hero image, use `priority` on Next/Image |
| CLS | < 0.1 | Set explicit width/height on all images |
| FID/INP | < 100ms | Defer non-critical JS, use `loading="lazy"` |
| TTFB | < 200ms | Use ISR or static generation for landing pages |
| Bundle | < 100KB JS | Audit with `@next/bundle-analyzer` |

---

## Common Pitfalls

- Hero image not preloaded — add `priority` prop to first `<Image>`
- Missing mobile breakpoints — always design mobile-first with `sm:` prefixes
- CTA copy too vague — "Get started" beats "Learn more"; "Start free trial" beats "Sign up"
- Pricing page missing trust signals — add money-back guarantee and testimonials near CTA
- No above-the-fold CTA on mobile — ensure button is visible without scrolling on 375px viewport

---

## Related Skills

- **Brand Voice Analyzer** (`marketing-skill/content-production/scripts/brand_voice_analyzer.py`) — Run before generation to establish voice profile and ensure copy consistency
- **UI Design System** (`product-team/ui-design-system/`) — Generate design tokens from brand color before building the page
- **Competitive Teardown** (`product-team/competitive-teardown/`) — Competitive positioning informs landing page messaging and differentiation

Related Skills

magic-ui-generator

31392
from sickn33/antigravity-awesome-skills

Utilizes Magic by 21st.dev to generate, compare, and integrate multiple production-ready UI component variations.

UI GenerationClaude

k8s-manifest-generator

31392
from sickn33/antigravity-awesome-skills

Step-by-step guidance for creating production-ready Kubernetes manifests including Deployments, Services, ConfigMaps, Secrets, and PersistentVolumeClaims.

DevOps ToolsClaude

nft-standards

31392
from sickn33/antigravity-awesome-skills

Master ERC-721 and ERC-1155 NFT standards, metadata best practices, and advanced NFT features.

Web3 & BlockchainClaude

nextjs-app-router-patterns

31392
from sickn33/antigravity-awesome-skills

Comprehensive patterns for Next.js 14+ App Router architecture, Server Components, and modern full-stack React development.

Web FrameworksClaude

new-rails-project

31392
from sickn33/antigravity-awesome-skills

Create a new Rails project

Code GenerationClaude

networkx

31392
from sickn33/antigravity-awesome-skills

NetworkX is a Python package for creating, manipulating, and analyzing complex networks and graphs.

Network AnalysisClaude

network-engineer

31392
from sickn33/antigravity-awesome-skills

Expert network engineer specializing in modern cloud networking, security architectures, and performance optimization.

Network EngineeringClaude

nestjs-expert

31392
from sickn33/antigravity-awesome-skills

You are an expert in Nest.js with deep knowledge of enterprise-grade Node.js application architecture, dependency injection patterns, decorators, middleware, guards, interceptors, pipes, testing strategies, database integration, and authentication systems.

Frameworks & LibrariesClaude

nerdzao-elite

31392
from sickn33/antigravity-awesome-skills

Senior Elite Software Engineer (15+) and Senior Product Designer. Full workflow with planning, architecture, TDD, clean code, and pixel-perfect UX validation.

Software DevelopmentClaude

nerdzao-elite-gemini-high

31392
from sickn33/antigravity-awesome-skills

Modo Elite Coder + UX Pixel-Perfect otimizado especificamente para Gemini 3.1 Pro High. Workflow completo com foco em qualidade máxima e eficiência de tokens.

Software DevelopmentClaudeGemini

native-data-fetching

31392
from sickn33/antigravity-awesome-skills

Use when implementing or debugging ANY network request, API call, or data fetching. Covers fetch API, React Query, SWR, error handling, caching, offline support, and Expo Router data loaders (useLoaderData).

API IntegrationClaude

n8n-workflow-patterns

31392
from sickn33/antigravity-awesome-skills

Proven architectural patterns for building n8n workflows.

Workflow AutomationClaude