feat: bootstrap walking skeleton

This commit is contained in:
ginnoir
2026-06-11 17:06:52 -05:00
commit ec8f857845
44 changed files with 6677 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { actionDefs, resourceDefs } from './definitions';
import { buildContent } from './schema';
/** The validated, indexed content the engine and view consume. */
export const content = buildContent({ resources: resourceDefs, actions: actionDefs });
export type { ActionDef, Content, ResourceDef } from './schema';