@seldonframe/mcp 1.1.2 → 1.1.3
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/package.json +2 -2
- package/src/welcome.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seldonframe/mcp",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "MCP server for SeldonFrame — AI-native Business OS platform. One command creates a real, hosted workspace with a website, booking page, intake form, CRM, and AI agents. v1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
|
+
"description": "MCP server for SeldonFrame — AI-native Business OS platform. One command creates a real, hosted workspace with a website, booking page, intake form, CRM, and AI agents. v1.1.3: fixes the personality-mismatch bug in create_full_workspace where dental / legal / agency workspaces seeded the wrong CRM personality (and wrong pipeline stages, intake fields, booking duration). Root cause: the orchestrator passed `industry: null` to the inner createAnonymousWorkspace, losing the industry hint, so the inner classifier fell back to the BUSINESS_TYPE_FALLBACK chain → coaching for any vertical whose keywords only live in the personality bank (dental, legal, agency). Fix: pass the industry hint through to the inner classifier so the inner personality decision matches the outer one. Plus a defensive override that re-writes settings.crmPersonality + reseeds the default pipeline stages to the orchestrator's classified personality if any future regression reintroduces the mismatch.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"seldonframe-mcp": "src/index.js"
|
package/src/welcome.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
// stripped. `create_full_workspace` is the only workspace-creation
|
|
9
9
|
// path mentioned anywhere in this briefing.
|
|
10
10
|
|
|
11
|
-
export const VERSION = "1.1.
|
|
11
|
+
export const VERSION = "1.1.3";
|
|
12
12
|
|
|
13
13
|
export const WELCOME_MARKDOWN = `# SeldonFrame — create a real Business OS in one conversation
|
|
14
14
|
|