Skip to content

Commit 09f8f12

Browse files
authored
feat(memory): graph view, raw archive, Gemma defaults, pipeline polish (tinyhumansai#1317)
1 parent 33d8aa9 commit 09f8f12

44 files changed

Lines changed: 4352 additions & 1434 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

app/src-tauri/capabilities/default.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
"notification:allow-request-permission",
2121
"notification:allow-notify",
2222
"opener:default",
23+
{
24+
"identifier": "opener:allow-open-url",
25+
"allow": [{ "url": "obsidian://open*" }]
26+
},
2327
"updater:default",
2428
"allow-core-process",
2529
"allow-app-update"

app/src/AppRoutes.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import HumanPage from './features/human/HumanPage';
77
import Accounts from './pages/Accounts';
88
import Channels from './pages/Channels';
99
import Home from './pages/Home';
10+
import Intelligence from './pages/Intelligence';
1011
import Invites from './pages/Invites';
1112
import Notifications from './pages/Notifications';
1213
import Onboarding from './pages/onboarding/Onboarding';
@@ -57,7 +58,14 @@ const AppRoutes = () => {
5758
}
5859
/>
5960

60-
<Route path="/intelligence" element={<Navigate to="/settings/intelligence" replace />} />
61+
<Route
62+
path="/intelligence"
63+
element={
64+
<ProtectedRoute requireAuth={true}>
65+
<Intelligence />
66+
</ProtectedRoute>
67+
}
68+
/>
6169

6270
<Route
6371
path="/skills"

app/src/components/BottomTabBar.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,21 @@ const tabs = [
6969
</svg>
7070
),
7171
},
72+
{
73+
id: 'intelligence',
74+
label: 'Memory',
75+
path: '/intelligence',
76+
icon: (
77+
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
78+
<path
79+
strokeLinecap="round"
80+
strokeLinejoin="round"
81+
strokeWidth={1.8}
82+
d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"
83+
/>
84+
</svg>
85+
),
86+
},
7287
{
7388
id: 'notifications',
7489
label: 'Alerts',

0 commit comments

Comments
 (0)