clementine-agent 1.18.140 → 1.18.141
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/dashboard.js +23 -8
- package/package.json +1 -1
package/dist/cli/dashboard.js
CHANGED
|
@@ -19130,7 +19130,7 @@ if('serviceWorker' in navigator){navigator.serviceWorker.getRegistrations().then
|
|
|
19130
19130
|
<button class="active" data-icon="layoutDashboard" onclick="switchTab('intelligence','overview')"><span class="icon-slot"></span> Overview</button>
|
|
19131
19131
|
<button data-icon="database" onclick="switchTab('intelligence','search')"><span class="icon-slot"></span> Chunks</button>
|
|
19132
19132
|
<button data-icon="upload" onclick="switchTab('intelligence','seed')"><span class="icon-slot"></span> Seed</button>
|
|
19133
|
-
<button data-icon="repeat" onclick="switchTab('intelligence','sources')"><span class="icon-slot"></span>
|
|
19133
|
+
<button data-icon="repeat" onclick="switchTab('intelligence','sources')"><span class="icon-slot"></span> Feeds</button>
|
|
19134
19134
|
<button data-icon="listChecks" onclick="switchTab('intelligence','runs')"><span class="icon-slot"></span> Runs</button>
|
|
19135
19135
|
<button data-icon="sparkles" onclick="switchTab('intelligence','graph')"><span class="icon-slot"></span> Knowledge</button>
|
|
19136
19136
|
<button data-icon="fileText" onclick="switchTab('intelligence','files')"><span class="icon-slot"></span> Memory</button>
|
|
@@ -19150,7 +19150,7 @@ if('serviceWorker' in navigator){navigator.serviceWorker.getRegistrations().then
|
|
|
19150
19150
|
</div>
|
|
19151
19151
|
<div style="display:flex;gap:8px;flex-wrap:wrap">
|
|
19152
19152
|
<button class="btn-primary btn-sm" onclick="switchTab('intelligence','seed')"><span class="icon-slot" data-icon="upload"></span> Seed local data</button>
|
|
19153
|
-
<button class="btn-sm" onclick="switchTab('intelligence','sources')"><span class="icon-slot" data-icon="repeat"></span> Add
|
|
19153
|
+
<button class="btn-sm" onclick="switchTab('intelligence','sources')"><span class="icon-slot" data-icon="repeat"></span> Add a feed</button>
|
|
19154
19154
|
<button class="btn-sm" onclick="switchTab('intelligence','health')"><span class="icon-slot" data-icon="activity"></span> Verify health</button>
|
|
19155
19155
|
</div>
|
|
19156
19156
|
</div>
|
|
@@ -19411,9 +19411,18 @@ if('serviceWorker' in navigator){navigator.serviceWorker.getRegistrations().then
|
|
|
19411
19411
|
</div>
|
|
19412
19412
|
</div>
|
|
19413
19413
|
|
|
19414
|
-
<!-- Sources -->
|
|
19414
|
+
<!-- Feeds (formerly "Sources" tab — renamed 1.18.141 to match user mental model) -->
|
|
19415
19415
|
<div class="tab-pane" id="tab-intelligence-sources">
|
|
19416
19416
|
|
|
19417
|
+
<!-- Section header — explains what Feeds are vs. one-shot Seed uploads -->
|
|
19418
|
+
<div style="margin-bottom:14px">
|
|
19419
|
+
<div style="font-size:18px;font-weight:600;margin-bottom:4px">Feeds</div>
|
|
19420
|
+
<div style="color:var(--muted);font-size:13px;line-height:1.5">
|
|
19421
|
+
Auto-watched external sources Clementine polls on a schedule — Google Drive folders, connected apps via Composio, Claude Desktop connectors, REST endpoints. Each feed fetches records, dedupes against existing memory, and writes distilled notes to the brain.<br>
|
|
19422
|
+
<span style="opacity:0.85">For one-shot uploads (drop a file, choose a folder), use the <a href="#" onclick="switchTab('intelligence','seed');return false" style="text-decoration:underline">Seed</a> tab instead.</span>
|
|
19423
|
+
</div>
|
|
19424
|
+
</div>
|
|
19425
|
+
|
|
19417
19426
|
<!-- ═══ Auto-seed feeds (connected tools → cron → brain) ═══ -->
|
|
19418
19427
|
<div class="card" style="padding:16px;margin-bottom:16px">
|
|
19419
19428
|
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:4px">
|
|
@@ -19440,11 +19449,17 @@ if('serviceWorker' in navigator){navigator.serviceWorker.getRegistrations().then
|
|
|
19440
19449
|
</div>
|
|
19441
19450
|
</div>
|
|
19442
19451
|
|
|
19443
|
-
|
|
19444
|
-
|
|
19445
|
-
|
|
19446
|
-
|
|
19447
|
-
|
|
19452
|
+
<!-- Legacy direct-integration paths (REST polls + webhooks). De-emphasized 1.18.141 -->
|
|
19453
|
+
<!-- so the modern "Add feed" flow above stays the primary surface. The forms below -->
|
|
19454
|
+
<!-- are still wired (write to /api/brain/sources) for users who need raw HTTP plumbing. -->
|
|
19455
|
+
<details style="margin-bottom:16px">
|
|
19456
|
+
<summary style="color:var(--muted);font-size:13px;cursor:pointer;padding:8px 0">Advanced — manual integrations (REST polls, webhooks, credentials)</summary>
|
|
19457
|
+
<div style="display:flex;gap:8px;margin-top:8px;margin-bottom:8px;flex-wrap:wrap">
|
|
19458
|
+
<button class="btn-primary" onclick="brainShowPollForm()">+ Scheduled REST poll</button>
|
|
19459
|
+
<button class="btn-primary" onclick="brainShowWebhookForm()">+ Inbound webhook</button>
|
|
19460
|
+
<button class="btn" onclick="brainShowCredsForm()">🔑 Credentials</button>
|
|
19461
|
+
</div>
|
|
19462
|
+
</details>
|
|
19448
19463
|
|
|
19449
19464
|
<!-- Webhook form -->
|
|
19450
19465
|
<div id="brain-webhook-form" class="card" style="display:none;padding:16px;margin-bottom:16px">
|