@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.
- package/README.md +12 -1
- package/dist/binding-reaper.d.ts +46 -0
- package/dist/binding-reaper.js +73 -0
- package/dist/http-server.js +121 -0
- package/dist/index.js +310 -6
- package/dist/project-config.d.ts +46 -0
- package/dist/project-config.js +166 -0
- package/dist/tab-groups.d.ts +21 -1
- package/dist/tab-groups.js +184 -0
- package/dist/window-bindings.d.ts +48 -0
- package/dist/window-bindings.js +85 -0
- package/extension/background.js +38 -17
- package/extension/manifest.json +16 -1
- package/extension/perplexity-capability-manifest.json +1181 -0
- package/extension/perplexity-capability-manifest.schema.json +142 -0
- package/extension/session-logic.js +696 -25
- package/extension/session-manager.html +13 -1
- package/extension/sidepanel.css +21 -6
- package/extension/sidepanel.js +598 -68
- package/package.json +1 -1
- package/dist/discovery/capability-entry.d.ts +0 -215
- package/dist/discovery/capability-entry.js +0 -13
- package/dist/discovery/description-template.d.ts +0 -40
- package/dist/discovery/description-template.js +0 -61
- package/dist/discovery/golden-queries.fixture.d.ts +0 -22
- package/dist/discovery/golden-queries.fixture.js +0 -137
- package/dist/discovery/mcp-source.d.ts +0 -38
- package/dist/discovery/mcp-source.js +0 -70
- package/dist/discovery/metadata-completeness.d.ts +0 -48
- package/dist/discovery/metadata-completeness.js +0 -83
- package/dist/discovery/registry.d.ts +0 -35
- package/dist/discovery/registry.js +0 -35
- package/dist/discovery/safety.d.ts +0 -44
- package/dist/discovery/safety.js +0 -59
- package/dist/discovery/schema-validator.d.ts +0 -36
- package/dist/discovery/schema-validator.js +0 -257
- package/dist/discovery/source-error.d.ts +0 -47
- package/dist/discovery/source-error.js +0 -95
- package/dist/discovery/tool-meta.d.ts +0 -41
- package/dist/discovery/tool-meta.js +0 -229
- package/dist/discovery/virtual-tools.d.ts +0 -20
- package/dist/discovery/virtual-tools.js +0 -69
- package/dist/task-thread-aggregator.d.ts +0 -34
- package/dist/task-thread-aggregator.js +0 -480
- package/dist/task-thread-canonical.d.ts +0 -142
- 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 & 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>
|
package/extension/sidepanel.css
CHANGED
|
@@ -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;
|