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

@blitzreels/eve

v0.2.1

Published

eve extension that gives durable AI agents BlitzReels video editing, clipping, generation, and export tools.

Readme

@blitzreels/eve

An eve extension that gives a durable AI agent BlitzReels video tools: long-form to short-form clipping, visual-QA repair, project inspection, snapshot previews, AI generation, and exports.

It wraps @blitzreels/sdk, so tool calls run in your app runtime against the same public API the CLI and MCP server use.

This repository contains only the Eve integration. The BlitzReels SDK, CLI, application, backend, infrastructure, and internal contracts are maintained privately.

Install

pnpm add @blitzreels/eve

Mount

Create the mount file in your agent. Its filename becomes the tool namespace.

import blitzreels from "@blitzreels/eve";

export default blitzreels({ apiKey: process.env.BLITZREELS_API_KEY! });

Create an API key from your BlitzReels workspace's Developer page, then put it in .env.local:

BLITZREELS_API_KEY=br_live_...

Keys are environment-bounded: br_live_... against production, br_test_... against a local or development runtime. Point baseUrl at the matching host when you use a test key.

The mount above exposes blitzreels__list_projects, blitzreels__create_clip_batch, and so on.

Config

| Key | Required | Default | | --- | --- | --- | | apiKey | yes | — | | baseUrl | no | https://www.blitzreels.com/api/v1 |

Tools

| Tool | Effect | Approval | | --- | --- | --- | | list_projects | read | — | | create_project | write | — | | inspect_project | read | — | | render_snapshot | read (renders preview frames) | — | | list_media | read | — | | get_media | read | — | | import_youtube | write, downloads source | once() | | create_clip_batch | write, spends credits | once() | | get_clip_batch | read | — | | list_clips | read | — | | reselect_clip | write | — | | repair_clip | write | — | | export_clip | write, renders | once() | | list_caption_words | read | — | | set_caption_look | write | — | | delete_clip_batch | destructive write | always() | | start_export | write, renders | once() | | get_export | read | — | | generate_video | write, spends credits | once() | | generate_image | write, spends credits | once() | | generate_faceless_video | write, spends credits | once() | | get_generation | read | — |

Every tool returns { ok: true, data } or { ok: false, error }. The error carries code, retryable, status, request_id, and upgrade_url so an agent can decide between retrying, stopping, and reporting a plan limit — it never throws a raw HTTP failure into the model's context.

Credit-spending tools derive their idempotency key from eve's durable callId, so a step that eve re-runs after an interruption reuses the original BlitzReels receipt instead of paying twice.

Overriding approval

Tighten or loosen a gate from the consuming agent with a directory mount:

import { export_clip } from "@blitzreels/eve/tools";
import { defineTool } from "eve/tools";
import { always } from "eve/tools/approval";

export default defineTool({ ...export_clip, approval: always() });

Use disableTool() in the same slot to remove a tool entirely.

Skill

The extension ships a blitzreels-clipping skill: the long-form-to-shorts procedure, the clipPresetId decision table, the QA repairMode decision table, and the polling contract. eve loads it on demand when a turn matches its description.

Alternative: connect over MCP

If you want the hosted tool surface instead of typed local tools, BlitzReels also runs a Streamable HTTP MCP server at https://www.blitzreels.com/api/mcp. It authenticates the signed-in user over OAuth — an API key is rejected — so wire it through Vercel Connect and give the eve session a user principal from route auth or a platform channel.

import { connect } from "@vercel/connect/eve";
import { defineMcpClientConnection } from "eve/connections";
import { once } from "eve/tools/approval";

export default defineMcpClientConnection({
  url: "https://www.blitzreels.com/api/mcp",
  description: "BlitzReels: clip long videos into shorts, edit projects, and export.",
  auth: connect("www.blitzreels.com/blitzreels"),
  approval: once(),
});

Use the extension when the agent acts as a workspace with its own API key, and when you want typed tools, tuned descriptions, approval defaults, and idempotent retries. Use the MCP connection when each end user should act as themselves, and when you want whatever the server exposes today with no package to upgrade. The connector UID above is whatever vercel connect create returns for your project.

Develop

pnpm build
pnpm typecheck

eve dev in a consuming agent rebuilds the extension on source changes.

Links