mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-08 10:46:06 +00:00
* feat(media-use): fast heygen CLI onboarding — actionable diagnostics, --doctor, free-usage framing media-use resolves bgm/sfx/image/icon (catalog), voice (TTS), and avatar video through the heygen CLI — the free-usage path. Agents hit a dead end when it's missing/unauthed. This guides them to install it fast, at the point of need. - Centralized actionable diagnostics (lib/heygen-cli.mjs): every heygen-backed resolve, on failure, prints the exact fix on stderr — not-installed (curl install one-liner), not-authenticated (heygen auth login), outdated (heygen update). Routed through heygen-search + voice-provider. stdout stays clean JSON. - resolve --doctor preflight (human + --json): checks heygen present/version/ auth, ffmpeg, ffprobe, node, a fix per gap. Exit 0 unless ffmpeg missing. - SKILL reframe: install-first callout; heygen as the free-usage gateway for bgm/image/voice/avatar-video; removed the false "degrades gracefully" claim. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H5k87mPZ4d6yiFwcWSb8Vv * fix(media-use): address #2065 review — classifier blocker, doctor contract, telemetry - Blocker: classifyHeygenError no longer treats a bare "not found" as CLI-missing (a stale voiceId → "voice not found" was sending users to reinstall a working CLI); keep only ENOENT + "command not found". Regression test added. - 401 now matches \b401\b, not any "401" substring (request IDs no longer misread). - --doctor: top-level ok requires ffmpeg AND ffprobe (matches SKILL.md); emits media_use_doctor_run telemetry; auth status queried with --json + JSON-only parse; auth timeout softened (network issue, not a false "unauthenticated"); node version gated on >= 18; version-without-semver labeled, not silently green. - Nits: install cmd uses && ; dropped the runResolveStatus alias. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H5k87mPZ4d6yiFwcWSb8Vv * fix(media-use): require OAuth-capable heygen CLI (v0.3.0), fix auth-status probe E2E against the live free-usage backend surfaced three issues: - HEYGEN_MIN_VERSION was 0.1.6, but that CLI can't use OAuth ("heygen-cli can't use OAuth yet") — free usage needs >= v0.3.0. Bumped the floor; --doctor now also nudges `heygen update` when a newer stable exists (always-latest). - Onboarding pointed at `heygen auth login --key` (API credits / billing); the free path is `--oauth` (subscription/free credits). Fixed install + auth guidance and SKILL.md accordingly. - `heygen auth status --json` is an unknown flag on v0.3.0 (JSON is the default output) — the added --json broke auth detection. Dropped it; verified --doctor reports authenticated on a real free (OAuth) account. Tests assert against the exported message constants instead of brittle literals. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H5k87mPZ4d6yiFwcWSb8Vv * fix(media-use): address #2065 review nits — one root cause on old CLI, floor policy - --doctor skips the auth check when the version check fails (below v0.3.0): an old CLI's auth probe fails for the same root cause, so users no longer see two errors ("outdated" + "not authenticated") — one root cause, one fix. - Comment links the auth-status probe's JSON-default assumption to HEYGEN_MIN_VERSION >= 0.3.0 so the floor isn't silently lowered later. - SKILL.md states the uniform v0.3.0 requirement (nudged even for API-key use). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H5k87mPZ4d6yiFwcWSb8Vv * fix(media-use): doctor prints one heygen row per fact The 'heygen on PATH' and 'heygen version' checks both rendered their detail as `heygen v0.3.0`, so --doctor printed two byte-identical green lines. Make the PATH row report presence ("heygen found on PATH") and let the version row own the version string — one row per fact, no duplicate. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H5k87mPZ4d6yiFwcWSb8Vv --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
101 lines
3.8 KiB
JavaScript
101 lines
3.8 KiB
JavaScript
// v0.3.0 is the first CLI that can use an OAuth session; v0.1.x/0.2.x reject it
|
|
// ("heygen-cli can't use OAuth yet"), and OAuth is what the free-usage path
|
|
// needs — so anything below this can't authenticate for free usage at all.
|
|
export const HEYGEN_MIN_VERSION = "0.3.0";
|
|
// Free-usage path is OAuth (`--oauth` → subscription/free credits); `--api-key`
|
|
// bills API credits, so the onboarding steers to OAuth.
|
|
export const HEYGEN_INSTALL_COMMAND =
|
|
"curl -fsSL https://static.heygen.ai/cli/install.sh | bash && heygen auth login --oauth";
|
|
export const HEYGEN_AUTH_COMMAND = "heygen auth login --oauth";
|
|
export const HEYGEN_UPDATE_COMMAND = "heygen update";
|
|
|
|
export const HEYGEN_NOT_FOUND_MESSAGE = `media-use: heygen CLI not found — it's the free path for bgm/image/voice/avatar-video. Install: ${HEYGEN_INSTALL_COMMAND}`;
|
|
export const HEYGEN_NOT_AUTHENTICATED_MESSAGE = `media-use: heygen CLI not authenticated (free usage) — run: ${HEYGEN_AUTH_COMMAND}`;
|
|
export const HEYGEN_OUTDATED_MESSAGE = `media-use: heygen CLI is outdated — run: ${HEYGEN_UPDATE_COMMAND} (need >= v${HEYGEN_MIN_VERSION})`;
|
|
|
|
const ACTIONABLE_MESSAGES = new Set([
|
|
HEYGEN_NOT_FOUND_MESSAGE,
|
|
HEYGEN_NOT_AUTHENTICATED_MESSAGE,
|
|
HEYGEN_OUTDATED_MESSAGE,
|
|
]);
|
|
|
|
export function classifyHeygenError(err) {
|
|
const detail = heygenErrorDetail(err);
|
|
const text = [err?.stderr, err?.stdout, err?.message, detail]
|
|
.map((value) => textOf(value))
|
|
.filter(Boolean)
|
|
.join("\n");
|
|
const lower = text.toLowerCase();
|
|
|
|
// Only ENOENT (spawn of a missing binary) or a shell's "command not found"
|
|
// mean the CLI itself is absent. A bare "not found" would misfire on the CLI's
|
|
// own resource errors (e.g. a stale voiceId → "voice not found"), whose message
|
|
// embeds the `heygen ...` command line — sending users to reinstall a CLI they
|
|
// just ran successfully. Keep this narrow.
|
|
if (err?.code === "ENOENT" || lower.includes("command not found")) {
|
|
return HEYGEN_NOT_FOUND_MESSAGE;
|
|
}
|
|
|
|
if (
|
|
lower.includes("unauthorized") ||
|
|
lower.includes("unauthenticated") ||
|
|
// \b401\b, not a bare "401" substring — otherwise request IDs (req-401abc),
|
|
// URLs, and retry-after headers would misclassify as an auth failure.
|
|
/\b401\b/.test(lower) ||
|
|
lower.includes("not logged in") ||
|
|
lower.includes("no api key") ||
|
|
lower.includes("missing api key") ||
|
|
lower.includes("invalid api key") ||
|
|
lower.includes("login required") ||
|
|
lower.includes("auth required") ||
|
|
lower.includes("authentication required")
|
|
) {
|
|
return HEYGEN_NOT_AUTHENTICATED_MESSAGE;
|
|
}
|
|
|
|
const version = firstSemver(text);
|
|
if (version && versionLessThan(version, HEYGEN_MIN_VERSION)) {
|
|
return HEYGEN_OUTDATED_MESSAGE;
|
|
}
|
|
|
|
return detail;
|
|
}
|
|
|
|
export function reportHeygenFailure(err, context) {
|
|
const message = classifyHeygenError(err);
|
|
if (ACTIONABLE_MESSAGES.has(message)) {
|
|
console.error(message);
|
|
} else {
|
|
console.error(`media-use: \`${context}\` failed: ${message}`);
|
|
}
|
|
}
|
|
|
|
export function firstSemver(text) {
|
|
const match = String(text || "").match(/\bv?(\d+)\.(\d+)\.(\d+)\b/);
|
|
return match ? `${match[1]}.${match[2]}.${match[3]}` : null;
|
|
}
|
|
|
|
export function versionLessThan(version, minimum) {
|
|
const left = versionParts(version);
|
|
const right = versionParts(minimum);
|
|
if (!left || !right) return false;
|
|
for (let i = 0; i < 3; i++) {
|
|
if (left[i] < right[i]) return true;
|
|
if (left[i] > right[i]) return false;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function heygenErrorDetail(err) {
|
|
return textOf(err?.stderr) || textOf(err?.stdout) || err?.message || String(err);
|
|
}
|
|
|
|
function textOf(value) {
|
|
return value == null ? "" : String(value).trim();
|
|
}
|
|
|
|
function versionParts(version) {
|
|
const match = String(version || "").match(/^v?(\d+)\.(\d+)\.(\d+)$/);
|
|
return match ? match.slice(1).map((part) => Number.parseInt(part, 10)) : null;
|
|
}
|