@amirhosseinnateghi/vibed-mcp 0.1.8 → 0.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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11500,7 +11500,7 @@ async function deleteExperience(client, idOrUrl) {
|
|
|
11500
11500
|
}
|
|
11501
11501
|
|
|
11502
11502
|
// src/index.ts
|
|
11503
|
-
var SERVER_INFO = { name: "vibed", version: "0.1.
|
|
11503
|
+
var SERVER_INFO = { name: "vibed", version: "0.1.9" };
|
|
11504
11504
|
var PROTOCOL_VERSION = "2024-11-05";
|
|
11505
11505
|
var pendingLogin = null;
|
|
11506
11506
|
var str = (v, d = "") => typeof v === "string" ? v : d;
|
|
@@ -11582,7 +11582,7 @@ After the user approves, call vibed_login_wait.`;
|
|
|
11582
11582
|
},
|
|
11583
11583
|
{
|
|
11584
11584
|
name: "vibed_draft",
|
|
11585
|
-
description: "
|
|
11585
|
+
description: "THE DEFAULT for 'make it vibed' / 'publish to vibed': bundle the project and upload it as a PRIVATE draft, returning a hosted, sandboxed PREVIEW link (\u2026/p/<id>/) and a draftKey. Publishes NOTHING \u2014 the link is in no feed, profile, or search; only someone with it can open it. Give the user the preview link, then STOP and let them review \u2014 'make it vibed' means preview first, NOT publish. Only call vibed_publish after the user explicitly tells you to publish this draft. Requires sign-in. BEFORE drafting, make the single HTML file remix-friendly \u2014 a file-top comment, tunable constants (speed/difficulty/colors/text) grouped and labeled near the top, clear names, comments on the non-obvious WHY, readable not minified \u2014 because remix is core to vibed and its AI builder edits THIS file to fork it.",
|
|
11586
11586
|
inputSchema: {
|
|
11587
11587
|
type: "object",
|
|
11588
11588
|
properties: {
|
|
@@ -11613,7 +11613,7 @@ Show it to the user. To publish it, call vibed_publish with draftKey: ${d.draftA
|
|
|
11613
11613
|
},
|
|
11614
11614
|
{
|
|
11615
11615
|
name: "vibed_publish",
|
|
11616
|
-
description: "
|
|
11616
|
+
description: "Make a draft PUBLIC. Publishing is public and hard to undo \u2014 do NOT call this unless the user has EXPLICITLY told you to publish (e.g. 'publish it', 'post it', 'go ahead'). 'make it vibed' is NOT a publish instruction, and 'looks good' is not either \u2014 when unsure, ask and wait. Default flow: vibed_draft \u2192 user reviews the preview \u2192 user says publish \u2192 this. Pass draftKey (from vibed_draft) to promote the previewed draft (preferred); passing path bundles + publishes in one shot and SKIPS the preview \u2014 only do that if the user asked to skip it. Requires sign-in. Confirm the title and tags first. Returns the published URL.",
|
|
11617
11617
|
inputSchema: {
|
|
11618
11618
|
type: "object",
|
|
11619
11619
|
properties: {
|
package/package.json
CHANGED