@shawnowen/comet-mcp 2.4.1 → 2.4.2

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.
Files changed (46) hide show
  1. package/README.md +12 -1
  2. package/dist/binding-reaper.d.ts +46 -0
  3. package/dist/binding-reaper.js +73 -0
  4. package/dist/http-server.js +121 -0
  5. package/dist/index.js +310 -6
  6. package/dist/project-config.d.ts +46 -0
  7. package/dist/project-config.js +166 -0
  8. package/dist/tab-groups.d.ts +21 -1
  9. package/dist/tab-groups.js +184 -0
  10. package/dist/window-bindings.d.ts +48 -0
  11. package/dist/window-bindings.js +85 -0
  12. package/extension/background.js +38 -17
  13. package/extension/manifest.json +16 -1
  14. package/extension/perplexity-capability-manifest.json +1181 -0
  15. package/extension/perplexity-capability-manifest.schema.json +142 -0
  16. package/extension/session-logic.js +696 -25
  17. package/extension/session-manager.html +13 -1
  18. package/extension/sidepanel.css +21 -6
  19. package/extension/sidepanel.js +598 -68
  20. package/package.json +1 -1
  21. package/dist/discovery/capability-entry.d.ts +0 -215
  22. package/dist/discovery/capability-entry.js +0 -13
  23. package/dist/discovery/description-template.d.ts +0 -40
  24. package/dist/discovery/description-template.js +0 -61
  25. package/dist/discovery/golden-queries.fixture.d.ts +0 -22
  26. package/dist/discovery/golden-queries.fixture.js +0 -137
  27. package/dist/discovery/mcp-source.d.ts +0 -38
  28. package/dist/discovery/mcp-source.js +0 -70
  29. package/dist/discovery/metadata-completeness.d.ts +0 -48
  30. package/dist/discovery/metadata-completeness.js +0 -83
  31. package/dist/discovery/registry.d.ts +0 -35
  32. package/dist/discovery/registry.js +0 -35
  33. package/dist/discovery/safety.d.ts +0 -44
  34. package/dist/discovery/safety.js +0 -59
  35. package/dist/discovery/schema-validator.d.ts +0 -36
  36. package/dist/discovery/schema-validator.js +0 -257
  37. package/dist/discovery/source-error.d.ts +0 -47
  38. package/dist/discovery/source-error.js +0 -95
  39. package/dist/discovery/tool-meta.d.ts +0 -41
  40. package/dist/discovery/tool-meta.js +0 -229
  41. package/dist/discovery/virtual-tools.d.ts +0 -20
  42. package/dist/discovery/virtual-tools.js +0 -69
  43. package/dist/task-thread-aggregator.d.ts +0 -34
  44. package/dist/task-thread-aggregator.js +0 -480
  45. package/dist/task-thread-canonical.d.ts +0 -142
  46. package/dist/task-thread-canonical.js +0 -116
@@ -34,6 +34,19 @@
34
34
  <div class="fs-topbar-spacer"></div>
35
35
 
36
36
  <div class="fs-topbar-actions">
37
+ <button
38
+ class="fs-topbar-btn fs-topbar-menu-btn"
39
+ id="fs-btn-navigation"
40
+ type="button"
41
+ title="Open full navigation"
42
+ aria-haspopup="menu"
43
+ aria-expanded="false">
44
+ <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
45
+ <path d="M4 6h16M4 12h16M4 18h16" />
46
+ </svg>
47
+ <span>Menu</span>
48
+ </button>
49
+ <div class="fs-topbar-divider"></div>
37
50
  <button class="fs-topbar-btn" id="fs-btn-save-all" title="Send all tabs from all windows to Comet">Send All</button>
38
51
  <div class="fs-topbar-divider"></div>
39
52
  <button class="fs-topbar-btn" id="fs-btn-import">Import &amp; Export</button>
@@ -142,7 +155,6 @@
142
155
  <!-- Status pills -->
143
156
  <div class="fs-filter-pill-group" id="fs-filter-status-pills">
144
157
  <button class="fs-filter-pill active" data-status="all">All</button>
145
- <button class="fs-filter-pill" data-status="archived">Archived</button>
146
158
  <button class="fs-filter-pill" data-status="pending">Pending</button>
147
159
  <button class="fs-filter-pill" data-status="done">Done</button>
148
160
  </div>
@@ -3898,6 +3898,27 @@ body[data-mode="fullpage"] .fs-topbar {
3898
3898
  background: var(--fs-surface-hover);
3899
3899
  }
3900
3900
 
3901
+ .fs-topbar-menu-btn {
3902
+ border: 1px solid var(--fs-border);
3903
+ background: var(--fs-surface);
3904
+ color: var(--fs-text);
3905
+ font-weight: 600;
3906
+ }
3907
+
3908
+ .fs-topbar-menu-btn[aria-expanded="true"] {
3909
+ color: var(--fs-accent-green);
3910
+ border-color: rgba(92, 184, 92, 0.55);
3911
+ background: rgba(92, 184, 92, 0.1);
3912
+ }
3913
+
3914
+ .fs-topbar-menu-btn svg {
3915
+ flex-shrink: 0;
3916
+ }
3917
+
3918
+ .fs-nav-home-link {
3919
+ border-left: 2px solid var(--fs-accent-green);
3920
+ }
3921
+
3901
3922
  /* ─── App Body (Sidebar + Main) ─── */
3902
3923
 
3903
3924
  .fs-app-body {
@@ -4498,12 +4519,6 @@ body[data-mode="fullpage"] .fs-timeline {
4498
4519
  background: rgba(155, 89, 182, 0.08);
4499
4520
  }
4500
4521
 
4501
- .fs-filter-pill[data-status="archived"].active {
4502
- color: var(--fs-text-muted);
4503
- border-color: var(--fs-text-faint);
4504
- background: var(--fs-surface);
4505
- }
4506
-
4507
4522
  /* Color filter dots */
4508
4523
  .fs-filter-color-dots {
4509
4524
  display: flex;