signoz-feature-page-builder

star 39

Create new SigNoz feature pages following established architecture, shared components, and design patterns. Use when asked to "create a feature page", "build a landing page", "new product page", "scaffold a page like trace-funnels", or any request to build a marketing/product page for a SigNoz feature. Also activates for "add a page for [feature]", "build a page similar to alerts/external-apis/why-signoz", "here's the copy for the page", "build from this copy", or "use this Figma file to build a page".

SigNoz By SigNoz schedule Updated 6/9/2026

name: signoz-feature-page-builder description: Create new SigNoz feature pages following established architecture, shared components, and design patterns. Use when asked to "create a feature page", "build a landing page", "new product page", "scaffold a page like trace-funnels", or any request to build a marketing/product page for a SigNoz feature. Also activates for "add a page for [feature]", "build a page similar to alerts/external-apis/why-signoz", "here's the copy for the page", "build from this copy", or "use this Figma file to build a page".

SigNoz Feature Page Builder

Build new feature pages that match the established architecture, component library, and visual language of existing SigNoz feature pages.

Reference Implementation

The trace-funnels page (app/trace-funnels/) is the cleanest reference implementation. Use it as the primary pattern to follow. Other pages provide additional patterns:

  • app/alerts-management/ — Rich multi-section layout with many feature highlights
  • app/external-apis/ — CarouselCards interactive pattern
  • app/why-signoz/ — Complex enterprise page with varied card types
  • app/datadog-migration-tool/ — Modal/form integration pattern

Build Workflows

Workflow A: Interactive (define as you go)

  1. Define Page Goals: Clarify the feature name, target audience, key value propositions (3-5), primary CTA, and secondary CTA.
  2. Create File Structure: Follow the standard 3-file pattern (see page-architecture.md).
  3. Build Constants: Define card data, carousel data, button configs, and tracking objects (see content-patterns.md).
  4. Compose Sections: Assemble the page using shared components in the standard flow (see shared-components.md).
  5. Add Tracking: Integrate TrackingLink and tracking objects on all interactive elements.
  6. Visual Review: Run $signoz-visual-review on the completed page to catch visual issues.
  7. Verify: Run yarn lint and yarn build to confirm the page compiles.

Workflow B: Copy-First (build from raw content + assets)

Use this when the user provides all copy in a single prompt, optionally with a Figma URL for assets. See copy-to-page-workflow.md for the full algorithm.

  1. Analyze Copy: Classify each content block (HERO, FEATURE_SPLIT, FEATURE_CARD, FEATURE_CAROUSEL, CTA, META).
  2. Fetch Assets from Figma (if URL provided): a. Check MCP: Verify Figma MCP tools are available (mcp__figma*). If not, prompt the user to add one via claude mcp add. b. Auto-discover nodes: Parse the Figma URL, fetch the file tree, and walk it to find all exportable FRAME/GROUP/COMPONENT nodes. Never ask the user for node IDs. c. Show discovered assets: Present a table of found assets with proposed export settings for user confirmation. d. Export groups as single images: Export each GROUP node (e.g., "feature-graphic-hero") as one flattened image, not its individual children. e. Export at correct scales: Hero/header/graphic/banner assets at 4x PNG; all other assets at 2x PNG. f. Convert PNG to WebP: Use sips -s format webp (macOS) to convert all exported PNGs to WebP. Remove original PNGs after conversion. g. Place assets: Save final WebP files to public/img/<feature-name>/.
  3. Map Content to Components: Apply the content analysis algorithm to decide which shared components handle each block.
  4. Show Content Map: Present the user a brief table showing how their copy was classified, which component each block maps to, and which image goes where.
  5. Generate Page: Build all 3 files with properly sized, arranged, and spaced content.
  6. Flag Gaps: Identify any sections that need more copy, missing images, or user decisions — do not fabricate content.
  7. Visual Review + Verify: Run $signoz-visual-review then yarn lint and yarn build.

Standard Page Flow

Every feature page should follow this structure (order matters):

FeaturePageLayout
  ├── 1. Header (FeaturePageHeader)
  │     └── Title + description + buttons (from constants) + hero image
  │
  ├── 2. Feature Sections (SectionLayout variant="bordered" className="!px-0")
  │     ├── <Divider />
  │     ├── FeatureShowcase / SplitSection  ← spread data from constants
  │     ├── <Divider />
  │     ├── FeatureShowcase / SplitSection  ← alternate sides for splits
  │     ├── <Divider />
  │     ├── HeroCards / CarouselCards       ← card grid or carousel
  │     ├── <Divider />
  │     └── CTABanner                       ← buttons from constants
  │
  ├── 3. UsageBasedPricing
  │     └── show={['logs', 'traces', 'metrics']} — pick relevant signal types
  │
  ├── 4. SigNozStats
  │     └── Community stats and deployment options
  │
  └── 5. CustomerStoriesSection
        └── Testimonials with tracking

Component Decision Tree

Choose the right component for each section:

  • Full-width title + description + screenshotFeatureShowcase (spread data from constants)
  • Side-by-side text + imageSplitSection (left/right as panel configs or ReactNode)
  • Two side-by-side feature explanationsSplitSection with withVerticalDivider
  • 3+ feature highlights as cardsHeroCards with FeatureCard items
  • Step-by-step interactive walkthroughCarouselCards with image transitions
  • Detailed feature explanations with iconsIconTitleDescriptionCard in a grid
  • CTA bannerCTABanner (title + buttons from constants)
  • Section dividers<Divider /> placed between sections in parent composition
  • Pricing informationUsageBasedPricing component
  • Social proofCustomerStoriesSection component

Do NOT use:

  • Raw GridLayout variant="split" for text+image sections — use SplitSection instead
  • Inline border-t-1 border-dashed border-signoz_slate-400 divs — use <Divider /> instead
  • Inline h2 + ButtonGroup for CTA banners — use CTABanner instead
  • flex-center CSS class — use BUTTON_CLASS_NAME Tailwind constant instead

Content Guidelines

  • Title: Action-oriented, benefit-focused. "Create Visual Funnels from Traces" not "Trace Funnels Feature".
  • Description: 1-2 sentences max. Focus on the unique value, not generic observability claims.
  • Section titles: Verb-led where possible. "Define multi-step sequences", "See drop-offs between steps".
  • Card descriptions: Specific and concrete. Include real examples (latencies, percentages, error counts) where applicable.
  • Buttons: Primary = "Start your free trial" (links to /teams/). Secondary = "Read Documentation" (links to /docs/<feature>/).

Tracking Requirements

Every interactive element needs tracking. See content-patterns.md for the tracking object structure.

  • Hero buttons: clickLocation: '<Feature> Hero'
  • Mid-page buttons: clickLocation: '<Feature> <Section Name>'
  • Bottom CTA buttons: clickLocation: '<Feature> Bottom Banner'
  • Customer stories: clickName: '<Feature> Customer Stories Button', clickLocation: '<Feature> Testimonials'

Domain References

Guardrails

  • Use existing shared components from shared/components/molecules/FeaturePages/ — do not create new layout primitives.
  • Follow the standard page flow. Omitting UsageBasedPricing, SigNozStats, or CustomerStoriesSection requires explicit justification.
  • All images go in public/img/<feature-name>/ directory.
  • Constants file should export named constants (not default exports) for card arrays and data objects.
  • Do not hardcode Hubspot form IDs — reference them from constants or environment config.
  • Run yarn lint and yarn build after creating the page to verify it compiles.
Install via CLI
npx skills add https://github.com/SigNoz/signoz.io --skill signoz-feature-page-builder
Repository Details
star Stars 39
call_split Forks 167
navigation Branch main
article Path SKILL.md
More from Creator