mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
* feat(media-use): resolve official brand logos via a four-tier cascade Third-party brand logos (the meeting's 'credibility signals lost' gap) had no acquisition path: capture only grabs the product's own site assets, and HeyGen asset search returns generic look-alike icons for brand queries (0/3 in testing — an X-in-a-circle for LinkedIn). Workers could only fake a mark or drop it. New resolve type 'logo', four tiers verified by a 54-brand stress test (100% cascade hit across dev tools / big tech / non-tech / CN brands): - svgl — official full-color vector SVGs + wordmark variants (40/54 first-hits); search is substring-based, so entities pass through alias normalization (nextjs → 'next.js', aws → 'amazon web services') - simple-icons (pinned CDN build) — official monochrome glyphs; catches the long tail (nike, visa, toyota, wechat, bytedance) - github org avatar — known-org map only; a brand name is not a GitHub login, guessing risks same-named personal accounts - domain favicon (DuckDuckGo ip3) — small-raster last resort; sub-500B responses are DDG's placeholder and rejected; frozen with a low_res provenance flag (chip-size use only) logo joins the icon/image equivalence group (typesMatch) and the images/ subdir, so entity cache hits interop with figma-imported marks. A total miss falls through resolve's normal failure path — no special casing. HeyGen search stays the icon provider; it is deliberately absent from the logo cascade. Docs: media-use gap/types/providers tables + example; the five workflow banners now cover logos (catalog claim kept for media, 'from their official sources' added for logos); product-launch story-design and motion-graphics logo-reveal point at the new type; catalog surfaces (CLAUDE.md / README / docs) updated in lockstep. Verified: 19 unit tests + coverage row green; live smoke across all four tiers (linkedin→svgl, nike→simple-icons, heygen→github.avatar, amazon→favicon) plus a fabricated brand exiting 1 on the default miss path. oxlint + oxfmt clean. * test(media-use): sanction the four logo providers in the registry allowlist svgl / simple-icons / github.avatar / favicon.ddg join the sanctioned list — the logo cascade added in the previous commit. Full lib suite 95/95 green. * test(media-use): gate the logo cascade behavior in CI + single-fetch favicon tier Review follow-ups (miga-heygen, jrusso1020 on #2061): - Eight mocked-network tests pin what the manual 54-brand stress test only asserted: descriptor shape, alias retry (svgl non-array payload → next query, simple-icons 404 → next slug), network-error → null fallthrough, the sub-500B placeholder rejection, github's no-guessing (zero fetches for unmapped entities), and the real cascade order landing tier by tier under a mocked network. - faviconSearch now hands its verified bytes over as a local file, so the freeze step copies instead of re-downloading — one round-trip, and the size check is authoritative over what gets frozen. - The header's hit counts are labeled as a stress-test snapshot, not a live invariant. Full lib suite 103/103; live smoke re-verified (amazon → favicon.ddg, frozen .ico).
118 lines
5.6 KiB
JavaScript
118 lines
5.6 KiB
JavaScript
import { strict as assert } from "node:assert";
|
|
import { test } from "node:test";
|
|
import { existsSync } from "node:fs";
|
|
import { join, dirname } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import { listTypes, getProviders } from "./registry.mjs";
|
|
import { CAPABILITIES, listModels } from "./local-models.mjs";
|
|
|
|
// Capstone: media-use must actually OWN each hyperframes media weakness. This
|
|
// test enforces the weakness→owner matrix in SKILL.md so a claim can't rot — if
|
|
// a capability's entrypoint disappears, this fails.
|
|
|
|
const SKILL = join(dirname(fileURLToPath(import.meta.url)), "..", "..");
|
|
|
|
test("weakness: audio-only → media-use resolves image + icon", () => {
|
|
for (const t of ["image", "icon"]) {
|
|
assert.ok(getProviders(t).length > 0, `no provider for ${t}`);
|
|
}
|
|
});
|
|
|
|
test("weakness: no third-party brand logos → media-use resolves logo", () => {
|
|
assert.ok(listTypes().includes("logo"), "logo type missing");
|
|
assert.ok(getProviders("logo").length >= 4, "logo cascade incomplete");
|
|
});
|
|
|
|
test("weakness: no voice/audio gen → media-use exposes voice + the audio engine", () => {
|
|
assert.ok(listTypes().includes("voice"), "voice type missing");
|
|
assert.ok(getProviders("voice").length > 0, "no enabled voice provider (Bin approved)");
|
|
assert.ok(existsSync(join(SKILL, "audio", "scripts", "audio.mjs")), "audio engine missing");
|
|
});
|
|
|
|
test("weakness: scattered audio engine → consolidated under media-use (hyperframes-media gone)", () => {
|
|
assert.ok(existsSync(join(SKILL, "audio", "scripts", "lib", "tts.mjs")), "tts engine missing");
|
|
assert.ok(
|
|
existsSync(join(SKILL, "audio", "assets", "sfx", "manifest.json")),
|
|
"bundled SFX missing",
|
|
);
|
|
});
|
|
|
|
test("weakness: no media-ops → ops guidance reference exists", () => {
|
|
assert.ok(existsSync(join(SKILL, "references", "operations.md")), "operations.md missing");
|
|
});
|
|
|
|
test("weakness: no transcript-driven cutting → cut compiler entrypoints exist", async () => {
|
|
assert.ok(existsSync(join(SKILL, "scripts", "transcript-cut.mjs")), "transcript-cut missing");
|
|
assert.ok(existsSync(join(SKILL, "scripts", "lib", "cutlist.mjs")), "cutlist lib missing");
|
|
const cutlist = await import("./cutlist.mjs");
|
|
assert.equal(typeof cutlist.compileCutList, "function");
|
|
});
|
|
|
|
test("weakness: whisper.cpp is weak → better local ASR (Parakeet) entrypoint exists", async () => {
|
|
assert.ok(existsSync(join(SKILL, "scripts", "transcribe.mjs")), "transcribe.mjs missing");
|
|
const pw = await import("./parakeet-words.mjs");
|
|
assert.equal(typeof pw.mergeTokensToWords, "function", "token->word merge missing");
|
|
const lm = await import("./local-models.mjs");
|
|
const asr = lm.listModels("asr");
|
|
const parakeet = asr.find((m) => m.id === "parakeet-mlx");
|
|
assert.ok(parakeet && parakeet.rank === 0, "Parakeet must be the rank-0 preferred ASR");
|
|
});
|
|
|
|
test("weakness: no auto-duck/loudness → duck compiler and recipes exist", async () => {
|
|
assert.ok(existsSync(join(SKILL, "scripts", "audio-duck.mjs")), "audio-duck missing");
|
|
assert.ok(existsSync(join(SKILL, "scripts", "lib", "duck.mjs")), "duck lib missing");
|
|
assert.ok(existsSync(join(SKILL, "references", "operations.md")), "operations.md missing");
|
|
const duck = await import("./duck.mjs");
|
|
assert.equal(typeof duck.speechSpans, "function");
|
|
assert.equal(typeof duck.duckKeyframes, "function");
|
|
});
|
|
|
|
test("weakness: no cross-project memory → global cache + ingest entrypoints exist", async () => {
|
|
const cache = await import("./cache.mjs");
|
|
assert.equal(typeof cache.cachePut, "function");
|
|
assert.equal(typeof cache.promote, "function");
|
|
assert.equal(typeof cache.globalMediaDir, "function");
|
|
const freeze = await import("./freeze.mjs");
|
|
assert.equal(typeof freeze.isDirectMediaUrl, "function", "ingest URL guard missing");
|
|
});
|
|
|
|
// Wenbo (06-29): heygen free-usage is the default; local models are the opt-out
|
|
// fallback ("if user no, then local"). We still assert the fallback table is
|
|
// populated so the opt-out path stays real.
|
|
test("weakness: weak local defaults → local models exist as the opt-out fallback (tts/asr/upscale)", () => {
|
|
for (const cap of ["tts", "asr", "upscale"]) {
|
|
assert.ok(CAPABILITIES.includes(cap), `capability ${cap} missing`);
|
|
assert.ok(listModels(cap).length > 0, `no local models for ${cap}`);
|
|
}
|
|
});
|
|
|
|
test("weakness: no image generation → local mflux (RAM-graded) + codex upsell", async () => {
|
|
const ps = getProviders("image");
|
|
assert.ok(
|
|
ps.some((p) => p.name === "mflux.local" && typeof p.generate === "function"),
|
|
"local image gen missing",
|
|
);
|
|
assert.ok(
|
|
ps.some((p) => p.name === "codex.image_gen" && typeof p.generate === "function"),
|
|
"codex image upsell missing",
|
|
);
|
|
const lm = await import("./local-models.mjs");
|
|
assert.ok(lm.CAPABILITIES.includes("imagegen"), "imagegen capability missing");
|
|
assert.ok(lm.listModels("imagegen").length >= 3, "imagegen RAM ladder too small");
|
|
assert.equal(typeof lm.describeModelLadder, "function", "agent-facing ladder missing");
|
|
});
|
|
|
|
test("weakness: no video generation → local videogen ladder + heygen avatar upsell", async () => {
|
|
const lm = await import("./local-models.mjs");
|
|
assert.ok(lm.CAPABILITIES.includes("videogen"), "videogen capability missing");
|
|
assert.ok(lm.listModels("videogen").length >= 2, "videogen ladder too small");
|
|
const ops = existsSync(join(SKILL, "references", "operations.md"));
|
|
assert.ok(ops, "operations.md (avatar-upsell recipe) missing");
|
|
});
|
|
|
|
test("every resolve type has at least one enabled provider", () => {
|
|
for (const t of listTypes()) {
|
|
assert.ok(getProviders(t).length > 0, `type ${t} has no enabled provider`);
|
|
}
|
|
});
|