spine-framework-cortex 0.1.13 → 0.1.15
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/CHANGELOG.md +20 -0
- package/components/CortexSidebar.tsx +27 -0
- package/functions/custom_funnel-signal.ts +290 -539
- package/functions/webhook-handlers.ts +1 -0
- package/index.tsx +10 -0
- package/package.json +1 -1
- package/pages/crm/AccountDetailPage.tsx +192 -146
- package/pages/intelligence/IntelligencePage.tsx +31 -24
- package/pages/ops/AuditFunnelPage.tsx +191 -0
- package/pages/ops/CommandCenterPage.tsx +377 -0
- package/pages/ops/InstallFunnelPage.tsx +226 -0
- package/seed/integrations.json +26 -0
- package/seed/pipelines.json +34 -5
- package/seed/triggers.json +44 -4
- package/seed/types.json +59 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.1.15] — 2026-06-09
|
|
8
|
+
- Fixed `integrations.json` handler config format for `funnel-signal-mar` and `funnel-signal-use` integrations
|
|
9
|
+
- Removed orphaned `on_funnel_signal_created` trigger from `triggers.json` — trigger engine requires `pipeline_id` and cannot directly invoke custom functions
|
|
10
|
+
- Removed orphaned `funnel-scoring-trigger` handler registration from `webhook-handlers.ts`
|
|
11
|
+
- Deleted orphaned `custom_funnel-scoring-trigger.ts` file
|
|
12
|
+
- Restored `custom_funnel-signal.ts` as complete inline handler with full scoring, account updates, link creation, and queue evaluation
|
|
13
|
+
|
|
14
|
+
## [0.1.14] — 2026-06-09
|
|
15
|
+
- Added **Command Center** page (`/ops/command-center`) — KPI strip, Hot Opportunities table, Audit/Install funnel tab strip, funnel health panels
|
|
16
|
+
- Added **Audit Funnel** page (`/ops/audit-funnel`) — account list filtered to `funnel-ai-audit` pipeline, sorted by signal score, with recommended offer logic
|
|
17
|
+
- Added **Install Funnel** page (`/ops/install-funnel`) — account list filtered to `funnel-technical` pipeline, filter tabs (All / Unclaimed / Claimed / Hot)
|
|
18
|
+
- Added **Revenue** sidebar group to `CortexSidebar` with Command Center, Audit Funnel, and Install Funnel nav items
|
|
19
|
+
- Enhanced **Account Detail Funnel tab** — replaced static rating panel with live Signal Timeline, per-pipeline Signal Score Breakdown, and Identity/Claim Status panel
|
|
20
|
+
|
|
21
|
+
## [0.1.13] — 2026-06-08
|
|
22
|
+
- Updated `LICENSE.md` to full Spine Framework Internal Use License 1.0.0
|
|
23
|
+
|
|
24
|
+
## [0.1.12] — 2026-06-08
|
|
25
|
+
- Added `CHANGELOG.md`
|
|
26
|
+
|
|
7
27
|
## [0.1.11] — 2026-06-08
|
|
8
28
|
- Updated README to consistently use "Spine Framework" instead of "Spine"
|
|
9
29
|
- Added `publish:next` and `publish:promote` scripts
|
|
@@ -21,6 +21,9 @@ import {
|
|
|
21
21
|
Handshake,
|
|
22
22
|
Activity,
|
|
23
23
|
Heart,
|
|
24
|
+
Flame,
|
|
25
|
+
ScanSearch,
|
|
26
|
+
Download,
|
|
24
27
|
} from "lucide-react"
|
|
25
28
|
import {
|
|
26
29
|
Sidebar,
|
|
@@ -54,6 +57,12 @@ export function CortexSidebar({ ...props }: React.ComponentProps<typeof Sidebar>
|
|
|
54
57
|
{ title: "Activity", url: `${base}/crm/activity`, icon: Activity },
|
|
55
58
|
]
|
|
56
59
|
|
|
60
|
+
const revenueItems = [
|
|
61
|
+
{ title: "Command Center", url: `${base}/ops/command-center`, icon: Flame },
|
|
62
|
+
{ title: "Audit Funnel", url: `${base}/ops/audit-funnel`, icon: ScanSearch },
|
|
63
|
+
{ title: "Install Funnel", url: `${base}/ops/install-funnel`, icon: Download },
|
|
64
|
+
]
|
|
65
|
+
|
|
57
66
|
const opsItems = [
|
|
58
67
|
{ title: "Support", url: `${base}/support`, icon: Headphones },
|
|
59
68
|
{ title: "Community", url: `${base}/community`, icon: Users },
|
|
@@ -103,6 +112,24 @@ export function CortexSidebar({ ...props }: React.ComponentProps<typeof Sidebar>
|
|
|
103
112
|
</SidebarGroupContent>
|
|
104
113
|
</SidebarGroup>
|
|
105
114
|
|
|
115
|
+
<SidebarGroup>
|
|
116
|
+
<SidebarGroupLabel>Revenue</SidebarGroupLabel>
|
|
117
|
+
<SidebarGroupContent>
|
|
118
|
+
<SidebarMenu>
|
|
119
|
+
{revenueItems.map((item) => (
|
|
120
|
+
<SidebarMenuItem key={item.title}>
|
|
121
|
+
<SidebarMenuButton asChild isActive={isActive(item.url)}>
|
|
122
|
+
<Link to={item.url}>
|
|
123
|
+
<item.icon className="h-4 w-4" />
|
|
124
|
+
<span>{item.title}</span>
|
|
125
|
+
</Link>
|
|
126
|
+
</SidebarMenuButton>
|
|
127
|
+
</SidebarMenuItem>
|
|
128
|
+
))}
|
|
129
|
+
</SidebarMenu>
|
|
130
|
+
</SidebarGroupContent>
|
|
131
|
+
</SidebarGroup>
|
|
132
|
+
|
|
106
133
|
<SidebarGroup>
|
|
107
134
|
<SidebarGroupLabel>Operations</SidebarGroupLabel>
|
|
108
135
|
<SidebarGroupContent>
|