Field Forge can generate field group structures from natural language descriptions. Both local template matching with auto-create and API-backed generation require the current ai_schema entitlement; without PRO/trial the REST/AJAX path returns a PRO-required error before creating groups.
25 Built-in Templates
| Template | Trigger Keywords | Fields Generated |
|---|---|---|
| Hero Section | hero, banner | heading, subheading, image, CTA |
| FAQ Section | faq, questions | title, repeater of Q/A |
| Testimonials | testimonial, review | title, repeater with quote/author/photo |
| Features Grid | feature, benefit | title, repeater with icon/title/description |
| Pricing Table | pricing, plan | title, repeater of plans |
| Team Section | team, member | title, repeater with photo/name/position |
| Call to Action | cta, call to action | heading, description, button |
| Gallery Section | gallery, portfolio | title, gallery field |
| Contact Info | contact | email, phone, address |
| Product | product, catalog | subtitle, price, gallery, specs |
| SEO Settings | seo, meta | meta title, meta description, OG image |
| Quick Links | quick links | title, repeater of label/URL |
| Stats / Counters | stats, counter | title, repeater of value/suffix/label |
| Brand Logos | logo, brand | title, repeater of logo/name/link |
| Video Section | video | heading, oEmbed, poster, caption |
| How It Works | how it works, steps | title, repeater of icon/title/description |
| Social Links | social | Facebook, X, Instagram, LinkedIn, YouTube |
| Map / Location | map, location | address, latitude, longitude, zoom |
| Downloads | download, resource | title, repeater of title/file/description |
| Announcement Bar | announcement, notice | message, link, dismissible, background |
| Newsletter Signup | newsletter, subscribe | heading, description, placeholder, button |
| Countdown Timer | countdown, timer | heading, target date/time, expired message |
| Tabbed Content | tabs | repeater of tab label/WYSIWYG content |
| Job Listing | job, career, vacancy | title, location, type, salary, description, apply |
| Recipe | recipe, ingredient | servings, times, ingredients, steps |
| Landing Page | landing, website | Combines hero + features + testimonials + CTA |
API Generation
php
$ai = FIELDFORGE_AI_Schema::instance();
// Local template matching
$result = $ai->generate( 'landing page with hero and FAQ', 'local' );
// API-based generation (PRO)
$result = $ai->generate( 'real estate listing with floor plans', 'api' );
// Auto: tries local first, falls back to API
$result = $ai->generate( 'product catalog with specifications', 'auto' );—