build-strategy

Selects ISR, SSG, SSR rendering strategies for dynamic websites based on content volume and frequency.

Updated Jun 14, 2026
One-click install
npx skills add https://github.com/baan-press/baan --skill build-strategy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-strategy
Source: https://github.com/baan-press/baan/tree/main/.claude/skills/build-strategy
Command: npx skills add https://github.com/baan-press/baan --skill build-strategy

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill guides the selection and implementation of rendering strategies (ISR, SSG, SSR) for dynamic websites, addressing concerns like load time, content update frequency, and scalability.

Core Features & Use Cases

  • Rendering Strategy Selection: Provides a decision-making guide for choosing between ISR, SSG, and SSR based on content volume and access frequency.
  • Configuration Guide: Offers detailed instructions on configuring these strategies and understanding their impact on performance.
  • Use Case: For a web application with a large number of articles, this Skill helps determine the best rendering strategy to balance quick first access times with efficient content updates.

Quick Start

Apply the build-strategy skill to select the appropriate rendering strategy for your site based on your content volume and update frequency.

Frequently Asked Questions about build-strategy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose between SSR, SSG, and ISR for my web application?

Rendering strategy selection involves evaluating content volume and access frequency. SSG suits static content, SSR handles real-time updates, and ISR balances quick first access times with efficient content updates for large article volumes.

What is the best rendering strategy for a site with a large number of articles?

For a large number of articles, ISR is often the best rendering strategy. It balances quick first access times with efficient content updates, allowing you to optimize site performance without regenerating every page on demand.

How do I configure rendering strategies to improve site performance?

Configuring rendering strategies involves setting up ISR, SSG, or SSR in your site architecture and deployment configuration. This process directly impacts performance by controlling how and when pages are pre-rendered or served dynamically.

When should I not use static site generation for dynamic websites?

Avoid static site generation when your dynamic website requires frequent content updates. SSG lacks real-time capabilities, making ISR or SSR better rendering strategies for maintaining content freshness and scalability.

Does ISR work well for optimizing website scalability?

ISR works well for optimizing website scalability by serving pre-rendered pages while periodically updating content in the background. This approach reduces server load and ensures quick first access times for high-traffic dynamic websites.