@vibecodr/cli 0.2.3 → 0.2.5
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 +14 -5
- package/dist/commands/upload.js +1 -1
- package/docs/commands.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 0.2.
|
|
4
|
-
|
|
5
|
-
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.2.5
|
|
4
|
+
|
|
5
|
+
- refresh release lockfile coverage before publishing the CLI
|
|
6
|
+
|
|
7
|
+
## 0.2.4
|
|
8
|
+
|
|
9
|
+
- clarify staged ZIP upload output so larger projects can move into Vibecodr's async heavy import lane automatically
|
|
10
|
+
- keep worker-gateway integration fixtures aligned with pulse compute quota fields
|
|
11
|
+
|
|
12
|
+
## 0.2.2
|
|
13
|
+
|
|
14
|
+
- show command-specific help for nested `vibecodr pulse <command> --help|-h|-help` requests
|
|
6
15
|
|
|
7
16
|
## 0.2.1
|
|
8
17
|
|
package/dist/commands/upload.js
CHANGED
|
@@ -257,7 +257,7 @@ export async function runUploadCommand(args, context) {
|
|
|
257
257
|
}, [
|
|
258
258
|
`Uploaded and verified ${created.fileName}.`,
|
|
259
259
|
input.kind === "source_zip"
|
|
260
|
-
? `Use uploadId ${completed.uploadId} with payload.importMode="staged_upload".`
|
|
260
|
+
? `Use uploadId ${completed.uploadId} with payload.importMode="staged_upload"; larger projects will move to Vibecodr's heavy import lane automatically.`
|
|
261
261
|
: input.kind === "cover_image"
|
|
262
262
|
? `Use uploadId ${completed.uploadId} with thumbnailStagedUpload.uploadId.`
|
|
263
263
|
: `Use uploadId ${completed.uploadId} with an avatar image promotion flow.`,
|
package/docs/commands.md
CHANGED
|
@@ -76,7 +76,7 @@ Syntax:
|
|
|
76
76
|
|
|
77
77
|
Stages a local ZIP or image through Vibecodr's API-owned upload session flow. The CLI asks the MCP gateway for a short-lived direct R2 PUT URL, uploads the bytes directly to R2, completes server-side verification, and prints safe identifiers only.
|
|
78
78
|
|
|
79
|
-
ZIP uploads print a `quickPublishPayload` snippet using `payload.importMode: "staged_upload"`. Cover image uploads print a `thumbnailStagedUpload` snippet that can be passed to publish metadata tools. Avatar image uploads print an `avatarStagedUpload` identifier for avatar promotion flows.
|
|
79
|
+
ZIP uploads print a `quickPublishPayload` snippet using `payload.importMode: "staged_upload"`. The snippet asks Vibecodr to use the async staged-upload import path so larger projects can move to the heavy import lane automatically instead of making the CLI guess. Cover image uploads print a `thumbnailStagedUpload` snippet that can be passed to publish metadata tools. Avatar image uploads print an `avatarStagedUpload` identifier for avatar promotion flows.
|
|
80
80
|
|
|
81
81
|
Cover images support PNG, JPEG, WebP, and AVIF. Avatar images support PNG, JPEG, WebP, and GIF.
|
|
82
82
|
|