From c1f0d9e939c7ba27ee85aedec9923188947976b8 Mon Sep 17 00:00:00 2001 From: "Anthony Fu (via agent)" Date: Fri, 21 Aug 2026 12:27:39 +0000 Subject: [PATCH] docs: enable the Ask AI assistant on the docs site --- docs/app/app.config.ts | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/docs/app/app.config.ts b/docs/app/app.config.ts index 77657cc7..6cd9b384 100644 --- a/docs/app/app.config.ts +++ b/docs/app/app.config.ts @@ -135,6 +135,40 @@ export default defineAppConfig({ }, }, + assistant: { + enabled: true, + faqQuestions: [ + { + category: 'Getting Started', + items: [ + 'What is Devframe and what problem does it solve?', + 'How do I define a devframe and mount it with the Vite adapter?', + ], + }, + { + category: 'RPC & State', + items: [ + 'How do I define an RPC function with defineRpcFunction?', + 'How does shared state stay in sync between server and client?', + ], + }, + { + category: 'Adapters', + items: [ + 'What adapters can one devframe definition run under?', + 'How do I build a standalone CLI from a devframe?', + ], + }, + { + category: 'Hub', + items: [ + 'How do I compose multiple integrations into a hub?', + 'How do I build my own hub UI on top of the hub protocol?', + ], + }, + ], + }, + ui: { colors: { primary: 'sage',