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

@classytic/vixel-agent

v0.2.0

Published

Host-mountable agent tool surface over the VixelSpec — emits AI-SDK-shaped editing + perception tools an arc-ai agent (in-process) or an MCP host (external Claude/Cursor) drives. Framework-free; the host injects an AgentContext.

Downloads

175

Readme

@classytic/vixel-agent

The host-mountable agent tool surface over a VixelSpec. A host implements one seam (AgentContext) and gets a set of editing + perception tools an LLM drives — exposed as an AI-SDK ToolSet (in-process @classytic/arc-ai) and as arc MCP bridges (external Claude/Cursor) from the same definitions. Framework-free: no ai, no @classytic/arc, no React imported — the shapes are structural.

Install

npm i @classytic/vixel-agent
# deps: @classytic/vixel-schema · peer: zod. No `ai`, no `@classytic/arc`, no React.

Use

import { createAgent } from '@classytic/arc-ai';
import { toAiSdkTools, vixelAgentInstructions, type AgentContext } from '@classytic/vixel-agent';

// 1. The host implements the one seam (server: spec store + headless renderer + providers).
const ctx: AgentContext = {
  getSpec: () => store.read(),
  applyEdit: (cmds, label) => store.applyCommands(cmds, label), // reduces via vixel-ui/shared applyCommand
  render: (frame, o) => renderer.frame(frame, o),
  renderRange: (a, b, n) => renderer.range(a, b, n),
  providers: { transcribe },
  capabilities: () => ({ canGenerate: false, canSearch: false, canTranscribe: true }),
};

// 2. In-process arc-ai agent — the tools are a plain AI-SDK ToolSet.
const agent = await createAgent({ model, instructions: vixelAgentInstructions, tools: toAiSdkTools(ctx) });

// 3. External MCP (arc) — the SAME specs, per-request tenant scope.
import { toMcpBridges } from '@classytic/vixel-agent';
app.register(mcpPlugin, { extraTools: buildMcpToolsFromBridges(toMcpBridges(mcpCtx => buildCtxFromAuth(mcpCtx))) });

Tools (v1)

| Group | Tools | |---|---| | Perception | get_timeline · describe_catalog · inspect_timeline · get_transcript | | Editing | add_clip · set_clip_properties · split_clip · remove_clip · ripple_delete · link_clips · add_marker · remove_marker |

Times are seconds. Edits are id-addressed EditorCommands the host reduces (vixel-agent never touches a store). All units/ids match @classytic/vixel-schema.

The AgentContext seam

| Member | Server (vidra-agent) | Browser (vidra-web) | |---|---|---| | getSpec / applyEdit | Mongo-persisted spec + applyCommand | live editor store (instant preview + undo) | | render / renderRange | headless Pixi renderer | mounted canvas | | providers | stock / TTS / transcribe | host-provided |

Status / follow-on

This is the v1 surface. The host's applyEdit reduces commands via @classytic/vixel-schema's applyCommand (the reducer now lives in the zero-dep schema, so a React-free server depends only on the schema). Generation / media-library / search tools are provider slots (AgentProviders) to fill next; wiring vidra-agent (arc-ai edit loop)

  • enabling the vidra-web composer is the remaining integration.