agent-knowledge 1.0.5 → 1.0.6

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.
@@ -866,11 +866,20 @@ h1 {
866
866
  display: flex;
867
867
  flex-direction: column;
868
868
  position: relative;
869
+ height: 100%;
869
870
  }
870
871
 
871
872
  .side-panel.open {
872
873
  width: var(--panel-width);
873
874
  min-width: 320px;
875
+ overflow: visible;
876
+ }
877
+
878
+ .panel-body {
879
+ flex: 1;
880
+ overflow-y: auto;
881
+ min-height: 0;
882
+ padding: 16px;
874
883
  }
875
884
 
876
885
  /* ── Panel Resize Handle ───────────────────────────────────────────────── */
@@ -924,12 +933,6 @@ h1 {
924
933
  margin-right: 8px;
925
934
  }
926
935
 
927
- .panel-body {
928
- flex: 1;
929
- overflow-y: auto;
930
- padding: 16px;
931
- }
932
-
933
936
  /* ── Chat Bubbles ──────────────────────────────────────────────────────── */
934
937
  .chat-messages {
935
938
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-knowledge",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Cross-session memory and recall for AI agents — git-synced knowledge base, hybrid semantic+TF-IDF search, auto-distillation with secrets scrubbing",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",