Files
hyperframes/packages/cli/src/registry/index.ts
T
Miguel Ángel d9d4df4265 feat(cli): add --tag flag to hyperframes add for bulk install
Install all registry blocks matching a tag in one command:

  hyperframes add --tag vfx       # installs all 7 VFX blocks
  hyperframes add --tag captions  # installs all 5 caption blocks

The resolver loads each item's full manifest to check tags, then
installs matching blocks sequentially. Failed items are skipped
with a warning so one broken block doesn't abort the batch.

Also supports JSON output for CI: hyperframes add --tag vfx --json
2026-05-06 00:52:23 -07:00

22 lines
363 B
TypeScript

export {
DEFAULT_REGISTRY_URL,
fetchRegistryManifest,
fetchItemManifest,
fetchItemFile,
} from "./remote.js";
export {
listRegistryItems,
loadAllItems,
resolveItem,
resolveItemsByTag,
type ResolveOptions,
} from "./resolver.js";
export {
installItem,
assertSafeTarget,
type InstallOptions,
type InstallResult,
} from "./installer.js";