ai-context-engineering/file-list.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
'Ingest Health' as title,
sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/ai-context-engineering/ingest-health.sql' as link;
     
select 'Files' as title;
     
select
'table' as component,
TRUE AS sort,
TRUE AS search,
'filename' as markdown;
     
select
'[' || filename || '](' || sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/ai-context-engineering/prompt-detail-all.sql' || '?uniform_resource_id=' || uniform_resource_id || ')' as "filename",
created_at as "Created At"
from ai_ctxe_uniform_resource_prompts;