spine-framework-cortex 0.1.9 → 0.1.11

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 (3) hide show
  1. package/README.md +54 -12
  2. package/manifest.json +12 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,27 +1,69 @@
1
1
  # spine-framework-cortex
2
2
 
3
- AI-powered support, CRM, and knowledge base app for Spine Framework.
3
+ **We're building Spine Framework in the open.** The source is visible, the roadmap is public, and we share what we learn along the way. That said, Spine Framework is not open source — commercial use requires a license. See [LICENSE.md](./LICENSE.md) for details.
4
+
5
+ ---
6
+
7
+ Cortex is an AI-powered internal workspace app for Spine Framework. It gives your team a unified interface for CRM, customer support, knowledge base management, community, and AI-assisted intelligence — all wired into the same data model your portal customers interact with.
8
+
9
+ ## Requirements
10
+
11
+ - [Spine Framework](https://www.npmjs.com/package/spine-framework) `>=0.1.0`
12
+ - A Spine Framework project initialized with `npx spine-framework init`
4
13
 
5
14
  ## Installation
6
15
 
7
16
  ```bash
8
- npm install spine-framework-cortex
17
+ npx spine-framework install-app spine-framework-cortex@latest
9
18
  ```
10
19
 
11
- ## Usage
20
+ This seeds the required roles, types, and configuration into your database and registers the app with Spine Framework's navigation system.
21
+
22
+ ## Features
23
+
24
+ - **CRM** — accounts, contacts, deals, health scoring, and activity tracking
25
+ - **Support** — ticket queue with AI triage and case resolution tracking
26
+ - **Knowledge base** — article management with AI-powered generation and ingestion
27
+ - **Community** — internal view of discussion threads and Q&A
28
+ - **Courses** — course and lesson content management
29
+ - **Intelligence** — visitor tracking, funnel signal processing, and opportunity queue
30
+
31
+ ## Routes
32
+
33
+ | Path | Description |
34
+ |------|-------------|
35
+ | `/cortex/dashboard` | Cortex home |
36
+ | `/cortex/crm` | CRM overview |
37
+ | `/cortex/crm/accounts` | Account list |
38
+ | `/cortex/crm/accounts/:id` | Account detail |
39
+ | `/cortex/crm/contacts` | Contacts |
40
+ | `/cortex/crm/deals` | Deals |
41
+ | `/cortex/crm/deals/:id` | Deal detail |
42
+ | `/cortex/crm/health` | Health scores |
43
+ | `/cortex/crm/activity` | Activity feed |
44
+ | `/cortex/support` | Support queue |
45
+ | `/cortex/support/:id` | Ticket detail |
46
+ | `/cortex/community` | Community |
47
+ | `/cortex/kb` | Knowledge base |
48
+ | `/cortex/kb/editor` | KB editor |
49
+ | `/cortex/kb/ingestion` | KB ingestion |
50
+ | `/cortex/courses` | Courses |
51
+ | `/cortex/intelligence` | Intelligence |
52
+
53
+ ## Uninstalling
12
54
 
13
55
  ```bash
14
- npx spine-framework install-app cortex
56
+ npx spine-framework uninstall-app spine-framework-cortex
15
57
  ```
16
58
 
17
- ## Features
59
+ ## License
18
60
 
19
- - Knowledge Base (KB) management with AI-powered article generation
20
- - Support ticket routing with AI triage
21
- - Anonymous visitor tracking and funnel signal processing
22
- - Opportunity queue for high-engagement prospects
23
- - Case analysis and resolution tracking
61
+ Spine Framework Cortex is **source-available, free for internal use**. Commercial use requires a separate license.
24
62
 
25
- ## License
63
+ See [LICENSE.md](./LICENSE.md) for full terms.
64
+
65
+ For commercial licensing: [spine-framework.com](https://spine-framework.com) · webmaster@spine-framework.com
66
+
67
+ ---
26
68
 
27
- MIT
69
+ Copyright © 2026 Dahl Ventures Inc. All rights reserved.
package/manifest.json CHANGED
@@ -5,7 +5,6 @@
5
5
  "version": "1.0.0",
6
6
  "required_roles": ["support"],
7
7
  "routes": [
8
- "/cortex",
9
8
  "/cortex/dashboard",
10
9
  "/cortex/crm",
11
10
  "/cortex/crm/accounts",
@@ -75,6 +74,18 @@
75
74
  "order": 7
76
75
  }
77
76
  ],
77
+ "changelog": [
78
+ {
79
+ "version": "1.0.0",
80
+ "notes": [
81
+ "Root-relative nav paths for subdomain deployment model",
82
+ "Prefix-aware sidebar navigation via useCurrentApp()",
83
+ "Prefix-aware breadcrumbs with Navigate index redirect",
84
+ "FilterTab replaces FunnelTab (lucide Filter icon)",
85
+ "Initial release"
86
+ ]
87
+ }
88
+ ],
78
89
  "features": ["crm", "support", "community", "kb", "courses", "intelligence"],
79
90
  "dependencies": ["items", "accounts", "pipelines", "integrations"],
80
91
  "entry_point": "./index.tsx",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spine-framework-cortex",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "description": "Cortex — AI-powered support, CRM, and knowledge base app for Spine Framework",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",