ai-context-engineering/validation-detail.sql

              SELECT 'dynamic' AS component, sqlpage.run_sql('shell/shell.sql') AS properties;
              -- not including breadcrumbs from sqlpage_aide_navigation
              -- not including page title from sqlpage_aide_navigation
              

              
      select
      'breadcrumb' as component;
     
      select
      'Home' as title,
      sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/' as link;
     
      select
      'AI Context Engineering Overview' as title,
      sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/ai-context-engineering/index.sql' as link;
     
      select
      'Prompt' as title,
      sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/ai-context-engineering/prompts.sql' as link;
     
      select
      "Validation" as title,
      "#" as link
      from ai_ctxe_uniform_resource_frontmatter_view
      where uniform_resource_id = $uniform_resource_id;
       select
      'card' as component,
      1 as columns;
     SELECT
      '
' || p.elaboration_warning AS description_md
      
      from ai_ctxe_uniform_resource_frontmatter_view p
      where p.uniform_resource_id = $uniform_resource_id;