@seldonframe/mcp 1.1.7 → 1.1.9
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.
|
|
3
|
+
"version": "1.1.9",
|
|
4
|
+
"description": "MCP server for SeldonFrame — AI-native Business OS platform. v1.1.9: Output contract + validator (the Karpathy move). After 10+ test runs each surfacing a different broken output surface (CTA href swap, missing booking availability, generic intake title, fabricated stats, coaching FAQ leak), v1.1.9 makes the eval the product. (1) New post-creation validator (lib/workspace/output-contract-validator.ts) inspects ~16 surfaces: CTA hrefs, marketing-string leaks, coaching-FAQ leaks, pipeline stages, personality vertical, workspace timezone, booking template + availability, intake title + service options, theme CSS, hero review proof, services heading, icon diversity. Runs after every workspace creation as a non-blocking observability layer; logs one structured JSON line to stdout per success and per failure to stderr so Vercel function logs become queryable for failure patterns across personalities. (2) CTA hrefs now structurally hardcoded in seedLandingFromSoul: primary ALWAYS /book, secondary ALWAYS /intake. Fixes the historical swap bug where LOCAL_SERVICE_PACK + SAAS_PACK had primary→/intake. (3) New per-personality intake title (CRMPersonality.intake.title) so a med spa workspace ships 'Request a Treatment Consultation' instead of generic 'Tell us about your project'. Populated for all 6 verticals (hvac, legal, dental, coaching, agency, medspa). (4) Build-time personality-completeness checker (lib/crm/personality-completeness.ts) gates CI on every personality having required fields: intake.title, content_templates.faqs (≥3), trust_badges (=4), pipeline.stages (≥4), email intake field, etc. Adding a new niche means filling every field — forgetting one breaks the build. Coaching + agency personalities backfilled with content_templates as part of this gate. ⚠️ BACKEND REDEPLOY REQUIRED — npm package is just tool definitions; backend at app.seldonframe.com must be redeployed for these fixes to land.",
|
|
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.9";
|
|
12
12
|
|
|
13
13
|
export const WELCOME_MARKDOWN = `# SeldonFrame — create a real Business OS in one conversation
|
|
14
14
|
|