agent-knowledge 1.0.0 → 1.0.1

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.
@@ -90,17 +90,6 @@
90
90
  <span class="material-symbols-outlined tab-icon">history</span>
91
91
  Sessions
92
92
  </button>
93
- <button
94
- id="tab-recall"
95
- class="tab"
96
- role="tab"
97
- aria-selected="false"
98
- aria-controls="view-recall"
99
- data-view="recall"
100
- >
101
- <span class="material-symbols-outlined tab-icon">psychology</span>
102
- Recall
103
- </button>
104
93
  <button
105
94
  id="tab-embeddings"
106
95
  class="tab"
@@ -218,6 +207,27 @@
218
207
  <span class="material-symbols-outlined">code</span>Regex
219
208
  </button>
220
209
  </div>
210
+ <div class="filter-chips" id="search-scopes" role="group" aria-label="Filter by scope">
211
+ <button class="chip active" data-scope="all">All</button>
212
+ <button class="chip" data-scope="errors">
213
+ <span class="material-symbols-outlined chip-icon">error</span>Errors
214
+ </button>
215
+ <button class="chip" data-scope="plans">
216
+ <span class="material-symbols-outlined chip-icon">checklist</span>Plans
217
+ </button>
218
+ <button class="chip" data-scope="configs">
219
+ <span class="material-symbols-outlined chip-icon">settings</span>Configs
220
+ </button>
221
+ <button class="chip" data-scope="tools">
222
+ <span class="material-symbols-outlined chip-icon">build</span>Tools
223
+ </button>
224
+ <button class="chip" data-scope="files">
225
+ <span class="material-symbols-outlined chip-icon">description</span>Files
226
+ </button>
227
+ <button class="chip" data-scope="decisions">
228
+ <span class="material-symbols-outlined chip-icon">gavel</span>Decisions
229
+ </button>
230
+ </div>
221
231
  </div>
222
232
  <div id="search-results" class="results-list"></div>
223
233
  <div id="search-empty" class="empty-state">
@@ -255,60 +265,6 @@
255
265
  </div>
256
266
  </section>
257
267
 
258
- <!-- ===== Recall Tab ===== -->
259
- <section id="view-recall" class="view" role="tabpanel" aria-labelledby="tab-recall" hidden>
260
- <div class="view-header">
261
- <h2><span class="material-symbols-outlined view-icon">psychology</span>Recall</h2>
262
- </div>
263
- <div class="filter-chips" id="recall-scopes" role="group" aria-label="Filter by scope">
264
- <button class="chip active" data-scope="all">
265
- <span class="material-symbols-outlined chip-icon">select_all</span>All
266
- </button>
267
- <button class="chip" data-scope="errors">
268
- <span class="material-symbols-outlined chip-icon">error</span>Errors
269
- </button>
270
- <button class="chip" data-scope="plans">
271
- <span class="material-symbols-outlined chip-icon">checklist</span>Plans
272
- </button>
273
- <button class="chip" data-scope="configs">
274
- <span class="material-symbols-outlined chip-icon">settings</span>Configs
275
- </button>
276
- <button class="chip" data-scope="tools">
277
- <span class="material-symbols-outlined chip-icon">build</span>Tools
278
- </button>
279
- <button class="chip" data-scope="files">
280
- <span class="material-symbols-outlined chip-icon">description</span>Files
281
- </button>
282
- <button class="chip" data-scope="decisions">
283
- <span class="material-symbols-outlined chip-icon">gavel</span>Decisions
284
- </button>
285
- </div>
286
- <div class="search-bar">
287
- <span class="material-symbols-outlined search-input-icon">psychology</span>
288
- <input
289
- type="search"
290
- id="recall-input"
291
- class="search-input"
292
- placeholder="Query recall..."
293
- autocomplete="off"
294
- aria-label="Query recall"
295
- />
296
- </div>
297
- <label class="semantic-toggle" title="Enable semantic similarity search">
298
- <input type="checkbox" id="recall-semantic" checked />
299
- <span class="material-symbols-outlined toggle-icon">neurology</span>
300
- Semantic
301
- </label>
302
- <div id="recall-results" class="results-list"></div>
303
- <div id="recall-empty" class="empty-state">
304
- <span class="material-symbols-outlined empty-icon">psychology</span>
305
- <div class="empty-text">Scoped recall across sessions</div>
306
- <div class="empty-hint">
307
- Select a scope and enter a query to recall relevant information
308
- </div>
309
- </div>
310
- </section>
311
-
312
268
  <!-- ===== Embeddings Tab ===== -->
313
269
  <section
314
270
  id="view-embeddings"