@hubfluencer/mcp 0.16.0 → 0.17.0
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/README.md +102 -45
- package/dist/index.js +13130 -7921
- package/package.json +12 -6
- package/server.json +56 -0
- package/skill/hubfluencer-create/SKILL.md +169 -0
- package/skill/hubfluencer-create/references/full-guide.md +228 -0
- package/src/client.ts +2 -2
- package/src/core.ts +303 -431
- package/src/doctor.ts +96 -0
- package/src/generation-summary.ts +262 -0
- package/src/index.ts +1003 -278
- package/src/output-schemas.ts +85 -12
- package/src/polling.ts +18 -5
- package/src/skill-installer.ts +100 -0
- package/src/tool-profile.ts +93 -0
package/src/index.ts
CHANGED
|
@@ -55,6 +55,7 @@ import {
|
|
|
55
55
|
makeVideoAutopilotKey,
|
|
56
56
|
makeVideoEditorCreateKey,
|
|
57
57
|
type NormalizedStatus,
|
|
58
|
+
normalizeFactoryIndexProject,
|
|
58
59
|
normalizeStatus,
|
|
59
60
|
resolveSavePath,
|
|
60
61
|
sliderCreateKey,
|
|
@@ -64,14 +65,21 @@ import {
|
|
|
64
65
|
validateLanguage,
|
|
65
66
|
validateProductPrompt,
|
|
66
67
|
} from "./core.js";
|
|
68
|
+
import { runDoctor } from "./doctor.js";
|
|
69
|
+
import {
|
|
70
|
+
type GenerationSummary,
|
|
71
|
+
generationSummarySchema,
|
|
72
|
+
} from "./generation-summary.js";
|
|
67
73
|
import { runLogin } from "./login.js";
|
|
68
74
|
import {
|
|
69
75
|
createCampaignOutput,
|
|
70
76
|
createDraftOutput,
|
|
71
77
|
createEditorOutput,
|
|
72
78
|
downloadResultOutput,
|
|
79
|
+
genericToolOutput,
|
|
73
80
|
getCampaignPackOutput,
|
|
74
81
|
getCreditsOutput,
|
|
82
|
+
getEditorOutput,
|
|
75
83
|
getRecommendationsOutput,
|
|
76
84
|
getSeriesDashboardOutput,
|
|
77
85
|
getSliderOutput,
|
|
@@ -115,6 +123,12 @@ import {
|
|
|
115
123
|
summarizeSeries,
|
|
116
124
|
validateScheduledPostCopy,
|
|
117
125
|
} from "./series-calendar.js";
|
|
126
|
+
import { runInstallSkill } from "./skill-installer.js";
|
|
127
|
+
import {
|
|
128
|
+
profileFromArgs,
|
|
129
|
+
toolEnabled,
|
|
130
|
+
withoutProfileArgs,
|
|
131
|
+
} from "./tool-profile.js";
|
|
118
132
|
import {
|
|
119
133
|
CATALOG_ASSET_EXTS,
|
|
120
134
|
closePreparedUploadFile,
|
|
@@ -155,6 +169,115 @@ async function fetchStatus(
|
|
|
155
169
|
return normalizeStatus(kind, slug, asRecord(res).data);
|
|
156
170
|
}
|
|
157
171
|
|
|
172
|
+
type ProductKind = "editor" | "short";
|
|
173
|
+
|
|
174
|
+
interface ObservedGenerationAction {
|
|
175
|
+
state: Record<string, unknown>;
|
|
176
|
+
summary: GenerationSummary;
|
|
177
|
+
stepKey: string | null;
|
|
178
|
+
completedStatus?: NormalizedStatus;
|
|
179
|
+
activeReplay?: true;
|
|
180
|
+
settledReplay?: true;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Reads and validates the current product-owned action immediately before a
|
|
185
|
+
* write. The summary is an authority observation, not a bearer capability:
|
|
186
|
+
* the API rechecks all of these fences under its command lock.
|
|
187
|
+
*/
|
|
188
|
+
async function observedGenerationAction(
|
|
189
|
+
client: HubfluencerClient,
|
|
190
|
+
product: ProductKind,
|
|
191
|
+
slug: string,
|
|
192
|
+
actionType: string,
|
|
193
|
+
options: {
|
|
194
|
+
workflows?: readonly string[];
|
|
195
|
+
statuses?: readonly string[];
|
|
196
|
+
requireStep?: boolean;
|
|
197
|
+
allowIdleAuthority?: boolean;
|
|
198
|
+
recoverCompleted?: boolean;
|
|
199
|
+
recoverActive?: boolean;
|
|
200
|
+
recoverCancelled?: boolean;
|
|
201
|
+
} = {},
|
|
202
|
+
): Promise<ObservedGenerationAction> {
|
|
203
|
+
const path = product === "short" ? `/shorts/${slug}` : `/editor/${slug}`;
|
|
204
|
+
const response = await client.get<{ data: unknown }>(path);
|
|
205
|
+
const state = asRecord(asRecord(response).data);
|
|
206
|
+
const parsed = generationSummarySchema.safeParse(state.generation_summary);
|
|
207
|
+
if (!parsed.success) {
|
|
208
|
+
throw new Error(
|
|
209
|
+
`The Hubfluencer ${product} response did not contain a valid generation_summary; refresh before continuing.`,
|
|
210
|
+
);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
const summary = parsed.data;
|
|
214
|
+
if (options.recoverCompleted === true) {
|
|
215
|
+
const completedStatus = normalizeStatus(product, slug, state);
|
|
216
|
+
if (completedStatus.ready && completedStatus.video_url) {
|
|
217
|
+
return { state, summary, stepKey: null, completedStatus };
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
const idleAuthority =
|
|
221
|
+
options.allowIdleAuthority === true &&
|
|
222
|
+
summary.status === "idle" &&
|
|
223
|
+
summary.workflow === null &&
|
|
224
|
+
summary.workflow_version === null &&
|
|
225
|
+
summary.run_id === null &&
|
|
226
|
+
summary.revision === null;
|
|
227
|
+
if (
|
|
228
|
+
options.workflows &&
|
|
229
|
+
!idleAuthority &&
|
|
230
|
+
(!summary.workflow || !options.workflows.includes(summary.workflow))
|
|
231
|
+
) {
|
|
232
|
+
throw new Error(
|
|
233
|
+
`The current ${product} workflow does not authorize ${actionType}; refresh before continuing.`,
|
|
234
|
+
);
|
|
235
|
+
}
|
|
236
|
+
if (options.statuses && !options.statuses.includes(summary.status)) {
|
|
237
|
+
throw new Error(
|
|
238
|
+
`The current ${product} generation status does not authorize ${actionType}; refresh before continuing.`,
|
|
239
|
+
);
|
|
240
|
+
}
|
|
241
|
+
const canonicalAuthority =
|
|
242
|
+
typeof summary.run_id === "string" &&
|
|
243
|
+
Number.isInteger(summary.revision) &&
|
|
244
|
+
(summary.revision as number) >= 0;
|
|
245
|
+
if (!canonicalAuthority && !idleAuthority) {
|
|
246
|
+
throw new Error(
|
|
247
|
+
`The current ${product} generation authority is missing its run or revision fence; refresh before continuing.`,
|
|
248
|
+
);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
if (
|
|
252
|
+
options.recoverActive === true &&
|
|
253
|
+
(summary.status === "queued" || summary.status === "running")
|
|
254
|
+
) {
|
|
255
|
+
return { state, summary, stepKey: null, activeReplay: true };
|
|
256
|
+
}
|
|
257
|
+
if (options.recoverCancelled === true && summary.status === "cancelled") {
|
|
258
|
+
return { state, summary, stepKey: null, settledReplay: true };
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
const action = summary.available_actions.find(
|
|
262
|
+
(candidate) => candidate.type === actionType,
|
|
263
|
+
);
|
|
264
|
+
if (!action) {
|
|
265
|
+
throw new Error(
|
|
266
|
+
`The server does not currently advertise ${actionType} for this ${product}; refresh before continuing.`,
|
|
267
|
+
);
|
|
268
|
+
}
|
|
269
|
+
if (
|
|
270
|
+
options.requireStep &&
|
|
271
|
+
(typeof action.step_key !== "string" || action.step_key.length === 0)
|
|
272
|
+
) {
|
|
273
|
+
throw new Error(
|
|
274
|
+
`The advertised ${actionType} action is missing its step fence; refresh before continuing.`,
|
|
275
|
+
);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
return { state, summary, stepKey: action.step_key };
|
|
279
|
+
}
|
|
280
|
+
|
|
158
281
|
async function editorAutopilotQuote(
|
|
159
282
|
client: HubfluencerClient,
|
|
160
283
|
slug: string,
|
|
@@ -379,10 +502,13 @@ function ok(payload: unknown, links: ResourceLink[] = []) {
|
|
|
379
502
|
const result: {
|
|
380
503
|
content: typeof content;
|
|
381
504
|
structuredContent?: Record<string, unknown>;
|
|
382
|
-
} = {
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
505
|
+
} = {
|
|
506
|
+
content,
|
|
507
|
+
structuredContent:
|
|
508
|
+
payload && typeof payload === "object" && !Array.isArray(payload)
|
|
509
|
+
? (payload as Record<string, unknown>)
|
|
510
|
+
: { value: payload },
|
|
511
|
+
};
|
|
386
512
|
return result;
|
|
387
513
|
}
|
|
388
514
|
|
|
@@ -427,21 +553,18 @@ function errMessage(e: unknown): string {
|
|
|
427
553
|
* silently no-op'ing the purchase (no credit spent, no assists added) while
|
|
428
554
|
* still returning 200. Snapshotting means a transport retry of the SAME unlock
|
|
429
555
|
* replays safely (no double-charge), but a DISTINCT "buy another batch" call
|
|
430
|
-
* gets a fresh key and executes.
|
|
431
|
-
* the
|
|
556
|
+
* gets a fresh key and executes. If the snapshot cannot be read, fail before
|
|
557
|
+
* the paid POST: a nonce fallback cannot distinguish a transport retry from a
|
|
558
|
+
* genuine new purchase and could double-charge after an accepted/lost response.
|
|
432
559
|
*/
|
|
433
560
|
async function unlockKey(client: HubfluencerClient): Promise<string> {
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
);
|
|
442
|
-
} catch {
|
|
443
|
-
return "";
|
|
444
|
-
}
|
|
561
|
+
const res = await client.get<{ data: unknown }>("/ai-assists");
|
|
562
|
+
const d = asRecord(asRecord(res).data);
|
|
563
|
+
return idemKey(
|
|
564
|
+
"unlock-ai-assists",
|
|
565
|
+
String(d.used ?? ""),
|
|
566
|
+
String(d.bonus ?? ""),
|
|
567
|
+
);
|
|
445
568
|
}
|
|
446
569
|
|
|
447
570
|
/**
|
|
@@ -450,25 +573,17 @@ async function unlockKey(client: HubfluencerClient): Promise<string> {
|
|
|
450
573
|
* deterministic, so replaying an identical (narration, voice) call is correct
|
|
451
574
|
* and free, while regenerating after the narration or voice changes gets a
|
|
452
575
|
* fresh key and actually re-runs — a fixed slug+voice key would replay stale
|
|
453
|
-
* audio for 24h after a narration edit.
|
|
576
|
+
* audio for 24h after a narration edit. If the input snapshot cannot be read,
|
|
577
|
+
* fail before the paid POST rather than minting a retry-unstable nonce.
|
|
454
578
|
*/
|
|
455
579
|
async function voiceKey(
|
|
456
580
|
client: HubfluencerClient,
|
|
457
581
|
slug: string,
|
|
458
582
|
voiceId: string,
|
|
459
583
|
): Promise<string> {
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
return idemKey(
|
|
464
|
-
"gen-voice",
|
|
465
|
-
slug,
|
|
466
|
-
voiceId,
|
|
467
|
-
String(d.narration_script ?? ""),
|
|
468
|
-
);
|
|
469
|
-
} catch {
|
|
470
|
-
return "";
|
|
471
|
-
}
|
|
584
|
+
const res = await client.get<{ data: unknown }>(`/editor/${slug}`);
|
|
585
|
+
const d = asRecord(asRecord(res).data);
|
|
586
|
+
return idemKey("gen-voice", slug, voiceId, String(d.narration_script ?? ""));
|
|
472
587
|
}
|
|
473
588
|
|
|
474
589
|
/**
|
|
@@ -497,7 +612,7 @@ async function withAssist<T>(
|
|
|
497
612
|
return await fn();
|
|
498
613
|
} catch (e) {
|
|
499
614
|
const he = e as HubfluencerError;
|
|
500
|
-
if (
|
|
615
|
+
if (he?.status !== 429) throw e;
|
|
501
616
|
if (!autoUnlock) throw e;
|
|
502
617
|
// One unlock (1 credit → +10 assists), then one retry. A 402 here means
|
|
503
618
|
// the account is out of credits — let it propagate to a clean fail().
|
|
@@ -633,6 +748,8 @@ const WRITE = {
|
|
|
633
748
|
// call (the per-tool `description`s carry the specifics). Kept concise: the two
|
|
634
749
|
// altitudes (one-shot asset vs. the full delegate-my-content-operation loop),
|
|
635
750
|
// money, how waiting/resuming works, and the local-file sandbox.
|
|
751
|
+
const activeToolProfile = profileFromArgs(process.argv.slice(2));
|
|
752
|
+
|
|
636
753
|
const SERVER_INSTRUCTIONS = `Hubfluencer turns a prompt — or a whole product page — into finished, post-ready vertical videos and image carousels, and can run the surrounding content operation (plan → draft → review → schedule → measure → repeat).
|
|
637
754
|
|
|
638
755
|
MAKE ONE ASSET (simplest)
|
|
@@ -655,13 +772,16 @@ CREDITS (spent server-side; each tool prices before charging — see its descrip
|
|
|
655
772
|
- AI ASSISTS (all generate_*/enhance/suggest/plan/hook tools) draw a FREE daily quota (20/day), NOT credits. On 429, set auto_unlock:true to spend 1 credit for +10 assists (retried once), or write the copy yourself and use the set_* tools.
|
|
656
773
|
|
|
657
774
|
WAITING & RESUMING
|
|
658
|
-
-
|
|
775
|
+
- Every Editor and Short read includes a non-null generation_summary. Treat its status, timing, blockers, and available_actions as the only lifecycle authority; product and latest-render fields are authoring or delivery details, never competing control state. Poll only while generation_summary.timing.poll_after_ms is a positive integer; null means stop. Invoke only an action advertised by generation_summary.available_actions, carrying every route fence required by that product command. wait_for_completion enforces those timing hints within a budget capped at 280s; when timed_out, call it again with the same slug. A terminal summary can require a start/retry/input/review action instead of more polling; download only when download_result is advertised.
|
|
776
|
+
- Editor delivery freshness is separate from lifecycle authority: after a completed summary, raw render/scene/audio staleness forces normalized stale:true, ready:false, and stage:"editing_required". The retained MP4 is historical; re-render before delivery. list_projects factory rows are lightweight mixed-kind discovery records without generation_summary, so use get_status/get_editor before acting.
|
|
659
777
|
- Creates and charged actions are idempotency-keyed: a transport retry is safe; a genuine re-run after a terminal FAILURE restarts rather than replaying the dead attempt.
|
|
660
778
|
|
|
661
779
|
LOCAL FILES (sandboxed)
|
|
662
780
|
- Reads (upload_video / product / logo / closing / poster) are confined to HUBFLUENCER_INPUT_DIR (default: cwd); writes (save_path on wait_for_completion / download_result) are confined to HUBFLUENCER_OUTPUT_DIR (default: cwd), .mp4 only. Paths outside the base are refused.
|
|
663
781
|
|
|
664
|
-
AUTH: set HUBFLUENCER_API_TOKEN (Settings → Access tokens) or run \`npx -y @hubfluencer/mcp login\`. HUBFLUENCER_BASE_URL overrides the API host; HUBFLUENCER_CREDENTIALS overrides the device-link credentials path
|
|
782
|
+
AUTH: set HUBFLUENCER_API_TOKEN (Settings → Access tokens) or run \`npx -y @hubfluencer/mcp@${VERSION} login\`. HUBFLUENCER_BASE_URL overrides the API host; HUBFLUENCER_CREDENTIALS overrides the device-link credentials path.
|
|
783
|
+
|
|
784
|
+
TOOL PROFILE: ${activeToolProfile}. The default full profile preserves every workflow. The opt-in creator profile keeps the high-level create, iterate, recovery, and delivery tools visible so tools/list uses much less agent context; switch with --profile creator or HUBFLUENCER_MCP_PROFILE=creator.`;
|
|
665
785
|
|
|
666
786
|
const server = new McpServer(
|
|
667
787
|
{ name: "hubfluencer", version: VERSION },
|
|
@@ -678,9 +798,69 @@ type LooseRegister = (
|
|
|
678
798
|
config: object,
|
|
679
799
|
handler: (...args: never[]) => unknown,
|
|
680
800
|
) => void;
|
|
681
|
-
const
|
|
801
|
+
const registerToolRaw = server.registerTool.bind(
|
|
682
802
|
server,
|
|
683
803
|
) as unknown as LooseRegister;
|
|
804
|
+
const registerTool: LooseRegister = (name, config, handler) => {
|
|
805
|
+
if (!toolEnabled(activeToolProfile, name)) return;
|
|
806
|
+
const toolConfig = config as Record<string, unknown>;
|
|
807
|
+
registerToolRaw(
|
|
808
|
+
name,
|
|
809
|
+
toolConfig.outputSchema
|
|
810
|
+
? toolConfig
|
|
811
|
+
: { ...toolConfig, outputSchema: genericToolOutput },
|
|
812
|
+
handler,
|
|
813
|
+
);
|
|
814
|
+
};
|
|
815
|
+
|
|
816
|
+
function serverStoppedPolling(kind: Kind, status: NormalizedStatus): boolean {
|
|
817
|
+
return (
|
|
818
|
+
(kind === "editor" || kind === "short") &&
|
|
819
|
+
status.ready === false &&
|
|
820
|
+
!(typeof status.poll_after_ms === "number" && status.poll_after_ms > 0)
|
|
821
|
+
);
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
function makeVideoPollingStopNote(status: NormalizedStatus): string {
|
|
825
|
+
const actions = status.available_actions ?? [];
|
|
826
|
+
const advertised =
|
|
827
|
+
actions.length > 0
|
|
828
|
+
? `The server advertises only: ${actions.join(", ")}. Follow one of those exact actions before polling again.`
|
|
829
|
+
: "The server did not advertise a next action. Inspect generation_summary.blockers before doing anything else.";
|
|
830
|
+
const restart = actions.includes("start_generation")
|
|
831
|
+
? "start_generation is advertised, so re-running make_video is allowed after the blocker is resolved."
|
|
832
|
+
: "Do not re-run make_video: start_generation is not advertised.";
|
|
833
|
+
|
|
834
|
+
return `Polling stopped at ${status.stage}. ${status.error ?? ""} ${advertised} ${restart}`
|
|
835
|
+
.replace(/\s+/g, " ")
|
|
836
|
+
.trim();
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
async function recoverCompletedMakeVideo(
|
|
840
|
+
status: NormalizedStatus,
|
|
841
|
+
savePath: string | undefined,
|
|
842
|
+
kindInferred: boolean,
|
|
843
|
+
) {
|
|
844
|
+
const videoUrl = status.video_url;
|
|
845
|
+
if (!status.ready || !videoUrl) return null;
|
|
846
|
+
|
|
847
|
+
const saved_to = savePath
|
|
848
|
+
? (await downloadTo(videoUrl, savePath)).saved_to
|
|
849
|
+
: null;
|
|
850
|
+
return ok(
|
|
851
|
+
{
|
|
852
|
+
...status,
|
|
853
|
+
kind_inferred: kindInferred,
|
|
854
|
+
charged: false,
|
|
855
|
+
replayed: true,
|
|
856
|
+
saved_to,
|
|
857
|
+
timed_out: false,
|
|
858
|
+
polling_stopped: false,
|
|
859
|
+
note: "Recovered the existing completed output. Nothing was charged.",
|
|
860
|
+
},
|
|
861
|
+
[mp4Link(videoUrl, status.slug)],
|
|
862
|
+
);
|
|
863
|
+
}
|
|
684
864
|
|
|
685
865
|
async function pollToTerminal(
|
|
686
866
|
client: HubfluencerClient,
|
|
@@ -693,8 +873,14 @@ async function pollToTerminal(
|
|
|
693
873
|
return pollWithFinalReconciliation({
|
|
694
874
|
read: (deadline) => fetchStatus(client, kind, slug, deadline),
|
|
695
875
|
isTerminal: (status) => status.terminal,
|
|
876
|
+
shouldContinue: (status) =>
|
|
877
|
+
(kind !== "editor" && kind !== "short") ||
|
|
878
|
+
(typeof status.poll_after_ms === "number" && status.poll_after_ms > 0),
|
|
696
879
|
budgetMs,
|
|
697
|
-
intervalMs
|
|
880
|
+
intervalMs: (status) =>
|
|
881
|
+
typeof status.poll_after_ms === "number"
|
|
882
|
+
? Math.min(60_000, Math.max(5_000, status.poll_after_ms))
|
|
883
|
+
: intervalMs,
|
|
698
884
|
onPoll: (status, pollNumber) =>
|
|
699
885
|
reportProgress(extra, pollNumber, `stage: ${status.stage}`),
|
|
700
886
|
});
|
|
@@ -764,7 +950,8 @@ registerTool(
|
|
|
764
950
|
title: "Make a video from a prompt (one shot)",
|
|
765
951
|
description:
|
|
766
952
|
"The simplest path: give a prompt, get a finished MP4. Creates the project (free), PRICES it against " +
|
|
767
|
-
"your live credit balance, then — only if it's affordable
|
|
953
|
+
"your live credit balance, then — only if it's affordable, within max_credits, and the canonical " +
|
|
954
|
+
"generation_summary advertises start_generation — starts generation, " +
|
|
768
955
|
"polls to completion (emitting progress), and (if save_path is given) downloads the result. " +
|
|
769
956
|
"Spends credits (15 for a short; a multi-scene editor ad ~28). Pass dry_run:true to preview the cost " +
|
|
770
957
|
"WITHOUT charging (returns {estimated_credits, available_credits, slug}); pass max_credits to cap the " +
|
|
@@ -1174,9 +1361,66 @@ registerTool(
|
|
|
1174
1361
|
);
|
|
1175
1362
|
slug = created.data.slug;
|
|
1176
1363
|
}
|
|
1364
|
+
// A deterministic create replay may already represent accepted work.
|
|
1365
|
+
// Recover that canonical run before quoting or requiring a fresh
|
|
1366
|
+
// start_generation action: active/completed work must be resumed, never
|
|
1367
|
+
// rejected or charged again because its cost route is no longer launchable.
|
|
1368
|
+
let observedStart: ObservedGenerationAction | undefined;
|
|
1369
|
+
let observationError: unknown;
|
|
1370
|
+
let activeReplay = false;
|
|
1371
|
+
if (!args.dry_run) {
|
|
1372
|
+
try {
|
|
1373
|
+
observedStart = await observedGenerationAction(
|
|
1374
|
+
client,
|
|
1375
|
+
kind === "short" ? "short" : "editor",
|
|
1376
|
+
slug,
|
|
1377
|
+
"start_generation",
|
|
1378
|
+
kind === "short"
|
|
1379
|
+
? {
|
|
1380
|
+
workflows: ["short.generation"],
|
|
1381
|
+
statuses: [
|
|
1382
|
+
"idle",
|
|
1383
|
+
"queued",
|
|
1384
|
+
"running",
|
|
1385
|
+
"failed",
|
|
1386
|
+
"cancelled",
|
|
1387
|
+
],
|
|
1388
|
+
allowIdleAuthority: true,
|
|
1389
|
+
recoverCompleted: true,
|
|
1390
|
+
recoverActive: true,
|
|
1391
|
+
}
|
|
1392
|
+
: {
|
|
1393
|
+
workflows: ["editor.autopilot"],
|
|
1394
|
+
statuses: [
|
|
1395
|
+
"idle",
|
|
1396
|
+
"queued",
|
|
1397
|
+
"running",
|
|
1398
|
+
"failed",
|
|
1399
|
+
"cancelled",
|
|
1400
|
+
],
|
|
1401
|
+
allowIdleAuthority: true,
|
|
1402
|
+
recoverCompleted: true,
|
|
1403
|
+
recoverActive: true,
|
|
1404
|
+
},
|
|
1405
|
+
);
|
|
1406
|
+
const recovery = observedStart.completedStatus
|
|
1407
|
+
? await recoverCompletedMakeVideo(
|
|
1408
|
+
observedStart.completedStatus,
|
|
1409
|
+
args.save_path,
|
|
1410
|
+
requestedKind === undefined,
|
|
1411
|
+
)
|
|
1412
|
+
: null;
|
|
1413
|
+
if (recovery) return recovery;
|
|
1414
|
+
activeReplay = observedStart.activeReplay === true;
|
|
1415
|
+
} catch (error) {
|
|
1416
|
+
// A non-launching pricing result below can still safely return its
|
|
1417
|
+
// free draft. Re-throw before any paid POST when launch is possible.
|
|
1418
|
+
observationError = error;
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1177
1421
|
|
|
1178
1422
|
// 2) Preflight cost vs the live balance BEFORE charging. Shorts retain
|
|
1179
|
-
// their fixed-price
|
|
1423
|
+
// their fixed-price behavior, but an editor without a
|
|
1180
1424
|
// readable quote must never fall through to the API's uncapped launch.
|
|
1181
1425
|
const costPath =
|
|
1182
1426
|
kind === "short"
|
|
@@ -1185,18 +1429,21 @@ registerTool(
|
|
|
1185
1429
|
let estimated_credits: number | null = null;
|
|
1186
1430
|
let available_credits: number | null = null;
|
|
1187
1431
|
let authorizedCredits: number | undefined;
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1432
|
+
if (!activeReplay) {
|
|
1433
|
+
try {
|
|
1434
|
+
const cost = asRecord(
|
|
1435
|
+
asRecord(await client.get<{ data: unknown }>(costPath)).data,
|
|
1436
|
+
);
|
|
1437
|
+
estimated_credits =
|
|
1438
|
+
typeof cost.total === "number" ? cost.total : null;
|
|
1439
|
+
available_credits =
|
|
1440
|
+
typeof cost.available_credits === "number"
|
|
1441
|
+
? cost.available_credits
|
|
1442
|
+
: null;
|
|
1443
|
+
} catch {
|
|
1444
|
+
// The editor branch below fails closed unless the caller supplied an
|
|
1445
|
+
// explicit cap that the launch endpoint can enforce independently.
|
|
1446
|
+
}
|
|
1200
1447
|
}
|
|
1201
1448
|
|
|
1202
1449
|
const resume =
|
|
@@ -1218,13 +1465,14 @@ registerTool(
|
|
|
1218
1465
|
|
|
1219
1466
|
// 3) Stop BEFORE charging on dry_run, an uncapped editor with no live
|
|
1220
1467
|
// quote, an over-cap estimate, or a balance we already know is too
|
|
1221
|
-
// low.
|
|
1222
|
-
//
|
|
1468
|
+
// low. An already-active replay bypasses launch admission entirely:
|
|
1469
|
+
// it is existing paid work to resume, not a new charge.
|
|
1223
1470
|
if (
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1471
|
+
!activeReplay &&
|
|
1472
|
+
(args.dry_run ||
|
|
1473
|
+
editorPriceUnavailableWithoutCap ||
|
|
1474
|
+
overCap ||
|
|
1475
|
+
!affordable)
|
|
1228
1476
|
) {
|
|
1229
1477
|
const note = args.dry_run
|
|
1230
1478
|
? `Dry run — created a free draft and priced it (${estimated_credits ?? "?"} credits, have ${available_credits ?? "?"}). To run it: ${resume}.`
|
|
@@ -1245,69 +1493,66 @@ registerTool(
|
|
|
1245
1493
|
});
|
|
1246
1494
|
}
|
|
1247
1495
|
|
|
1248
|
-
// 4) Affordable and authorized — start
|
|
1249
|
-
//
|
|
1250
|
-
//
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
// already-running / 409 gate independently blocks a double charge) but a
|
|
1256
|
-
// per-attempt signature once terminally failed, so a genuine re-run mints
|
|
1257
|
-
// a fresh key and re-enqueues. Best-effort: if the read fails we fall
|
|
1258
|
-
// back to the stable "start" (the server gate remains the real guard).
|
|
1259
|
-
let startState = "start";
|
|
1260
|
-
try {
|
|
1261
|
-
const cur = await client.get<{ data: unknown }>(
|
|
1262
|
-
kind === "short" ? `/shorts/${slug}` : `/editor/${slug}`,
|
|
1496
|
+
// 4) Affordable and caller-authorized — start only when the canonical
|
|
1497
|
+
// preflight above advertised start_generation. An active replay has
|
|
1498
|
+
// already been accepted and proceeds directly to polling.
|
|
1499
|
+
if (!observedStart) {
|
|
1500
|
+
throw (
|
|
1501
|
+
observationError ??
|
|
1502
|
+
new Error("Missing canonical generation authority before paid launch")
|
|
1263
1503
|
);
|
|
1264
|
-
startState = startStateDiscriminator(kind, asRecord(cur).data);
|
|
1265
|
-
} catch {
|
|
1266
|
-
// status unreadable — keep the stable token (the server gate still holds)
|
|
1267
1504
|
}
|
|
1268
1505
|
|
|
1269
|
-
if (
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1506
|
+
if (!activeReplay) {
|
|
1507
|
+
const startState = startStateDiscriminator(kind, observedStart.state);
|
|
1508
|
+
|
|
1509
|
+
if (kind === "short") {
|
|
1510
|
+
await client.post(
|
|
1511
|
+
`/shorts/${slug}/generate`,
|
|
1512
|
+
// Only send a body when the caller opts out of server auto-copy —
|
|
1513
|
+
// the bare POST stays byte-identical to the pre-0.8.2 wire shape.
|
|
1514
|
+
args.skip_auto_text ? { skip_auto_text: true } : undefined,
|
|
1515
|
+
// gen-short:<slug> + the failure-state discriminator: a fresh/in-flight
|
|
1516
|
+
// short reuses "gen-short:<slug>:start" (transport-retry dedupe), a
|
|
1517
|
+
// re-run after a failed render gets a fresh key and re-renders.
|
|
1518
|
+
// skip_auto_text is folded in so a bare-clip run never replays a
|
|
1519
|
+
// cached auto-copy run's response (or vice versa) on the same slug.
|
|
1520
|
+
`gen-short:${slug}:${startState}${args.skip_auto_text ? ":bare" : ""}`,
|
|
1521
|
+
);
|
|
1522
|
+
} else {
|
|
1523
|
+
const approvedCap = args.max_credits ?? estimated_credits;
|
|
1524
|
+
if (approvedCap === null) {
|
|
1525
|
+
// Belt-and-suspenders invariant behind the fail-closed branch above:
|
|
1526
|
+
// never let a future condition refactor revive an uncapped editor POST.
|
|
1527
|
+
throw new Error(
|
|
1528
|
+
"Editor autopilot launch requires max_credits or a live quote",
|
|
1529
|
+
);
|
|
1530
|
+
}
|
|
1531
|
+
authorizedCredits = approvedCap;
|
|
1532
|
+
await client.post(
|
|
1533
|
+
`/editor/${slug}/autopilot`,
|
|
1534
|
+
// Use the caller's explicit cap when given, otherwise the live
|
|
1535
|
+
// estimate. The API recomputes under its launch lock and rejects a
|
|
1536
|
+
// price increase before any state change or charge.
|
|
1537
|
+
{ max_credits: approvedCap },
|
|
1538
|
+
// Fold the create-affecting params AND the failure-state discriminator
|
|
1539
|
+
// into the start key so it tracks the inputs + current state, not just
|
|
1540
|
+
// the slug. This key is only compared against a retry of *this* tool on
|
|
1541
|
+
// *this* slug; the other autopilot entry points use a different field
|
|
1542
|
+
// set/order on purpose (the server idempotency cache is scoped to
|
|
1543
|
+
// path+key, and the slug — already in the path — is unique per draft),
|
|
1544
|
+
// so the shapes are not meant to be interchangeable across tools.
|
|
1545
|
+
// Composition lives in core.ts, shared with the golden-pin test.
|
|
1546
|
+
makeVideoAutopilotKey(slug, args, startState),
|
|
1289
1547
|
);
|
|
1290
1548
|
}
|
|
1291
|
-
authorizedCredits = approvedCap;
|
|
1292
|
-
await client.post(
|
|
1293
|
-
`/editor/${slug}/autopilot`,
|
|
1294
|
-
// Use the caller's explicit cap when given, otherwise the live
|
|
1295
|
-
// estimate. The API recomputes under its launch lock and rejects a
|
|
1296
|
-
// price increase before any state change or charge.
|
|
1297
|
-
{ max_credits: approvedCap },
|
|
1298
|
-
// Fold the create-affecting params AND the failure-state discriminator
|
|
1299
|
-
// into the start key so it tracks the inputs + current state, not just
|
|
1300
|
-
// the slug. This key is only compared against a retry of *this* tool on
|
|
1301
|
-
// *this* slug; the other autopilot entry points use a different field
|
|
1302
|
-
// set/order on purpose (the server idempotency cache is scoped to
|
|
1303
|
-
// path+key, and the slug — already in the path — is unique per draft),
|
|
1304
|
-
// so the shapes are not meant to be interchangeable across tools.
|
|
1305
|
-
// Composition lives in core.ts, shared with the golden-pin test.
|
|
1306
|
-
makeVideoAutopilotKey(slug, args, startState),
|
|
1307
|
-
);
|
|
1308
1549
|
}
|
|
1309
1550
|
|
|
1310
|
-
await reportProgress(
|
|
1551
|
+
await reportProgress(
|
|
1552
|
+
extra,
|
|
1553
|
+
0,
|
|
1554
|
+
`${activeReplay ? "resumed" : "started"} ${kind} ${slug}`,
|
|
1555
|
+
);
|
|
1311
1556
|
const status = await pollToTerminal(
|
|
1312
1557
|
client,
|
|
1313
1558
|
kind,
|
|
@@ -1349,10 +1594,12 @@ registerTool(
|
|
|
1349
1594
|
|
|
1350
1595
|
const billing =
|
|
1351
1596
|
kind === "short"
|
|
1352
|
-
? { charged: true }
|
|
1597
|
+
? { charged: true, ...(activeReplay ? { replayed: true } : {}) }
|
|
1353
1598
|
: {
|
|
1354
|
-
launched:
|
|
1355
|
-
|
|
1599
|
+
launched: !activeReplay,
|
|
1600
|
+
...(activeReplay
|
|
1601
|
+
? { replayed: true }
|
|
1602
|
+
: { authorized_credits: authorizedCredits }),
|
|
1356
1603
|
...(editorCreditsSpent === undefined
|
|
1357
1604
|
? {}
|
|
1358
1605
|
: {
|
|
@@ -1361,6 +1608,7 @@ registerTool(
|
|
|
1361
1608
|
}),
|
|
1362
1609
|
};
|
|
1363
1610
|
|
|
1611
|
+
const pollingStopped = serverStoppedPolling(kind, status);
|
|
1364
1612
|
const result = {
|
|
1365
1613
|
...status,
|
|
1366
1614
|
kind_inferred: requestedKind === undefined,
|
|
@@ -1368,7 +1616,8 @@ registerTool(
|
|
|
1368
1616
|
available_credits,
|
|
1369
1617
|
...billing,
|
|
1370
1618
|
saved_to,
|
|
1371
|
-
timed_out: !status.terminal,
|
|
1619
|
+
timed_out: !status.terminal && !pollingStopped,
|
|
1620
|
+
polling_stopped: pollingStopped,
|
|
1372
1621
|
};
|
|
1373
1622
|
// Thread the caller's save_path into the resume hint so the one-shot
|
|
1374
1623
|
// "download to this path" intent survives a mid-render timeout —
|
|
@@ -1385,17 +1634,19 @@ registerTool(
|
|
|
1385
1634
|
...result,
|
|
1386
1635
|
note: status.ready
|
|
1387
1636
|
? "Done. Presigned ~24h URL — download promptly."
|
|
1388
|
-
:
|
|
1389
|
-
? status
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
//
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1637
|
+
: pollingStopped
|
|
1638
|
+
? makeVideoPollingStopNote(status)
|
|
1639
|
+
: status.terminal
|
|
1640
|
+
? status.stage === "batch_retry_required"
|
|
1641
|
+
? `Terminal (${status.stage}). ${status.error ?? ""} Resolve the paused batch before restarting Autopilot.`.trim()
|
|
1642
|
+
: // A terminal-but-not-ready make_video is normally a failed/cancelled run.
|
|
1643
|
+
// Point at a restart: re-running make_video now genuinely restarts
|
|
1644
|
+
// (the start key folds the failure state, so it no longer replays the
|
|
1645
|
+
// dead 202), or resume the pipeline directly. Fix the cause (often
|
|
1646
|
+
// credits) first.
|
|
1647
|
+
`Terminal (${status.stage}). ${status.error ?? ""}`.trim() +
|
|
1648
|
+
` To restart, fix the cause (often credits) then re-run make_video, or resume with ${resume}.`
|
|
1649
|
+
: `Still rendering — call wait_for_completion(${resumeArgs}).`,
|
|
1399
1650
|
},
|
|
1400
1651
|
links,
|
|
1401
1652
|
);
|
|
@@ -1490,8 +1741,9 @@ registerTool(
|
|
|
1490
1741
|
{
|
|
1491
1742
|
title: "List recent projects",
|
|
1492
1743
|
description:
|
|
1493
|
-
"Lists the caller's recent shorts
|
|
1494
|
-
"
|
|
1744
|
+
"Lists the caller's recent shorts plus lightweight editor/video-factory discovery rows. Shorts " +
|
|
1745
|
+
"carry normalized lifecycle state; generic factory rows carry {slug, kind_detail, stage, video_url} " +
|
|
1746
|
+
"because that mixed-kind index has no generation_summary. By default the shorts listing is limited to " +
|
|
1495
1747
|
"in-progress/failed; pass include_completed:true to also surface finished shorts — useful to " +
|
|
1496
1748
|
"recover a lost slug. Capped to the most recent items per kind (use get_status for authoritative state).",
|
|
1497
1749
|
inputSchema: {
|
|
@@ -1528,23 +1780,35 @@ registerTool(
|
|
|
1528
1780
|
};
|
|
1529
1781
|
const shortRows = rows(shortsRaw);
|
|
1530
1782
|
const factoryRows = rows(factoriesRaw);
|
|
1783
|
+
// Shorts already have a dedicated, summary-bearing lane above. The
|
|
1784
|
+
// generic endpoint also returns their backing video_factory rows, so
|
|
1785
|
+
// filter them before applying the per-kind cap: otherwise one Short is
|
|
1786
|
+
// duplicated and a page of recent Shorts can crowd Editors/campaigns
|
|
1787
|
+
// out of lightweight discovery entirely.
|
|
1788
|
+
const genericFactoryRows = factoryRows.filter(
|
|
1789
|
+
(row) => row.kind !== "short",
|
|
1790
|
+
);
|
|
1791
|
+
const shortTotal = asRecord(asRecord(shortsRaw).meta).total;
|
|
1792
|
+
const shortsTruncated =
|
|
1793
|
+
(typeof shortTotal === "number" && shortTotal > cap) ||
|
|
1794
|
+
shortRows.length > cap;
|
|
1531
1795
|
|
|
1532
1796
|
const shorts = shortRows
|
|
1533
1797
|
.slice(0, cap)
|
|
1534
1798
|
.map((s) => normalizeStatus("short", String(s.slug ?? ""), s));
|
|
1535
|
-
// /video-factories spans editor + campaign + creative kinds
|
|
1536
|
-
//
|
|
1537
|
-
//
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1799
|
+
// /video-factories spans editor + campaign + creative kinds and its real
|
|
1800
|
+
// index serializer deliberately omits generation_summary. This lane is
|
|
1801
|
+
// discovery-only; never feed these rows through the fail-closed product
|
|
1802
|
+
// lifecycle normalizer.
|
|
1803
|
+
const projects = genericFactoryRows
|
|
1804
|
+
.slice(0, cap)
|
|
1805
|
+
.map(normalizeFactoryIndexProject);
|
|
1542
1806
|
|
|
1543
1807
|
return ok({
|
|
1544
1808
|
shorts,
|
|
1545
1809
|
projects,
|
|
1546
1810
|
note:
|
|
1547
|
-
|
|
1811
|
+
shortsTruncated || genericFactoryRows.length > cap
|
|
1548
1812
|
? `Showing up to ${cap} per kind; more exist — raise limit or use get_status.`
|
|
1549
1813
|
: undefined,
|
|
1550
1814
|
});
|
|
@@ -2570,7 +2834,7 @@ registerTool(
|
|
|
2570
2834
|
"use rerender_short instead: it re-applies the overlay over the existing footage for 0 credits. " +
|
|
2571
2835
|
"Safe to call again: a " +
|
|
2572
2836
|
"duplicate while a render is in flight is reported as in-progress (no double charge), and a failed " +
|
|
2573
|
-
"short can be re-generated. If the draft's headline/subheadline/text_beats are all blank the server " +
|
|
2837
|
+
"or cancelled short can be re-generated. If the draft's headline/subheadline/text_beats are all blank the server " +
|
|
2574
2838
|
"auto-writes the headline + caption beats before rendering (pass skip_auto_text:true for a deliberately " +
|
|
2575
2839
|
"bare clip). A transient 5xx is reconciled against the project state: accepted work is returned as " +
|
|
2576
2840
|
"in-progress, while an unchanged draft is retried once. Then poll with get_status or " +
|
|
@@ -2591,17 +2855,38 @@ registerTool(
|
|
|
2591
2855
|
annotations: { title: "Generate short", ...WRITE },
|
|
2592
2856
|
},
|
|
2593
2857
|
tool(async (args: { slug: string; skip_auto_text?: boolean }, client) => {
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2858
|
+
const observedStart = await observedGenerationAction(
|
|
2859
|
+
client,
|
|
2860
|
+
"short",
|
|
2861
|
+
args.slug,
|
|
2862
|
+
"start_generation",
|
|
2863
|
+
{
|
|
2864
|
+
workflows: ["short.generation"],
|
|
2865
|
+
statuses: ["idle", "queued", "running", "failed", "cancelled"],
|
|
2866
|
+
allowIdleAuthority: true,
|
|
2867
|
+
recoverActive: true,
|
|
2868
|
+
},
|
|
2869
|
+
);
|
|
2870
|
+
if (observedStart.activeReplay) {
|
|
2871
|
+
return ok(normalizeStatus("short", args.slug, observedStart.state));
|
|
2872
|
+
}
|
|
2873
|
+
// This observed attempt owns one stable request key. A transport retry
|
|
2874
|
+
// after a lost response sees the active run above; a genuine later rerun
|
|
2875
|
+
// observes a different terminal run/revision and derives a fresh key.
|
|
2876
|
+
const requestKey = idemKey(
|
|
2877
|
+
"generate-short",
|
|
2878
|
+
args.slug,
|
|
2879
|
+
args.skip_auto_text ? "bare" : "auto-copy",
|
|
2880
|
+
observedStart.summary.run_id ?? "idle",
|
|
2881
|
+
String(observedStart.summary.revision ?? "idle"),
|
|
2882
|
+
);
|
|
2599
2883
|
const submit = () =>
|
|
2600
2884
|
client.post<{ data: unknown }>(
|
|
2601
2885
|
`/shorts/${args.slug}/generate`,
|
|
2602
2886
|
// Only send a body when the caller opts out of server auto-copy —
|
|
2603
2887
|
// the bare POST stays byte-identical to the pre-0.8.2 wire shape.
|
|
2604
2888
|
args.skip_auto_text ? { skip_auto_text: true } : undefined,
|
|
2889
|
+
requestKey,
|
|
2605
2890
|
);
|
|
2606
2891
|
|
|
2607
2892
|
try {
|
|
@@ -2611,15 +2896,10 @@ registerTool(
|
|
|
2611
2896
|
} catch (e) {
|
|
2612
2897
|
const statusCode = (e as { status?: number }).status;
|
|
2613
2898
|
if (statusCode === 409) {
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
terminal: false,
|
|
2619
|
-
ready: false,
|
|
2620
|
-
video_url: null,
|
|
2621
|
-
error: null,
|
|
2622
|
-
});
|
|
2899
|
+
// A conflict says only that the POST did not start new work. Return
|
|
2900
|
+
// the validated server-owned lifecycle instead of fabricating a
|
|
2901
|
+
// summary-less "processing" state from the HTTP code.
|
|
2902
|
+
return ok(await fetchStatus(client, "short", args.slug));
|
|
2623
2903
|
}
|
|
2624
2904
|
|
|
2625
2905
|
if (statusCode !== undefined && statusCode >= 500) {
|
|
@@ -2632,12 +2912,20 @@ registerTool(
|
|
|
2632
2912
|
throw e;
|
|
2633
2913
|
}
|
|
2634
2914
|
|
|
2635
|
-
//
|
|
2636
|
-
//
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2915
|
+
// Any canonical active summary makes a blind retry unsafe: it may be
|
|
2916
|
+
// the just-accepted debit or work that already owned the product.
|
|
2917
|
+
if (
|
|
2918
|
+
reconciled.generation_summary?.status === "queued" ||
|
|
2919
|
+
reconciled.generation_summary?.status === "running"
|
|
2920
|
+
) {
|
|
2921
|
+
return ok(reconciled);
|
|
2922
|
+
}
|
|
2923
|
+
if (
|
|
2924
|
+
reconciled.generation_summary?.status !== "idle" ||
|
|
2925
|
+
!reconciled.available_actions?.includes("start_generation")
|
|
2926
|
+
) {
|
|
2927
|
+
throw e;
|
|
2928
|
+
}
|
|
2641
2929
|
|
|
2642
2930
|
// A Short launch changes the durable factory out of draft in the
|
|
2643
2931
|
// same transaction as the debit. Still-draft therefore proves the
|
|
@@ -2649,15 +2937,7 @@ registerTool(
|
|
|
2649
2937
|
);
|
|
2650
2938
|
} catch (retryError) {
|
|
2651
2939
|
if ((retryError as { status?: number }).status === 409) {
|
|
2652
|
-
return ok(
|
|
2653
|
-
kind: "short",
|
|
2654
|
-
slug: args.slug,
|
|
2655
|
-
stage: "processing",
|
|
2656
|
-
terminal: false,
|
|
2657
|
-
ready: false,
|
|
2658
|
-
video_url: null,
|
|
2659
|
-
error: null,
|
|
2660
|
-
});
|
|
2940
|
+
return ok(await fetchStatus(client, "short", args.slug));
|
|
2661
2941
|
}
|
|
2662
2942
|
throw retryError;
|
|
2663
2943
|
}
|
|
@@ -2672,17 +2952,20 @@ registerTool(
|
|
|
2672
2952
|
{
|
|
2673
2953
|
title: "Cancel a running short generation",
|
|
2674
2954
|
description:
|
|
2675
|
-
"Stops the
|
|
2676
|
-
"
|
|
2677
|
-
"
|
|
2678
|
-
"
|
|
2955
|
+
"Stops the currently observed paid Short generation through the product-scoped cancellation route, " +
|
|
2956
|
+
"fences late provider callbacks, and settles its refund exactly once. The canonical generation_run_id is " +
|
|
2957
|
+
"read from get_status when omitted. The draft is preserved for editing and " +
|
|
2958
|
+
"regeneration. Safe to repeat after a successful cancellation. The raw REST route requires Idempotency-Key; " +
|
|
2959
|
+
"reuse one only for transport retries of this exact run. Scope: video:generate.",
|
|
2679
2960
|
inputSchema: {
|
|
2680
2961
|
slug: z.string().describe("Slug of the processing short"),
|
|
2681
|
-
|
|
2682
|
-
.
|
|
2683
|
-
.
|
|
2684
|
-
.
|
|
2685
|
-
.describe(
|
|
2962
|
+
generation_run_id: z
|
|
2963
|
+
.string()
|
|
2964
|
+
.uuid()
|
|
2965
|
+
.optional()
|
|
2966
|
+
.describe(
|
|
2967
|
+
"Exact run fence from get_status; normally omitted because the tool reads current status first",
|
|
2968
|
+
),
|
|
2686
2969
|
},
|
|
2687
2970
|
annotations: {
|
|
2688
2971
|
title: "Cancel short generation",
|
|
@@ -2692,16 +2975,54 @@ registerTool(
|
|
|
2692
2975
|
idempotentHint: true,
|
|
2693
2976
|
},
|
|
2694
2977
|
},
|
|
2695
|
-
tool(async (args: { slug: string;
|
|
2696
|
-
const
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2978
|
+
tool(async (args: { slug: string; generation_run_id?: string }, client) => {
|
|
2979
|
+
const observed = await observedGenerationAction(
|
|
2980
|
+
client,
|
|
2981
|
+
"short",
|
|
2982
|
+
args.slug,
|
|
2983
|
+
"cancel_generation",
|
|
2984
|
+
{
|
|
2985
|
+
workflows: ["short.generation"],
|
|
2986
|
+
statuses: ["queued", "running", "cancelled"],
|
|
2987
|
+
recoverCancelled: true,
|
|
2988
|
+
},
|
|
2989
|
+
);
|
|
2990
|
+
const generationRunId = observed.summary.run_id;
|
|
2991
|
+
if (typeof generationRunId !== "string" || generationRunId.length === 0) {
|
|
2992
|
+
throw new Error(
|
|
2993
|
+
"The Short response did not include a canonical run_id; refresh get_status before cancelling safely.",
|
|
2994
|
+
);
|
|
2995
|
+
}
|
|
2996
|
+
if (
|
|
2997
|
+
args.generation_run_id !== undefined &&
|
|
2998
|
+
args.generation_run_id !== generationRunId
|
|
2999
|
+
) {
|
|
3000
|
+
throw new Error(
|
|
3001
|
+
"The supplied generation_run_id does not match the authoritative Short state; refresh before cancelling.",
|
|
3002
|
+
);
|
|
3003
|
+
}
|
|
3004
|
+
const receiptKey = idemKey(
|
|
3005
|
+
"cancel-short-generation",
|
|
3006
|
+
args.slug,
|
|
3007
|
+
generationRunId,
|
|
2700
3008
|
);
|
|
2701
|
-
|
|
3009
|
+
|
|
3010
|
+
const data = observed.settledReplay
|
|
3011
|
+
? observed.state
|
|
3012
|
+
: asRecord(
|
|
3013
|
+
asRecord(
|
|
3014
|
+
await client.post<{ data: unknown }>(
|
|
3015
|
+
`/shorts/${args.slug}/cancel`,
|
|
3016
|
+
{ generation_run_id: generationRunId },
|
|
3017
|
+
receiptKey,
|
|
3018
|
+
),
|
|
3019
|
+
).data,
|
|
3020
|
+
);
|
|
2702
3021
|
return ok({
|
|
2703
3022
|
...data,
|
|
2704
3023
|
slug: args.slug,
|
|
3024
|
+
run_id: observed.summary.run_id,
|
|
3025
|
+
workflow: observed.summary.workflow,
|
|
2705
3026
|
charged: false,
|
|
2706
3027
|
// The cancel endpoint returns the short's STATE, not a refund receipt,
|
|
2707
3028
|
// so don't assert refunded:true on every call — a repeat cancel is a
|
|
@@ -3205,7 +3526,8 @@ registerTool(
|
|
|
3205
3526
|
"and prices autopilot (server-orchestrated " +
|
|
3206
3527
|
"scenario → segments → narration → voice → music → render). Each AI-generated scene is a fixed 8 seconds. " +
|
|
3207
3528
|
"Without max_credits it STOPS after the free draft/configuration and returns the live estimate. It starts " +
|
|
3208
|
-
"the paid pipeline only when max_credits is supplied
|
|
3529
|
+
"the paid pipeline only when max_credits is supplied, covers the estimate, and the canonical generation_summary " +
|
|
3530
|
+
"advertises start_generation. Then poll with get_status / " +
|
|
3209
3531
|
"wait_for_completion (kind=editor). Prefer make_video for a prompt-only one-shot. " +
|
|
3210
3532
|
"A product image is analyzed into semantic project context and sent as a product-identity reference to every " +
|
|
3211
3533
|
"generated Editor scene. The exact photo is also linked as the closing image unless a separate closing image " +
|
|
@@ -3535,6 +3857,26 @@ registerTool(
|
|
|
3535
3857
|
});
|
|
3536
3858
|
}
|
|
3537
3859
|
|
|
3860
|
+
// POST /editor is idempotent and may return an existing terminal draft.
|
|
3861
|
+
// Re-read the canonical product authority after the quote and immediately
|
|
3862
|
+
// before the chargeable launch. Legacy lifecycle columns never authorize
|
|
3863
|
+
// this write, and a completed project requires the explicit restart flow.
|
|
3864
|
+
const observedStart = await observedGenerationAction(
|
|
3865
|
+
client,
|
|
3866
|
+
"editor",
|
|
3867
|
+
slug,
|
|
3868
|
+
"start_generation",
|
|
3869
|
+
{
|
|
3870
|
+
workflows: ["editor.autopilot"],
|
|
3871
|
+
statuses: ["idle", "failed", "cancelled"],
|
|
3872
|
+
allowIdleAuthority: true,
|
|
3873
|
+
},
|
|
3874
|
+
);
|
|
3875
|
+
const startState = startStateDiscriminator(
|
|
3876
|
+
"editor",
|
|
3877
|
+
observedStart.state,
|
|
3878
|
+
);
|
|
3879
|
+
|
|
3538
3880
|
const started = await client.post<{ data: unknown }>(
|
|
3539
3881
|
`/editor/${slug}/autopilot`,
|
|
3540
3882
|
{
|
|
@@ -3542,13 +3884,14 @@ registerTool(
|
|
|
3542
3884
|
segments_count: args.segments_count,
|
|
3543
3885
|
},
|
|
3544
3886
|
// Fold the create-affecting params into the start key so it tracks
|
|
3545
|
-
// inputs, not just the slug. Self-consistent
|
|
3546
|
-
// is compared against retries of *this* tool
|
|
3887
|
+
// inputs plus the observed attempt, not just the slug. Self-consistent
|
|
3888
|
+
// per-tool only: this key is compared against retries of *this* tool
|
|
3889
|
+
// on *this* slug. The
|
|
3547
3890
|
// field set/order differs from make_video / start_autopilot on
|
|
3548
3891
|
// purpose (server cache is path+key scoped, slug is unique per
|
|
3549
3892
|
// draft), so the keys are not interchangeable across tools.
|
|
3550
3893
|
// Composition lives in core.ts, shared with the golden-pin test.
|
|
3551
|
-
editorAdAutopilotKey(slug, args),
|
|
3894
|
+
editorAdAutopilotKey(slug, args, startState),
|
|
3552
3895
|
);
|
|
3553
3896
|
const status = normalizeStatus("editor", slug, asRecord(started).data);
|
|
3554
3897
|
return ok({
|
|
@@ -3578,10 +3921,10 @@ registerTool(
|
|
|
3578
3921
|
"EXISTING editor project/draft. Without max_credits it returns the live quote and charges nothing. Supply an " +
|
|
3579
3922
|
"explicit max_credits cap to authorize launch; the tool refuses if pricing is unavailable, the estimate exceeds " +
|
|
3580
3923
|
"the cap, or the balance is insufficient. Each authorized call is a genuine start attempt (like tapping Launch in the app): " +
|
|
3581
|
-
"
|
|
3582
|
-
"or double-
|
|
3583
|
-
"
|
|
3584
|
-
"
|
|
3924
|
+
"the tool re-reads generation_summary and starts only when start_generation is advertised, so an active run " +
|
|
3925
|
+
"cannot be double-started or double-charged. Resolve any advertised retry/input action first. For a completed " +
|
|
3926
|
+
"Autopilot run, set restart:true to quote and build a fresh creative run; restart:true is rejected for every " +
|
|
3927
|
+
"non-completed state. Then poll with " +
|
|
3585
3928
|
'wait_for_completion({ slug, kind: "editor" }).',
|
|
3586
3929
|
inputSchema: {
|
|
3587
3930
|
slug: z.string().describe("Editor project slug"),
|
|
@@ -3695,17 +4038,47 @@ registerTool(
|
|
|
3695
4038
|
});
|
|
3696
4039
|
}
|
|
3697
4040
|
|
|
4041
|
+
const observedStart = await observedGenerationAction(
|
|
4042
|
+
client,
|
|
4043
|
+
"editor",
|
|
4044
|
+
slug,
|
|
4045
|
+
"start_generation",
|
|
4046
|
+
{
|
|
4047
|
+
workflows: ["editor.autopilot"],
|
|
4048
|
+
statuses: ["idle", "failed", "cancelled", "completed"],
|
|
4049
|
+
allowIdleAuthority: true,
|
|
4050
|
+
},
|
|
4051
|
+
);
|
|
4052
|
+
if (
|
|
4053
|
+
observedStart.summary.status === "completed" &&
|
|
4054
|
+
args.restart !== true
|
|
4055
|
+
) {
|
|
4056
|
+
throw new Error(
|
|
4057
|
+
"A completed Autopilot project requires restart:true for the advertised fresh start.",
|
|
4058
|
+
);
|
|
4059
|
+
}
|
|
4060
|
+
if (
|
|
4061
|
+
observedStart.summary.status !== "completed" &&
|
|
4062
|
+
args.restart === true
|
|
4063
|
+
) {
|
|
4064
|
+
throw new Error(
|
|
4065
|
+
"restart:true is valid only for a completed Autopilot generation; refresh before continuing.",
|
|
4066
|
+
);
|
|
4067
|
+
}
|
|
4068
|
+
|
|
3698
4069
|
const started = await client.post<{ data: unknown }>(
|
|
3699
4070
|
`/editor/${slug}/autopilot`,
|
|
3700
4071
|
{ ...overrides, max_credits: args.max_credits },
|
|
3701
|
-
//
|
|
3702
|
-
//
|
|
3703
|
-
//
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
4072
|
+
// The observed canonical run/revision (or stable idle identity) rotates
|
|
4073
|
+
// after every accepted attempt. This keeps transport retries stable while
|
|
4074
|
+
// preventing an older 24h receipt from replaying over a later fresh start.
|
|
4075
|
+
idemKey(
|
|
4076
|
+
"autopilot",
|
|
4077
|
+
slug,
|
|
4078
|
+
observedStart.summary.run_id ?? "idle",
|
|
4079
|
+
String(observedStart.summary.revision ?? "idle"),
|
|
4080
|
+
JSON.stringify({ ...overrides, max_credits: args.max_credits }),
|
|
4081
|
+
),
|
|
3709
4082
|
);
|
|
3710
4083
|
const status = normalizeStatus("editor", slug, asRecord(started).data);
|
|
3711
4084
|
return ok({
|
|
@@ -3728,12 +4101,13 @@ registerTool(
|
|
|
3728
4101
|
{
|
|
3729
4102
|
title: "Retry a paused editor batch",
|
|
3730
4103
|
description:
|
|
3731
|
-
"
|
|
3732
|
-
"scene and
|
|
3733
|
-
"paid.
|
|
4104
|
+
"Runs only when generation_summary advertises retry_generation for the observed Editor batch, then atomically re-queues its exact failed " +
|
|
4105
|
+
"scene, preview, render, or delivery step and resumes the prepaid batch. This spends 0 additional credits: the batch generation was already " +
|
|
4106
|
+
"paid. When batch_generation_failed_position names a scene, you may REPAIR that one failed scene before retrying: while paused_for_retry, set_segment_prompt can " +
|
|
3734
4107
|
"edit that scene's prompt (and use_previous_frame) — but only for the exact failed position the server " +
|
|
3735
4108
|
"names in batch_generation_failed_position (from get_editor); the rest of the paused batch stays " +
|
|
3736
|
-
"mutation-locked.
|
|
4109
|
+
"mutation-locked. A null position identifies positionless render/delivery work and is not authoring permission. " +
|
|
4110
|
+
"Explicit paused scene retries are capped — once the failure code is free_retries_exhausted a " +
|
|
3737
4111
|
"further retry is rejected (start a fresh run instead). It does not authorize or restart a failed parent " +
|
|
3738
4112
|
"Autopilot run; after retrying, wait for the batch " +
|
|
3739
4113
|
"to settle. If the parent is then terminal, call start_autopilot without max_credits for a fresh quote and " +
|
|
@@ -3747,18 +4121,26 @@ registerTool(
|
|
|
3747
4121
|
},
|
|
3748
4122
|
},
|
|
3749
4123
|
tool(async (args: { slug: string }, client) => {
|
|
3750
|
-
const command = await observedEditorBatchCommand(
|
|
3751
|
-
|
|
3752
|
-
|
|
4124
|
+
const command = await observedEditorBatchCommand(
|
|
4125
|
+
client,
|
|
4126
|
+
args.slug,
|
|
4127
|
+
"retry_generation",
|
|
4128
|
+
);
|
|
3753
4129
|
const res = await client.post<{ data: unknown }>(
|
|
3754
|
-
`/
|
|
4130
|
+
`/editor/${args.slug}/generation/batch/retry`,
|
|
3755
4131
|
command,
|
|
4132
|
+
idemKey(
|
|
4133
|
+
"editor-batch-retry",
|
|
4134
|
+
args.slug,
|
|
4135
|
+
command.generation_run_id,
|
|
4136
|
+
String(command.generation_revision),
|
|
4137
|
+
),
|
|
3756
4138
|
);
|
|
3757
4139
|
return ok({
|
|
3758
4140
|
...asRecord(asRecord(res).data ?? res),
|
|
3759
4141
|
slug: args.slug,
|
|
3760
4142
|
charged: false,
|
|
3761
|
-
note: "The failed
|
|
4143
|
+
note: "The exact failed batch step is queued and the prepaid batch is running. The route returns only the updated generation_summary. Wait for it to settle; if the parent Autopilot run is then terminal, quote start_autopilot again and relaunch only with an approved max_credits cap.",
|
|
3762
4144
|
next: "wait_for_completion",
|
|
3763
4145
|
});
|
|
3764
4146
|
}),
|
|
@@ -3769,10 +4151,11 @@ registerTool(
|
|
|
3769
4151
|
{
|
|
3770
4152
|
title: "Cancel an editor batch",
|
|
3771
4153
|
description:
|
|
3772
|
-
"Cancels
|
|
3773
|
-
"
|
|
3774
|
-
"
|
|
3775
|
-
"0 additional credits.
|
|
4154
|
+
"Cancels the current editor batch — pay-as-you-go or prepaid — while it is active or failed and parked for an in-place retry, including a batch parked " +
|
|
4155
|
+
"needs-input on a scene review. Use this to abandon a permanent failure and unlock the project without paying for another provider retry. Completed scenes remain settled; charges for scenes that never delivered are " +
|
|
4156
|
+
"refunded on settlement. Spends " +
|
|
4157
|
+
"0 additional credits. The raw REST route requires Idempotency-Key; reuse one only for transport retries of " +
|
|
4158
|
+
"the same observed batch command. Scope: video:generate.",
|
|
3776
4159
|
inputSchema: { slug: z.string().describe("Editor project slug") },
|
|
3777
4160
|
annotations: {
|
|
3778
4161
|
title: "Cancel editor batch",
|
|
@@ -3783,13 +4166,15 @@ registerTool(
|
|
|
3783
4166
|
},
|
|
3784
4167
|
},
|
|
3785
4168
|
tool(async (args: { slug: string }, client) => {
|
|
3786
|
-
const command = await observedEditorBatchCommand(
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
4169
|
+
const command = await observedEditorBatchCommand(
|
|
4170
|
+
client,
|
|
4171
|
+
args.slug,
|
|
4172
|
+
"cancel_generation",
|
|
4173
|
+
);
|
|
3790
4174
|
const res = await client.post<{ data: unknown }>(
|
|
3791
|
-
`/
|
|
3792
|
-
command,
|
|
4175
|
+
`/editor/${args.slug}/generation/batch/cancel`,
|
|
4176
|
+
{ generation_run_id: command.generation_run_id },
|
|
4177
|
+
idemKey("cancel-editor-batch", args.slug, command.generation_run_id),
|
|
3793
4178
|
);
|
|
3794
4179
|
return ok({
|
|
3795
4180
|
...asRecord(asRecord(res).data ?? res),
|
|
@@ -3800,50 +4185,171 @@ registerTool(
|
|
|
3800
4185
|
}),
|
|
3801
4186
|
);
|
|
3802
4187
|
|
|
3803
|
-
type EditorBatchCommandStatus = "preparing" | "paused_for_retry";
|
|
3804
|
-
|
|
3805
4188
|
/**
|
|
3806
|
-
* Reads the
|
|
3807
|
-
* recovery command. The API validates
|
|
3808
|
-
* so a replacement run or phase transition
|
|
3809
|
-
* safe `batch_command_stale` conflict rather than acting on newer work.
|
|
4189
|
+
* Reads the canonical Editor batch run fence immediately before issuing a
|
|
4190
|
+
* recovery command. The API validates the run and revision under the run lock,
|
|
4191
|
+
* so a replacement run or phase transition is a safe stale-command conflict.
|
|
3810
4192
|
*/
|
|
3811
4193
|
async function observedEditorBatchCommand(
|
|
3812
4194
|
client: HubfluencerClient,
|
|
3813
4195
|
slug: string,
|
|
3814
|
-
|
|
4196
|
+
actionType: "retry_generation" | "cancel_generation",
|
|
3815
4197
|
): Promise<{
|
|
3816
|
-
|
|
3817
|
-
|
|
4198
|
+
generation_run_id: string;
|
|
4199
|
+
generation_revision: number;
|
|
3818
4200
|
}> {
|
|
3819
|
-
const
|
|
3820
|
-
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
4201
|
+
const observed = await observedGenerationAction(
|
|
4202
|
+
client,
|
|
4203
|
+
"editor",
|
|
4204
|
+
slug,
|
|
4205
|
+
actionType,
|
|
4206
|
+
{
|
|
4207
|
+
workflows: ["editor.batch"],
|
|
4208
|
+
statuses:
|
|
4209
|
+
actionType === "retry_generation"
|
|
4210
|
+
? ["failed", "needs_input"]
|
|
4211
|
+
: ["running", "needs_input", "failed"],
|
|
4212
|
+
},
|
|
4213
|
+
);
|
|
4214
|
+
const { summary } = observed;
|
|
4215
|
+
const runId = summary.run_id;
|
|
4216
|
+
if (typeof runId !== "string" || runId.trim().length === 0) {
|
|
3826
4217
|
throw new Error(
|
|
3827
|
-
|
|
4218
|
+
"Editor generation summary did not include a canonical run id; refresh status before continuing.",
|
|
3828
4219
|
);
|
|
3829
4220
|
}
|
|
3830
4221
|
|
|
3831
|
-
|
|
3832
|
-
if (
|
|
3833
|
-
runId !== null &&
|
|
3834
|
-
(typeof runId !== "string" || runId.trim().length === 0)
|
|
3835
|
-
) {
|
|
4222
|
+
if (summary.workflow !== "editor.batch") {
|
|
3836
4223
|
throw new Error(
|
|
3837
|
-
"
|
|
4224
|
+
"The current generation workflow is not the observed Editor batch; refresh before continuing.",
|
|
3838
4225
|
);
|
|
3839
4226
|
}
|
|
3840
4227
|
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
4228
|
+
const command: {
|
|
4229
|
+
generation_run_id: string;
|
|
4230
|
+
generation_revision: number;
|
|
4231
|
+
} = {
|
|
4232
|
+
generation_run_id: runId,
|
|
4233
|
+
generation_revision: summary.revision as number,
|
|
3844
4234
|
};
|
|
4235
|
+
|
|
4236
|
+
return command;
|
|
3845
4237
|
}
|
|
3846
4238
|
|
|
4239
|
+
registerTool(
|
|
4240
|
+
"provide_generation_input",
|
|
4241
|
+
{
|
|
4242
|
+
title: "Resolve required generation input",
|
|
4243
|
+
description:
|
|
4244
|
+
"Resumes the exact Editor or Short needs-input run advertised by generation_summary. " +
|
|
4245
|
+
"Use action=edit_required_input with a non-empty input object, or action=review_spend_cap " +
|
|
4246
|
+
"with a higher max_credits value. The tool re-reads and sends the current run, revision, " +
|
|
4247
|
+
"and blocking-step fences; stale actions fail without mutating newer work.",
|
|
4248
|
+
inputSchema: {
|
|
4249
|
+
kind: z.enum(["editor", "short"]),
|
|
4250
|
+
slug: z.string().describe("Editor or Short project slug"),
|
|
4251
|
+
action: z.enum(["edit_required_input", "review_spend_cap"]),
|
|
4252
|
+
input: z
|
|
4253
|
+
.record(z.string(), z.unknown())
|
|
4254
|
+
.optional()
|
|
4255
|
+
.describe("Required product input for edit_required_input"),
|
|
4256
|
+
max_credits: z
|
|
4257
|
+
.number()
|
|
4258
|
+
.int()
|
|
4259
|
+
.positive()
|
|
4260
|
+
.max(1_000_000)
|
|
4261
|
+
.optional()
|
|
4262
|
+
.describe("Higher approved cap for review_spend_cap"),
|
|
4263
|
+
},
|
|
4264
|
+
annotations: {
|
|
4265
|
+
title: "Resolve generation input",
|
|
4266
|
+
...WRITE,
|
|
4267
|
+
idempotentHint: true,
|
|
4268
|
+
},
|
|
4269
|
+
},
|
|
4270
|
+
tool(
|
|
4271
|
+
async (
|
|
4272
|
+
args: {
|
|
4273
|
+
kind: ProductKind;
|
|
4274
|
+
slug: string;
|
|
4275
|
+
action: "edit_required_input" | "review_spend_cap";
|
|
4276
|
+
input?: Record<string, unknown>;
|
|
4277
|
+
max_credits?: number;
|
|
4278
|
+
},
|
|
4279
|
+
client,
|
|
4280
|
+
) => {
|
|
4281
|
+
if (
|
|
4282
|
+
args.action === "edit_required_input" &&
|
|
4283
|
+
(!args.input || Object.keys(args.input).length === 0)
|
|
4284
|
+
) {
|
|
4285
|
+
return fail("edit_required_input requires a non-empty input object.");
|
|
4286
|
+
}
|
|
4287
|
+
if (
|
|
4288
|
+
args.action === "review_spend_cap" &&
|
|
4289
|
+
args.max_credits === undefined
|
|
4290
|
+
) {
|
|
4291
|
+
return fail("review_spend_cap requires max_credits.");
|
|
4292
|
+
}
|
|
4293
|
+
|
|
4294
|
+
const observed = await observedGenerationAction(
|
|
4295
|
+
client,
|
|
4296
|
+
args.kind,
|
|
4297
|
+
args.slug,
|
|
4298
|
+
args.action,
|
|
4299
|
+
{ statuses: ["needs_input"], requireStep: true },
|
|
4300
|
+
);
|
|
4301
|
+
const runId = observed.summary.run_id as string;
|
|
4302
|
+
const revision = observed.summary.revision as number;
|
|
4303
|
+
const stepKey = observed.stepKey as string;
|
|
4304
|
+
const body: Record<string, unknown> = {
|
|
4305
|
+
generation_run_id: runId,
|
|
4306
|
+
generation_revision: revision,
|
|
4307
|
+
step_key: stepKey,
|
|
4308
|
+
};
|
|
4309
|
+
if (args.action === "edit_required_input") body.input = args.input;
|
|
4310
|
+
else body.max_credits = args.max_credits;
|
|
4311
|
+
|
|
4312
|
+
const endpoint =
|
|
4313
|
+
args.action === "edit_required_input"
|
|
4314
|
+
? "generation/input"
|
|
4315
|
+
: "generation/spend-cap";
|
|
4316
|
+
const productPath = args.kind === "short" ? "shorts" : "editor";
|
|
4317
|
+
const requestKey = idemKey(
|
|
4318
|
+
"provide-generation-input",
|
|
4319
|
+
args.kind,
|
|
4320
|
+
args.slug,
|
|
4321
|
+
args.action,
|
|
4322
|
+
runId,
|
|
4323
|
+
String(revision),
|
|
4324
|
+
stepKey,
|
|
4325
|
+
JSON.stringify(args.input ?? {}),
|
|
4326
|
+
String(args.max_credits ?? ""),
|
|
4327
|
+
);
|
|
4328
|
+
const response = await client.post<{ data: unknown }>(
|
|
4329
|
+
`/${productPath}/${args.slug}/${endpoint}`,
|
|
4330
|
+
body,
|
|
4331
|
+
requestKey,
|
|
4332
|
+
);
|
|
4333
|
+
const resumedSummary = generationSummarySchema.safeParse(
|
|
4334
|
+
asRecord(asRecord(response).data).generation_summary,
|
|
4335
|
+
);
|
|
4336
|
+
if (!resumedSummary.success) {
|
|
4337
|
+
throw new Error(
|
|
4338
|
+
`The Hubfluencer ${args.kind} recovery response did not contain a valid generation_summary. The idempotent command may already have been accepted; re-read status before continuing.`,
|
|
4339
|
+
);
|
|
4340
|
+
}
|
|
4341
|
+
|
|
4342
|
+
return ok({
|
|
4343
|
+
slug: args.slug,
|
|
4344
|
+
kind: args.kind,
|
|
4345
|
+
action: args.action,
|
|
4346
|
+
generation_summary: resumedSummary.data,
|
|
4347
|
+
next: "wait_for_completion",
|
|
4348
|
+
});
|
|
4349
|
+
},
|
|
4350
|
+
),
|
|
4351
|
+
);
|
|
4352
|
+
|
|
3847
4353
|
// ── AI assists (free daily quota) ───────────────────────────────────────────
|
|
3848
4354
|
|
|
3849
4355
|
registerTool(
|
|
@@ -4031,6 +4537,7 @@ registerTool(
|
|
|
4031
4537
|
function conciseEditorState(value: unknown): Record<string, unknown> {
|
|
4032
4538
|
const data = asRecord(value);
|
|
4033
4539
|
const keys = [
|
|
4540
|
+
"generation_summary",
|
|
4034
4541
|
"slug",
|
|
4035
4542
|
"status",
|
|
4036
4543
|
"autopilot_status",
|
|
@@ -4086,11 +4593,12 @@ registerTool(
|
|
|
4086
4593
|
{
|
|
4087
4594
|
title: "Get editor state (review step)",
|
|
4088
4595
|
description:
|
|
4089
|
-
"Returns
|
|
4596
|
+
"Returns a concise editor review projection by default. Both formats validate and include the required generation_summary lifecycle authority. Pass response_format:'full' only when all authoring details are required.",
|
|
4090
4597
|
inputSchema: {
|
|
4091
4598
|
slug: z.string().describe("Editor project slug"),
|
|
4092
|
-
response_format: z.enum(["concise", "full"]).default("
|
|
4599
|
+
response_format: z.enum(["concise", "full"]).default("concise"),
|
|
4093
4600
|
},
|
|
4601
|
+
outputSchema: getEditorOutput,
|
|
4094
4602
|
annotations: { title: "Get editor", ...RO },
|
|
4095
4603
|
},
|
|
4096
4604
|
tool(
|
|
@@ -4099,9 +4607,23 @@ registerTool(
|
|
|
4099
4607
|
client,
|
|
4100
4608
|
) => {
|
|
4101
4609
|
const res = await client.get<{ data: unknown }>(`/editor/${args.slug}`);
|
|
4102
|
-
const data = asRecord(res).data;
|
|
4610
|
+
const data = asRecord(asRecord(res).data);
|
|
4611
|
+
const summary = generationSummarySchema.safeParse(
|
|
4612
|
+
data.generation_summary,
|
|
4613
|
+
);
|
|
4614
|
+
if (!summary.success) {
|
|
4615
|
+
throw new Error(
|
|
4616
|
+
"The Hubfluencer Editor response did not contain a valid generation_summary. Refresh after the API and MCP contracts are upgraded together.",
|
|
4617
|
+
);
|
|
4618
|
+
}
|
|
4619
|
+
const authoritativeData = {
|
|
4620
|
+
...data,
|
|
4621
|
+
generation_summary: summary.data,
|
|
4622
|
+
};
|
|
4103
4623
|
return ok(
|
|
4104
|
-
args.response_format === "full"
|
|
4624
|
+
args.response_format === "full"
|
|
4625
|
+
? authoritativeData
|
|
4626
|
+
: conciseEditorState(authoritativeData),
|
|
4105
4627
|
);
|
|
4106
4628
|
},
|
|
4107
4629
|
),
|
|
@@ -4468,15 +4990,87 @@ registerTool(
|
|
|
4468
4990
|
annotations: { title: "Generate segment", ...WRITE, idempotentHint: false },
|
|
4469
4991
|
},
|
|
4470
4992
|
tool(async (args: { slug: string; segment_id: number | string }, client) => {
|
|
4993
|
+
const requestKey = idemKey(
|
|
4994
|
+
"generate-segment",
|
|
4995
|
+
args.slug,
|
|
4996
|
+
String(args.segment_id),
|
|
4997
|
+
randomUUID(),
|
|
4998
|
+
);
|
|
4471
4999
|
const res = await client.post<{ data: unknown }>(
|
|
4472
5000
|
`/editor/${args.slug}/segments/${String(args.segment_id)}/generate`,
|
|
4473
5001
|
undefined,
|
|
4474
|
-
|
|
5002
|
+
requestKey,
|
|
4475
5003
|
);
|
|
4476
5004
|
return ok(asRecord(res).data ?? res);
|
|
4477
5005
|
}),
|
|
4478
5006
|
);
|
|
4479
5007
|
|
|
5008
|
+
registerTool(
|
|
5009
|
+
"retry_segment_generation",
|
|
5010
|
+
{
|
|
5011
|
+
title: "Retry the current failed segment generation",
|
|
5012
|
+
description:
|
|
5013
|
+
"Retries the exact failed Editor scene step in place for 0 additional credits. This is only " +
|
|
5014
|
+
"available when generation_summary advertises retry_generation for editor.scene.generate or " +
|
|
5015
|
+
"editor.scene.regenerate. The tool re-reads and submits the current run, revision, and step fences, " +
|
|
5016
|
+
"so it cannot retry a stale attempt or a different current scene.",
|
|
5017
|
+
inputSchema: {
|
|
5018
|
+
slug: z.string().describe("Editor project slug"),
|
|
5019
|
+
segment_id: z
|
|
5020
|
+
.union([z.number(), z.string()])
|
|
5021
|
+
.describe("Failed current segment id from get_editor"),
|
|
5022
|
+
},
|
|
5023
|
+
annotations: {
|
|
5024
|
+
title: "Retry segment generation",
|
|
5025
|
+
...WRITE,
|
|
5026
|
+
idempotentHint: true,
|
|
5027
|
+
},
|
|
5028
|
+
},
|
|
5029
|
+
tool(async (args: { slug: string; segment_id: number | string }, client) => {
|
|
5030
|
+
const observed = await observedGenerationAction(
|
|
5031
|
+
client,
|
|
5032
|
+
"editor",
|
|
5033
|
+
args.slug,
|
|
5034
|
+
"retry_generation",
|
|
5035
|
+
{
|
|
5036
|
+
workflows: ["editor.scene.generate", "editor.scene.regenerate"],
|
|
5037
|
+
statuses: ["failed"],
|
|
5038
|
+
requireStep: true,
|
|
5039
|
+
},
|
|
5040
|
+
);
|
|
5041
|
+
const runId = observed.summary.run_id as string;
|
|
5042
|
+
const revision = observed.summary.revision as number;
|
|
5043
|
+
const stepKey = observed.stepKey as string;
|
|
5044
|
+
const requestKey = idemKey(
|
|
5045
|
+
"retry-segment-generation",
|
|
5046
|
+
args.slug,
|
|
5047
|
+
String(args.segment_id),
|
|
5048
|
+
runId,
|
|
5049
|
+
String(revision),
|
|
5050
|
+
stepKey,
|
|
5051
|
+
);
|
|
5052
|
+
const response = await client.post<{ data: unknown }>(
|
|
5053
|
+
`/editor/${args.slug}/segments/${String(args.segment_id)}/retry`,
|
|
5054
|
+
{
|
|
5055
|
+
generation_run_id: runId,
|
|
5056
|
+
generation_revision: revision,
|
|
5057
|
+
step_key: stepKey,
|
|
5058
|
+
},
|
|
5059
|
+
requestKey,
|
|
5060
|
+
);
|
|
5061
|
+
const data = asRecord(asRecord(response).data);
|
|
5062
|
+
const retrySummary = generationSummarySchema.safeParse(
|
|
5063
|
+
data.generation_summary,
|
|
5064
|
+
);
|
|
5065
|
+
if (!retrySummary.success) {
|
|
5066
|
+
throw new Error(
|
|
5067
|
+
"The Hubfluencer Editor scene-retry response did not contain a valid generation_summary. The idempotent retry may already have been accepted; re-read the Editor before continuing.",
|
|
5068
|
+
);
|
|
5069
|
+
}
|
|
5070
|
+
return ok({ ...data, generation_summary: retrySummary.data });
|
|
5071
|
+
}),
|
|
5072
|
+
);
|
|
5073
|
+
|
|
4480
5074
|
registerTool(
|
|
4481
5075
|
"cancel_segment_generation",
|
|
4482
5076
|
{
|
|
@@ -4486,7 +5080,8 @@ registerTool(
|
|
|
4486
5080
|
"prevents a delayed command from cancelling a newer attempt. The token is returned by get_editor. " +
|
|
4487
5081
|
"Refunds that scene's charge idempotently (a free retry creates no refund). Use cancel_editor_batch or " +
|
|
4488
5082
|
"cancel_autopilot for workflow-owned scenes. After cancellation, edit the prompt if needed and call " +
|
|
4489
|
-
"generate_segment again.
|
|
5083
|
+
"generate_segment again. The raw REST route requires Idempotency-Key; reuse one only for transport retries " +
|
|
5084
|
+
"of this exact fenced cancellation. Scope: video:generate.",
|
|
4490
5085
|
inputSchema: {
|
|
4491
5086
|
slug: z.string().describe("Editor project slug"),
|
|
4492
5087
|
segment_id: z
|
|
@@ -4514,10 +5109,41 @@ registerTool(
|
|
|
4514
5109
|
},
|
|
4515
5110
|
client,
|
|
4516
5111
|
) => {
|
|
5112
|
+
const observed = await observedGenerationAction(
|
|
5113
|
+
client,
|
|
5114
|
+
"editor",
|
|
5115
|
+
args.slug,
|
|
5116
|
+
"cancel_generation",
|
|
5117
|
+
{
|
|
5118
|
+
workflows: ["editor.scene.generate", "editor.scene.regenerate"],
|
|
5119
|
+
statuses: ["queued", "running"],
|
|
5120
|
+
},
|
|
5121
|
+
);
|
|
5122
|
+
const segments = Array.isArray(observed.state.segments)
|
|
5123
|
+
? observed.state.segments.map(asRecord)
|
|
5124
|
+
: [];
|
|
5125
|
+
const segment = segments.find(
|
|
5126
|
+
(candidate) => String(candidate.id) === String(args.segment_id),
|
|
5127
|
+
);
|
|
5128
|
+
if (
|
|
5129
|
+
!segment ||
|
|
5130
|
+
segment.generation_claim_token !== args.generation_claim_token
|
|
5131
|
+
) {
|
|
5132
|
+
throw new Error(
|
|
5133
|
+
"The supplied generation_claim_token does not match the scene owned by the authoritative generation action; refresh get_editor before cancelling.",
|
|
5134
|
+
);
|
|
5135
|
+
}
|
|
4517
5136
|
const res = await client.post<{ data: unknown }>(
|
|
4518
5137
|
`/editor/${args.slug}/segments/${String(args.segment_id)}/cancel`,
|
|
4519
5138
|
{ expected_generation_claim_token: args.generation_claim_token },
|
|
4520
|
-
|
|
5139
|
+
idemKey(
|
|
5140
|
+
"cancel-segment-generation",
|
|
5141
|
+
args.slug,
|
|
5142
|
+
String(args.segment_id),
|
|
5143
|
+
observed.summary.run_id as string,
|
|
5144
|
+
String(observed.summary.revision),
|
|
5145
|
+
args.generation_claim_token ?? "none",
|
|
5146
|
+
),
|
|
4521
5147
|
);
|
|
4522
5148
|
return ok({
|
|
4523
5149
|
...asRecord(asRecord(res).data ?? res),
|
|
@@ -4534,15 +5160,14 @@ registerTool(
|
|
|
4534
5160
|
{
|
|
4535
5161
|
title: "Cancel a running Autopilot run",
|
|
4536
5162
|
description:
|
|
4537
|
-
"Stops an in-flight Autopilot run
|
|
4538
|
-
"orchestration chain (scenario → scenes → narration → voice → music → render) advances no further.
|
|
4539
|
-
"this when Autopilot is still running and you want to halt it. Any scenes already charged stay charged and " +
|
|
5163
|
+
"Stops an in-flight Autopilot run only when generation_summary advertises cancel_generation for the " +
|
|
5164
|
+
"editor.autopilot workflow. The orchestration chain (scenario → scenes → narration → voice → music → render) advances no further. Any scenes already charged stay charged and " +
|
|
4540
5165
|
"all completed work (generated scenes, voice, music, a finished render) is kept — a step already enqueued " +
|
|
4541
|
-
"may still finish, but nothing new is started.
|
|
4542
|
-
"
|
|
4543
|
-
"
|
|
4544
|
-
"
|
|
4545
|
-
"
|
|
5166
|
+
"may still finish, but nothing new is started. Transport retries are idempotent for the same observed run; " +
|
|
5167
|
+
"if cancellation is no longer advertised the tool fails closed without POST. It does NOT itself refund or " +
|
|
5168
|
+
"re-run anything. For an advertised Editor batch cancellation use cancel_editor_batch; to stop one " +
|
|
5169
|
+
"individually-generated scene use cancel_segment_generation. The raw REST route requires Idempotency-Key. " +
|
|
5170
|
+
"Scope: video:generate.",
|
|
4546
5171
|
inputSchema: { slug: z.string().describe("Editor project slug") },
|
|
4547
5172
|
annotations: {
|
|
4548
5173
|
title: "Cancel autopilot",
|
|
@@ -4553,14 +5178,35 @@ registerTool(
|
|
|
4553
5178
|
},
|
|
4554
5179
|
},
|
|
4555
5180
|
tool(async (args: { slug: string }, client) => {
|
|
5181
|
+
const observed = await observedGenerationAction(
|
|
5182
|
+
client,
|
|
5183
|
+
"editor",
|
|
5184
|
+
args.slug,
|
|
5185
|
+
"cancel_generation",
|
|
5186
|
+
{
|
|
5187
|
+
workflows: ["editor.autopilot"],
|
|
5188
|
+
statuses: ["queued", "running"],
|
|
5189
|
+
},
|
|
5190
|
+
);
|
|
5191
|
+
const receiptKey = idemKey(
|
|
5192
|
+
"cancel-autopilot",
|
|
5193
|
+
args.slug,
|
|
5194
|
+
observed.summary.run_id ?? randomUUID(),
|
|
5195
|
+
String(observed.summary.revision),
|
|
5196
|
+
);
|
|
5197
|
+
|
|
4556
5198
|
const res = await client.post<{ data: unknown }>(
|
|
4557
5199
|
`/editor/${args.slug}/autopilot/cancel`,
|
|
4558
|
-
|
|
4559
|
-
|
|
5200
|
+
{
|
|
5201
|
+
generation_run_id: observed.summary.run_id,
|
|
5202
|
+
},
|
|
5203
|
+
receiptKey,
|
|
4560
5204
|
);
|
|
4561
5205
|
return ok({
|
|
4562
5206
|
...asRecord(asRecord(res).data ?? res),
|
|
4563
5207
|
slug: args.slug,
|
|
5208
|
+
run_id: observed.summary.run_id,
|
|
5209
|
+
workflow: observed.summary.workflow,
|
|
4564
5210
|
charged: false,
|
|
4565
5211
|
next: "get_status",
|
|
4566
5212
|
});
|
|
@@ -4605,10 +5251,16 @@ registerTool(
|
|
|
4605
5251
|
args: { slug: string; segment_id: number | string; prompt?: string },
|
|
4606
5252
|
client,
|
|
4607
5253
|
) => {
|
|
5254
|
+
const requestKey = idemKey(
|
|
5255
|
+
"regenerate-segment",
|
|
5256
|
+
args.slug,
|
|
5257
|
+
String(args.segment_id),
|
|
5258
|
+
randomUUID(),
|
|
5259
|
+
);
|
|
4608
5260
|
const res = await client.post<{ data: unknown }>(
|
|
4609
5261
|
`/editor/${args.slug}/segments/${String(args.segment_id)}/regenerate`,
|
|
4610
5262
|
args.prompt !== undefined ? { prompt: args.prompt } : undefined,
|
|
4611
|
-
|
|
5263
|
+
requestKey,
|
|
4612
5264
|
);
|
|
4613
5265
|
return ok({
|
|
4614
5266
|
...asRecord(asRecord(res).data ?? res),
|
|
@@ -4647,6 +5299,7 @@ registerTool(
|
|
|
4647
5299
|
// Start it before the initial retrying GET so no preparatory request sits
|
|
4648
5300
|
// outside the advertised ~280s tool budget.
|
|
4649
5301
|
const overallDeadline = Date.now() + 280_000;
|
|
5302
|
+
const requestNonce = randomUUID();
|
|
4650
5303
|
const res = await client.get<{ data: unknown }>(
|
|
4651
5304
|
`/editor/${args.slug}`,
|
|
4652
5305
|
undefined,
|
|
@@ -4721,7 +5374,12 @@ registerTool(
|
|
|
4721
5374
|
await client.post(
|
|
4722
5375
|
`/editor/${args.slug}/segments/${String(sid)}/generate`,
|
|
4723
5376
|
undefined,
|
|
4724
|
-
|
|
5377
|
+
idemKey(
|
|
5378
|
+
"generate-all-segment",
|
|
5379
|
+
args.slug,
|
|
5380
|
+
String(sid),
|
|
5381
|
+
requestNonce,
|
|
5382
|
+
),
|
|
4725
5383
|
);
|
|
4726
5384
|
} catch (e) {
|
|
4727
5385
|
return ok({
|
|
@@ -4871,8 +5529,17 @@ registerTool(
|
|
|
4871
5529
|
},
|
|
4872
5530
|
},
|
|
4873
5531
|
tool(async (args: { slug: string; auto_unlock?: boolean }, client) => {
|
|
5532
|
+
// Narration is non-deterministic, so each explicit tool invocation owns a
|
|
5533
|
+
// fresh logical-attempt key. Keep that key outside withAssist so its one
|
|
5534
|
+
// post-unlock retry reuses the same replay fence instead of forking a
|
|
5535
|
+
// second narration attempt.
|
|
5536
|
+
const requestKey = idemKey("generate-narration", args.slug, randomUUID());
|
|
4874
5537
|
const res = await withAssist(client, args.auto_unlock ?? false, () =>
|
|
4875
|
-
client.post<{ data: unknown }>(
|
|
5538
|
+
client.post<{ data: unknown }>(
|
|
5539
|
+
`/editor/${args.slug}/generate-narration`,
|
|
5540
|
+
undefined,
|
|
5541
|
+
requestKey,
|
|
5542
|
+
),
|
|
4876
5543
|
);
|
|
4877
5544
|
return ok(asRecord(res).data ?? res);
|
|
4878
5545
|
}),
|
|
@@ -4957,10 +5624,11 @@ registerTool(
|
|
|
4957
5624
|
if (args.genre !== undefined) body.genre = args.genre;
|
|
4958
5625
|
if (args.tempo !== undefined) body.tempo = args.tempo;
|
|
4959
5626
|
if (args.instruments !== undefined) body.instruments = args.instruments;
|
|
5627
|
+
const requestKey = idemKey("generate-music", args.slug, randomUUID());
|
|
4960
5628
|
const res = await client.post<{ data: unknown }>(
|
|
4961
5629
|
`/editor/${args.slug}/generate-music`,
|
|
4962
5630
|
body,
|
|
4963
|
-
|
|
5631
|
+
requestKey,
|
|
4964
5632
|
);
|
|
4965
5633
|
return ok({
|
|
4966
5634
|
...asRecord(asRecord(res).data ?? res),
|
|
@@ -4990,10 +5658,11 @@ registerTool(
|
|
|
4990
5658
|
},
|
|
4991
5659
|
tool(async (args: { slug: string }, client) => {
|
|
4992
5660
|
try {
|
|
5661
|
+
const requestKey = idemKey("render-editor", args.slug, randomUUID());
|
|
4993
5662
|
const res = await client.post<{ data: unknown }>(
|
|
4994
5663
|
`/editor/${args.slug}/render`,
|
|
4995
5664
|
undefined,
|
|
4996
|
-
|
|
5665
|
+
requestKey,
|
|
4997
5666
|
);
|
|
4998
5667
|
return ok(asRecord(res).data ?? res);
|
|
4999
5668
|
} catch (e) {
|
|
@@ -5160,8 +5829,44 @@ registerTool(
|
|
|
5160
5829
|
annotations: { title: "Retry render", ...WRITE, idempotentHint: false },
|
|
5161
5830
|
},
|
|
5162
5831
|
tool(async (args: { slug: string; render_id: number | string }, client) => {
|
|
5832
|
+
const observed = await observedGenerationAction(
|
|
5833
|
+
client,
|
|
5834
|
+
"editor",
|
|
5835
|
+
args.slug,
|
|
5836
|
+
"retry_generation",
|
|
5837
|
+
{
|
|
5838
|
+
workflows: ["editor.render", "editor.render.retry"],
|
|
5839
|
+
statuses: ["failed"],
|
|
5840
|
+
},
|
|
5841
|
+
);
|
|
5842
|
+
const runId = observed.summary.run_id as string;
|
|
5843
|
+
const revision = observed.summary.revision as number;
|
|
5844
|
+
const rendersResponse = await client.get<{ data: unknown }>(
|
|
5845
|
+
`/editor/${args.slug}/renders`,
|
|
5846
|
+
);
|
|
5847
|
+
const renders = asRecord(rendersResponse).data;
|
|
5848
|
+
const render = Array.isArray(renders)
|
|
5849
|
+
? renders
|
|
5850
|
+
.map(asRecord)
|
|
5851
|
+
.find((candidate) => String(candidate.id) === String(args.render_id))
|
|
5852
|
+
: undefined;
|
|
5853
|
+
if (render?.status !== "failed" || render.generation_run_id !== runId) {
|
|
5854
|
+
throw new Error(
|
|
5855
|
+
"The selected render is not the failed render owned by the current retry action; refresh list_renders before continuing.",
|
|
5856
|
+
);
|
|
5857
|
+
}
|
|
5858
|
+
|
|
5859
|
+
const requestKey = idemKey(
|
|
5860
|
+
"retry-render",
|
|
5861
|
+
args.slug,
|
|
5862
|
+
String(args.render_id),
|
|
5863
|
+
runId,
|
|
5864
|
+
String(revision),
|
|
5865
|
+
);
|
|
5163
5866
|
const res = await client.post<{ data: unknown }>(
|
|
5164
5867
|
`/editor/${args.slug}/renders/${String(args.render_id)}/retry`,
|
|
5868
|
+
{ generation_revision: revision },
|
|
5869
|
+
requestKey,
|
|
5165
5870
|
);
|
|
5166
5871
|
return ok(asRecord(res).data ?? res);
|
|
5167
5872
|
}),
|
|
@@ -5820,7 +6525,10 @@ registerTool(
|
|
|
5820
6525
|
"Returns a normalized status {stage, terminal, ready, video_url, error} for a short, editor, " +
|
|
5821
6526
|
"tracking, or slider project. ready:true means the post-ready MP4 is at video_url — except for a " +
|
|
5822
6527
|
"slider (a carousel of stills, not a video): its video_url is always null, ready:true means every " +
|
|
5823
|
-
"slide is composited, and you read the per-slide image URLs with get_slider.
|
|
6528
|
+
"slide is composited, and you read the per-slide image URLs with get_slider. Editor/Short results also " +
|
|
6529
|
+
"include the required generation_summary; normalized lifecycle fields are derived from that authority. Editor " +
|
|
6530
|
+
"delivery freshness is separate: a completed stale timeline returns stage=editing_required and ready=false even " +
|
|
6531
|
+
"when a historical MP4 remains. During paid short " +
|
|
5824
6532
|
"generation, segments_completed / segments_total and active_segment_positions report real clip progress.",
|
|
5825
6533
|
inputSchema: { slug: z.string(), kind: kindSchema },
|
|
5826
6534
|
outputSchema: getStatusOutput,
|
|
@@ -5837,13 +6545,11 @@ registerTool(
|
|
|
5837
6545
|
{
|
|
5838
6546
|
title: "Wait for a render to finish",
|
|
5839
6547
|
description:
|
|
5840
|
-
"Polls status (emitting progress) until terminal or the wait budget is exhausted. " +
|
|
5841
|
-
"
|
|
5842
|
-
"
|
|
5843
|
-
|
|
5844
|
-
|
|
5845
|
-
'stage "idle" — a draft with nothing generating, start generation first) that only a further tool call ' +
|
|
5846
|
-
"can advance — do NOT just re-poll those. " +
|
|
6548
|
+
"Polls status (emitting progress) until terminal, the server withdraws polling, or the wait budget is exhausted. " +
|
|
6549
|
+
"For Editor/Short it polls only while generation_summary.timing.poll_after_ms is a positive integer; null stops polling. The " +
|
|
6550
|
+
"poll_interval_seconds argument is only a fallback for tracking/slider. timed_out is true only when the client budget " +
|
|
6551
|
+
"expires; polling_stopped is true when the server requests a stop so callers can invoke the advertised action immediately. " +
|
|
6552
|
+
"When polling stops, inspect generation_summary.available_actions and invoke only an advertised start/retry/input/review/download action; do not derive the next command from normalized stage. " +
|
|
5847
6553
|
"Pass save_path to download the finished MP4 when it's ready (e.g. to resume a make_video that timed out mid-render). " +
|
|
5848
6554
|
'Works for kind:"slider" too, but a carousel has no MP4 — it just goes terminal when composited; read the slide ' +
|
|
5849
6555
|
"images with get_slider (save_path is ignored for sliders).",
|
|
@@ -5863,7 +6569,9 @@ registerTool(
|
|
|
5863
6569
|
.min(5)
|
|
5864
6570
|
.max(60)
|
|
5865
6571
|
.optional()
|
|
5866
|
-
.describe(
|
|
6572
|
+
.describe(
|
|
6573
|
+
"Tracking/slider fallback interval (default 15s). Editor/Short use generation_summary.timing.poll_after_ms.",
|
|
6574
|
+
),
|
|
5867
6575
|
save_path: z
|
|
5868
6576
|
.string()
|
|
5869
6577
|
.optional()
|
|
@@ -5909,7 +6617,13 @@ registerTool(
|
|
|
5909
6617
|
saved_to = (await downloadTo(status.video_url, args.save_path))
|
|
5910
6618
|
.saved_to;
|
|
5911
6619
|
}
|
|
5912
|
-
const
|
|
6620
|
+
const polling_stopped = serverStoppedPolling(args.kind, status);
|
|
6621
|
+
const out = {
|
|
6622
|
+
...status,
|
|
6623
|
+
saved_to,
|
|
6624
|
+
timed_out: !status.terminal && !polling_stopped,
|
|
6625
|
+
polling_stopped,
|
|
6626
|
+
};
|
|
5913
6627
|
const links =
|
|
5914
6628
|
status.ready && status.video_url
|
|
5915
6629
|
? [mp4Link(status.video_url, args.slug)]
|
|
@@ -6725,7 +7439,7 @@ registerTool(
|
|
|
6725
7439
|
draft_script: z.string().optional(),
|
|
6726
7440
|
caption: z.string().optional(),
|
|
6727
7441
|
hashtags: z.array(z.string()).optional(),
|
|
6728
|
-
credit_estimate: z.record(z.unknown()).optional(),
|
|
7442
|
+
credit_estimate: z.record(z.string(), z.unknown()).optional(),
|
|
6729
7443
|
}),
|
|
6730
7444
|
)
|
|
6731
7445
|
.describe("1-12 variations to persist (echo them from the board)"),
|
|
@@ -8085,17 +8799,28 @@ registerTool(
|
|
|
8085
8799
|
// ── Boot ──────────────────────────────────────────────────────────────────────
|
|
8086
8800
|
|
|
8087
8801
|
async function main() {
|
|
8802
|
+
const args = withoutProfileArgs(process.argv.slice(2));
|
|
8088
8803
|
// `hubfluencer-mcp login [name]` runs the device-link login instead of the
|
|
8089
8804
|
// server. Single bin keeps the install idiomatic: `npx -y @hubfluencer/mcp`
|
|
8090
8805
|
// starts the server; `npx -y @hubfluencer/mcp login` connects an account.
|
|
8091
|
-
if (
|
|
8092
|
-
await runLogin(
|
|
8806
|
+
if (args[0] === "login") {
|
|
8807
|
+
await runLogin(args[1]);
|
|
8808
|
+
return;
|
|
8809
|
+
}
|
|
8810
|
+
if (args[0] === "doctor") {
|
|
8811
|
+
await runDoctor(activeToolProfile, args.includes("--json"));
|
|
8812
|
+
return;
|
|
8813
|
+
}
|
|
8814
|
+
if (args[0] === "install-skill") {
|
|
8815
|
+
await runInstallSkill(args);
|
|
8093
8816
|
return;
|
|
8094
8817
|
}
|
|
8095
8818
|
const transport = new StdioServerTransport();
|
|
8096
8819
|
await server.connect(transport);
|
|
8097
8820
|
// stderr is safe; stdout is reserved for the MCP protocol.
|
|
8098
|
-
console.error(
|
|
8821
|
+
console.error(
|
|
8822
|
+
`hubfluencer-mcp running on stdio (profile: ${activeToolProfile})`,
|
|
8823
|
+
);
|
|
8099
8824
|
}
|
|
8100
8825
|
|
|
8101
8826
|
main().catch((e) => {
|