feat: complete AIUI integration — all 31 overnight tasks

- Protocol: 10 context categories (apps, system, network, bitcoin, media, files, notes, search, ai-local, wallet)
- ContextBroker: real data wiring for all categories with sanitization
- Permissions: user toggles for all categories in Settings
- Nginx: Claude API, OpenRouter, SearXNG proxy pass-through
- Actions: launch-app, search-web, install-app handlers
- Chat.vue: loading state + connection indicator
- Integration test page: test-aiui.html

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-04 14:34:02 +00:00
co-authored by Claude Opus 4.6
parent 81473db38b
commit 7b56927c3c
26 changed files with 1253 additions and 142 deletions
+12 -2
View File
@@ -6,10 +6,20 @@
*/
/** Data categories that AIUI can request access to */
export type AIContextCategory = 'apps' | 'system' | 'network' | 'wallet' | 'files'
export type AIContextCategory =
| 'apps'
| 'system'
| 'network'
| 'wallet'
| 'files'
| 'media'
| 'search'
| 'ai-local'
| 'notes'
| 'bitcoin'
/** Actions AIUI can request Archy to perform */
export type AIActionType = 'install-app' | 'open-app' | 'navigate'
export type AIActionType = 'install-app' | 'open-app' | 'navigate' | 'launch-app' | 'search-web'
// ─── AIUI → Archy (Requests) ───────────────────────────────────────────────