ai-context-engineering/file-detail-oversize.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
'Risk' as title,
sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/ai-context-engineering/risk.sql' as link;
Select 'Files' as title,
sqlpage.environment_variable('SQLPAGE_SITE_PREFIX') || '/ai-context-engineering/file-oversized-list.sql' as link;
select filename as title,
'#' as link
from ai_ctxe_uniform_resource_oversized_list
where uniform_resource_id = $uniform_resource_id;
SELECT 'title' AS component, 'File Details' AS contents;
SELECT 'card' as component, 1 as columns;
SELECT
'
' || p.content AS description_md
FROM ai_ctxe_uniform_resource_oversized_list p
WHERE p.uniform_resource_id = $uniform_resource_id;