npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@skyphusion-labs/vivijure-core

v1.0.0

Published

Shared Vivijure orchestration unifying vivijure-cf and vivijure-local: module registry, film pipeline, Platform ICD.

Readme

@skyphusion-labs/vivijure-core

Shared orchestration that unifies both Vivijure control panels. Module registry, film pipeline, planner helpers, and the Platform ICD that lets one codebase run on Cloudflare Workers (vivijure-cf) or on a home computer / any cloud server (vivijure-local). Product site: vivijure.com.

| Consumer | Role | |----------|------| | vivijure-cf | CF-native control plane (D1, R2, service bindings) | | vivijure-local | Homelab control plane (SQLite, S3/MinIO, HTTP sidecars) |

Status: Published on npm as @skyphusion-labs/vivijure-core and consumed by both hosts. vivijure-cf has adopted the published package (no duplicate orchestration src/ remains) and vivijure-local consumes it via semver.

Where it fits

vivijure-core is a library, not a runnable app: host repos depend on it and provide the runtime (Cloudflare Workers or Node). It has no end-user surface of its own; you consume it, you do not deploy it.

flowchart TD
    core[vivijure-core -- THIS REPO<br/>shared orchestration lib:<br/>module registry, film pipeline, Platform ICD]
    cf[vivijure-cf<br/>Cloudflare Workers host]
    local[vivijure-local<br/>Node / SQLite / S3 host]
    studio[Vivijure Studio contract<br/>projects, storyboard, cast, render]

    core --> cf
    core --> local
    cf --> studio
    local --> studio

Layout

src/
  platform/          Platform ICD + orchestratorContextFromPlatform()
  modules/           vivijure-module/2 contract, registry, conformance
  film-*.ts          Film + clip orchestration
  *-db.ts            D1-shaped metadata helpers (DbEnv)
  preflight.ts       Planner pre-render validation
  ...
docs/
  PLATFORM.md        Frozen adapter contract (ICD v1)
  ARCHITECTURE.md    Package boundary + dependency rules
  CORE-VS-MODULES.md Planner scaffold vs swappable modules (canonical)
  HOST-ADOPTION.md   CF + local host migration checklist

Install

npm (consumers):

npm install @skyphusion-labs/vivijure-core

Sibling clone (vivijure-local / vivijure dev):

~/dev/
  vivijure-core/
  vivijure-local/    # package.json: "^0.9.0" -- override with file:../vivijure-core locally
  vivijure-cf/
cd vivijure-core
npm ci
npm run build   # emits dist/ (also runs on npm install via prepare)
npm run typecheck && npm test

Publish (maintainers): merge to main, ensure repo secret NPM_TOKEN is set, then:

git tag vivijure-core-v0.9.0
git push origin vivijure-core-v0.9.0

Or trigger the Publish npm package workflow manually after bumping package.json version.

flatliners (Hetzner test box): retired 2026-07-16. Historical notes only: docs/FLATLINERS-DEV.md. Active GPU/studio host is propagandhi.

Key exports

| Entry | Contents | |-------|----------| | @skyphusion-labs/vivijure-core | Barrel: registry, orchestrators, conformance, ... | | @skyphusion-labs/vivijure-core/platform | Platform, orchestratorContextFromPlatform, R2 shim | | @skyphusion-labs/vivijure-core/film-orchestrator | Full film state machine | | @skyphusion-labs/vivijure-core/preflight | Storyboard pre-render checks |

Full subpath list: package.json exports field.

Platform ICD

Orchestration never touches Worker bindings or process.env directly. Hosts implement Platform (see docs/PLATFORM.md) and pass orchestratorContextFromPlatform(platform) into ported handlers.

License

AGPL-3.0-only. Same as the rest of the Vivijure constellation.