chore: import upstream snapshot with attribution
regression / regression-shards (style-16-prod style-9-prod style-17-prod iframe-render-compat variables-prod mp4-h265-sdr, shard-4) (push) Has been cancelled
regression / regression-shards (style-4-prod style-11-prod style-2-prod animejs-adapter typegpu-adapter parallel-capture-regression, shard-5) (push) Has been cancelled
regression / regression-shards (style-7-prod style-8-prod style-10-prod css-spinner-render-compat webm-transparency mp4-h264-sdr webm-vp9, shard-3) (push) Has been cancelled
regression / regression-shards (sub-composition-video style-18-prod raf-ball-render-compat font-variant-numeric sub-comp-t0 sub-comp-id-selector, shard-7) (push) Has been cancelled
Windows render verification / Detect changes (push) Has been cancelled
Windows render verification / Preflight (lint + format) (push) Has been cancelled
Windows render verification / Render on windows-latest (push) Has been cancelled
Windows render verification / Tests on windows-latest (push) Has been cancelled
CI / Detect changes (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Fallow audit (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Producer: integration tests (push) Has been cancelled
CI / Producer: unit tests (push) Has been cancelled
CI / File size check (push) Has been cancelled
CI / Test: skills (push) Has been cancelled
CI / Skills: manifest in sync (push) Has been cancelled
CI / CLI: npx shim (macos-latest) (push) Has been cancelled
CI / CLI: npx shim (ubuntu-latest) (push) Has been cancelled
CI / CLI: npx shim (windows-latest) (push) Has been cancelled
CI / SDK: unit + contract + smoke (push) Has been cancelled
CI / Test: runtime contract (push) Has been cancelled
CI / Studio: load smoke (push) Has been cancelled
CI / Smoke: global install (push) Has been cancelled
CI / CLI smoke (required) (push) Has been cancelled
CI / Semantic PR title (push) Has been cancelled
Player perf / Detect changes (push) Has been cancelled
Player perf / Preflight (lint + format) (push) Has been cancelled
Player perf / player-perf (push) Has been cancelled
Player perf / Perf: drift (push) Has been cancelled
Player perf / Perf: fps (push) Has been cancelled
Player perf / Perf: parity (push) Has been cancelled
Player perf / Perf: scrub (push) Has been cancelled
Player perf / Perf: load (push) Has been cancelled
preview-regression / Detect changes (push) Has been cancelled
preview-regression / Preflight (lint + format) (push) Has been cancelled
preview-regression / Preview parity (push) Has been cancelled
preview-regression / preview-regression (push) Has been cancelled
regression / regression (push) Has been cancelled
regression / Detect changes (push) Has been cancelled
regression / Preflight (lint + format) (push) Has been cancelled
regression / regression-shards (hdr-regression style-5-prod style-3-prod mov-prores, shard-1) (push) Has been cancelled
regression / regression-shards (overlay-montage-prod style-12-prod chat missing-host-comp-id png-sequence portrait-edge-bleed, shard-6) (push) Has been cancelled
regression / regression-shards (style-13-prod style-6-prod vignelli-stacking gsap-letters-render-compat audio-mux-parity, shard-8) (push) Has been cancelled
regression / regression-shards (style-15-prod hdr-hlg-regression style-1-prod many-cuts vfr-screen-recording render-symlinked-assets, shard-2) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Docs / Validate docs (push) Has been cancelled
Sync skills to ClawHub / Publish changed skills (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 12:58:35 +08:00
commit 85453da49f
4031 changed files with 710987 additions and 0 deletions
+217
View File
@@ -0,0 +1,217 @@
/**
* Archetype (c) — Headless agent script
*
* Shows: no browser, no persist adapter, no preview — pure editing engine.
* Agents: batch restyling, localization, A/B variants, programmatic animation.
* Explicit-id ops via query API — no selection, no mouse events.
*
* F1 payoff: headless is possible BECAUSE ops have explicit targets.
* Selection-implicit ops (old R0) would break here — no UI → no selection.
*/
import { openComposition } from "../src/index.js";
import type { ElementSnapshot } from "../src/index.js";
// ── Localization agent ────────────────────────────────────────────────────────
// Rewrites all text elements to a new locale. No browser, no preview.
export async function localize(html: string, translations: Map<string, string>): Promise<string> {
const comp = await openComposition(html);
const textElements = comp.find({ tag: "div" });
comp.batch(() => {
for (const id of textElements) {
const el = comp.getElement(id);
if (!el?.text) continue;
const translated = translations.get(el.text);
if (translated) comp.setText(id, translated);
}
});
return comp.serialize();
}
// ── Brand restyle agent ───────────────────────────────────────────────────────
// Apply brand colors to all elements with a matching class name.
export async function applyBrandColors(
html: string,
brandPrimary: string,
brandSecondary: string,
): Promise<string> {
const comp = await openComposition(html);
// Query: find elements by attribute pattern
const brandColorEls = comp
.getElements()
.filter((el) => el.attributes["data-brand-role"] === "primary");
const brandSecondaryEls = comp
.getElements()
.filter((el) => el.attributes["data-brand-role"] === "secondary");
comp.batch(() => {
for (const el of brandColorEls) {
comp.setStyle(el.id, { color: brandPrimary });
}
for (const el of brandSecondaryEls) {
comp.setStyle(el.id, { color: brandSecondary });
}
});
return comp.serialize();
}
// ── A/B variant agent ─────────────────────────────────────────────────────────
// Produce two HTML variants from one template.
export async function createABVariants(
html: string,
variantB: { headlineId: string; text: string; color: string },
): Promise<{ variantA: string; variantB: string }> {
const compA = await openComposition(html);
const variantAHtml = compA.serialize();
compA.dispose();
const compB = await openComposition(html);
compB.setText(variantB.headlineId, variantB.text);
compB.setStyle(variantB.headlineId, { color: variantB.color });
const variantBHtml = compB.serialize();
compB.dispose();
return { variantA: variantAHtml, variantB: variantBHtml };
}
// ── Asset swap agent ──────────────────────────────────────────────────────────
// F3: setAttribute handles img src, href, alt — the full attribute space.
export async function swapAssets(
html: string,
swaps: Array<{ id: string; src: string; alt?: string }>,
): Promise<string> {
const comp = await openComposition(html);
comp.batch(() => {
for (const swap of swaps) {
comp.setAttribute(swap.id, "src", swap.src);
if (swap.alt !== undefined) {
comp.setAttribute(swap.id, "alt", swap.alt);
}
}
});
return comp.serialize();
}
// ── Batch GSAP animation agent ────────────────────────────────────────────────
// Add staggered entrance animations to all text elements.
export async function addStaggeredEntrance(html: string, staggerDelay = 0.15): Promise<string> {
const comp = await openComposition(html);
const textEls = comp.find({ tag: "div" });
// Phase 3b feature-detect: addGsapTween throws UnsupportedOpError until the
// parser-backed engine lands — skip animation rather than crash the job.
const probeTween = {
method: "from",
position: 0,
duration: 0.5,
ease: "power3.out",
fromProperties: { opacity: 0, y: 30 },
} as const;
const first = textEls[0];
if (
!first ||
!comp.can({ type: "addGsapTween", target: first, id: "preflight", tween: probeTween })
) {
return comp.serialize();
}
comp.batch(() => {
textEls.forEach((id, i) => {
comp.addGsapTween(id, { ...probeTween, position: i * staggerDelay });
});
});
return comp.serialize();
}
// ── Composition metadata normalization ────────────────────────────────────────
export async function normalizeToPortrait(html: string): Promise<string> {
const comp = await openComposition(html);
comp.dispatch({ type: "setCompositionMetadata", width: 1080, height: 1920 });
return comp.serialize();
}
// ── Variable override agent ───────────────────────────────────────────────────
// Apply a brand kit as composition variable overrides.
export async function applyVariableKit(
html: string,
kit: Record<string, string | number | boolean>,
): Promise<string> {
const comp = await openComposition(html);
comp.batch(() => {
for (const [id, value] of Object.entries(kit)) {
comp.setVariableValue(id, value);
}
});
return comp.serialize();
}
// ── Inspection utility ────────────────────────────────────────────────────────
// Agents need to discover what's in a composition before editing.
export async function inspectComposition(html: string): Promise<{
elementCount: number;
textElements: ElementSnapshot[];
imageElements: ElementSnapshot[];
ids: string[];
}> {
const comp = await openComposition(html);
const all = comp.getElements();
const textElements = all.filter((el) => ["div", "p", "h1", "h2", "h3", "span"].includes(el.tag));
const imageElements = all.filter((el) => el.tag === "img");
comp.dispose();
return {
elementCount: all.length,
textElements,
imageElements,
ids: all.map((el) => el.id),
};
}
// ── Timing normalization agent ────────────────────────────────────────────────
export async function normalizeTiming(html: string, totalDuration: number): Promise<string> {
const comp = await openComposition(html);
const timedEls = comp.getElements().filter((el) => el.start !== null && el.duration !== null);
const lastEnd = timedEls.reduce(
(max, el) => Math.max(max, (el.start ?? 0) + (el.duration ?? 0)),
0,
);
if (lastEnd === 0) return comp.serialize();
const scale = totalDuration / lastEnd;
comp.batch(() => {
for (const el of timedEls) {
comp.setTiming(el.id, {
start: Math.round((el.start ?? 0) * scale * 100) / 100,
duration: Math.round((el.duration ?? 0) * scale * 100) / 100,
});
}
comp.dispatch({ type: "setCompositionMetadata", duration: totalDuration });
});
return comp.serialize();
}
+154
View File
@@ -0,0 +1,154 @@
/**
* Archetype (a) — React app embedding the SDK (T1 standalone)
*
* Shows: openComposition, event subscription, typed methods, selection sugar,
* batch + brand kit, useSyncExternalStore pattern, undo/redo, export.
*
* Note: JSX/React not imported here to keep this file framework-agnostic .ts.
* In a real React app: wrap createEditorSession in useEffect, subscribe with
* useSyncExternalStore (see comment blocks below).
*/
import { openComposition, ORIGIN_APPLY_PATCHES } from "../src/index.js";
import { createMemoryAdapter } from "../src/adapters/memory.js";
import type { Composition, ElementSnapshot } from "../src/index.js";
// ── Session factory ───────────────────────────────────────────────────────────
// Typically called once in useEffect(() => { createEditorSession(html).then(setComp) }, [])
export async function createEditorSession(html: string): Promise<Composition> {
const persist = createMemoryAdapter();
const comp = await openComposition(html, { persist });
// Persist failures surface as events, never fatal exceptions.
comp.on("persist:error", ({ error }) => {
console.error(`Auto-save failed: ${error.message}`);
// In a real app: show a toast notification
});
return comp;
}
// ── useSyncExternalStore integration ─────────────────────────────────────────
// React 18+ pattern:
//
// const selection = useSyncExternalStore(
// (cb) => comp.on('selectionchange', cb),
// () => comp.getSelection(),
// )
//
// Imperative equivalent for non-React consumers:
export function subscribeToSelection(
comp: Composition,
onChange: (ids: string[]) => void,
): () => void {
return comp.on("selectionchange", onChange);
}
// ── Property panel bindings ───────────────────────────────────────────────────
export function applyStyle(comp: Composition, id: string, prop: string, value: string): void {
// F1: explicit target — panel holds the id when rendering the current element
comp.setStyle(id, { [prop]: value });
}
export function applyFontSize(comp: Composition, id: string, px: number): void {
comp.setStyle(id, { fontSize: `${px}px` });
}
export function applyTextContent(comp: Composition, id: string, value: string): void {
comp.setText(id, value);
}
// Selection sugar — resolves getSelection() → explicit ops at call time.
// Equivalent to: ids = comp.getSelection(); comp.setStyle(ids, {...})
export function applyColorToSelection(comp: Composition, color: string): void {
comp.selection().setStyle({ color });
}
// ── Brand kit (batch) ─────────────────────────────────────────────────────────
// One undo entry, one persist write, one change event.
export function applyBrandKit(comp: Composition, kit: Record<string, string>): void {
comp.batch(() => {
for (const [variableId, value] of Object.entries(kit)) {
comp.setVariableValue(variableId, value);
}
});
}
// ── Timeline drag ─────────────────────────────────────────────────────────────
export function onClipDrag(comp: Composition, id: string, start: number, duration: number): void {
comp.setTiming(id, { start, duration });
}
// ── GSAP animation panel ──────────────────────────────────────────────────────
// Phase 3b: GSAP ops throw UnsupportedOpError until the parser-backed engine
// lands — feature-detect with can() and disable the panel control if false.
export function addBounceIn(comp: Composition, targetId: string): string | null {
const tween = {
method: "from",
position: 0,
duration: 0.5,
ease: "bounce.out",
fromProperties: { y: 40, opacity: 0 },
} as const;
if (!comp.can({ type: "addGsapTween", target: targetId, id: "preflight", tween })) return null;
return comp.addGsapTween(targetId, tween);
}
export function updateEase(comp: Composition, animationId: string, ease: string): void {
if (!comp.can({ type: "setGsapTween", animationId, properties: { ease } })) return;
comp.setGsapTween(animationId, { ease });
}
// ── Undo / redo ───────────────────────────────────────────────────────────────
export function undo(comp: Composition): void {
comp.undo();
}
export function redo(comp: Composition): void {
comp.redo();
}
// ── T3 host undo integration (embedded mode) ─────────────────────────────────
// When the SDK is embedded in a host with its own undo timeline:
export type HostHistoryEntry =
| { kind: "sdk"; patches: ReturnType<Composition["getOverrides"]>; inversePatches: unknown[] }
| { kind: "native"; data: unknown };
export function setupHostUndo(
comp: Composition,
pushToHostHistory: (entry: HostHistoryEntry) => void,
): () => void {
return comp.on("patch", ({ patches, inversePatches, origin }) => {
// Origin guard: skip re-emissions from applyPatches to avoid undo loops (F4)
if (origin === ORIGIN_APPLY_PATCHES) return;
pushToHostHistory({
kind: "sdk",
patches: patches as unknown as ReturnType<Composition["getOverrides"]>,
inversePatches: [...inversePatches],
});
});
}
// ── Export ────────────────────────────────────────────────────────────────────
export function exportHtml(comp: Composition): string {
return comp.serialize();
}
// ── Query API usage ───────────────────────────────────────────────────────────
export function findTextElements(comp: Composition): ElementSnapshot[] {
const ids = comp.find({ tag: "div" });
return ids.map((id) => comp.getElement(id)).filter((el): el is ElementSnapshot => el !== null);
}
+187
View File
@@ -0,0 +1,187 @@
/**
* Archetype (b) — Vanilla standalone editor (T1)
*
* Shows: openComposition with fs adapter pattern, typed methods (the docs page one surface),
* element handle, batch, dispatch (advanced layer), slider-burst coalescing intent,
* sub-composition editing intent, timeline label ops.
*
* This is the "zero-framework" path: plain TypeScript, no React, no Vue.
* Target: a tools developer building a custom editor UI from scratch.
*/
import { openComposition } from "../src/index.js";
import { createMemoryAdapter } from "../src/adapters/memory.js";
import type { Composition, GsapTweenSpec } from "../src/index.js";
// ── Initialize ────────────────────────────────────────────────────────────────
export async function initEditor(html: string): Promise<Composition> {
// Use createFsAdapter({ root: projectDir }) in production:
// import { createFsAdapter } from '@hyperframes/sdk/adapters/fs'
const persist = createMemoryAdapter();
const comp = await openComposition(html, {
persist,
coalesceMs: 300,
});
comp.on("persist:error", ({ error }) => {
showError(`Auto-save failed: ${error.message}${error.hint ? `${error.hint}` : ""}`);
});
return comp;
}
// ── Property panel — typed method layer (F10 docs page one) ──────────────────
export function setColor(comp: Composition, id: string, color: string): void {
comp.setStyle(id, { color });
}
export function setFontFamily(comp: Composition, id: string, family: string): void {
comp.setStyle(id, { fontFamily: family });
}
export function swapImage(comp: Composition, id: string, src: string): void {
// F3: setAttribute closes the attribute space — handles img src, href, alt, data-*, ARIA
comp.setAttribute(id, "src", src);
}
export function setAltText(comp: Composition, id: string, alt: string): void {
comp.setAttribute(id, "alt", alt);
}
export function removeElement(comp: Composition, id: string): void {
comp.removeElement(id);
// Inverse patch carries full serialized subtree — undo restores it.
}
// ── Element handle pattern ────────────────────────────────────────────────────
// comp.element(id) — curried handle, no stale-ref hazard
export function editHeadline(comp: Composition, headlineId: string): void {
const h = comp.element(headlineId);
h.setText("New headline");
h.setStyle({ color: "#FFD60A", fontSize: "96px" });
h.setTiming({ start: 0.5, duration: 3 });
}
// ── Slider burst (rapid dispatch — coalesced into one undo entry) ─────────────
export function onFontSizeSlider(comp: Composition, id: string, px: number): void {
// Each input event dispatches setStyle. History coalesces: same op + same target
// within coalesceMs → one undo entry (forward keeps latest, inverse keeps first prev).
// Persist queue writes once when the burst settles.
comp.setStyle(id, { fontSize: `${px}px` });
}
// ── Batch ─────────────────────────────────────────────────────────────────────
// One undo entry, one persist write, one subscriber notification.
export function applyTextPreset(
comp: Composition,
id: string,
preset: { fontSize: string; color: string; fontFamily: string },
): void {
comp.batch(() => {
comp.setStyle(id, {
fontSize: preset.fontSize,
color: preset.color,
fontFamily: preset.fontFamily,
});
});
}
// ── dispatch() — advanced layer for agents / automation ──────────────────────
// Typed methods are sugar; dispatch() remains public for data-shaped op emission.
export function applyOpFromJson(comp: Composition, opJson: unknown): void {
// Agents or automation scripts that emit JSON op objects use dispatch directly.
comp.dispatch(opJson as Parameters<Composition["dispatch"]>[0]);
}
// ── GSAP operations ───────────────────────────────────────────────────────────
// NOTE (Phase 3b): GSAP ops require the parser-backed engine and throw
// UnsupportedOpError until it lands. Feature-detect with can() first.
export function addFadeIn(comp: Composition, targetId: string, delay = 0): string | null {
const tween: GsapTweenSpec = {
method: "from",
position: delay,
duration: 0.4,
ease: "power2.out",
fromProperties: { opacity: 0 },
};
if (!comp.can({ type: "addGsapTween", target: targetId, id: "preflight", tween })) return null;
return comp.addGsapTween(targetId, tween);
}
export function addBounce(
comp: Composition,
targetId: string,
overrides?: Partial<GsapTweenSpec>,
): string | null {
const tween: GsapTweenSpec = {
method: "from",
position: 0,
duration: 0.6,
ease: "bounce.out",
fromProperties: { y: 60, opacity: 0 },
...overrides,
};
if (!comp.can({ type: "addGsapTween", target: targetId, id: "preflight", tween })) return null;
return comp.addGsapTween(targetId, tween);
}
// Keyframe editing (addGsapKeyframe / removeGsapKeyframe — v1, promoted 2026-06-09):
export function insertKeyframe(comp: Composition, animationId: string, position: number): void {
comp.dispatch({
type: "addGsapKeyframe",
animationId,
position,
value: { opacity: 1 },
});
}
// Timeline labels
export function addLabel(comp: Composition, name: string, position: number): void {
comp.dispatch({ type: "addLabel", name, position });
}
// ── Composition metadata ──────────────────────────────────────────────────────
export function resizeComposition(
comp: Composition,
width: number,
height: number,
duration: number,
): void {
comp.dispatch({ type: "setCompositionMetadata", width, height, duration });
}
// ── Export ────────────────────────────────────────────────────────────────────
export function exportComposition(comp: Composition): string {
return comp.serialize();
}
// ── Query API ─────────────────────────────────────────────────────────────────
export function listAllElementIds(comp: Composition): string[] {
return comp.getElements().map((el) => el.id);
}
export function findByText(comp: Composition, text: string): string[] {
return comp.find({ text });
}
// ── Lifecycle ─────────────────────────────────────────────────────────────────
export function cleanup(comp: Composition): void {
comp.dispose();
}
function showError(msg: string): void {
console.error(msg);
}