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

@assemblyline-agents/higgsfield

v4.0.0

Published

Official Assembly Line sandbox CLI connection and skills for Higgsfield creative media workflows.

Readme

@assemblyline-agents/higgsfield

Official Assembly Line connection plugin for Higgsfield's CLI-first coding-agent workflow. Higgsfield remains a normal filesystem-declared connection; its transport runs the official CLI inside the active agent sandbox rather than launching a process on the Assembly Line gateway.

Install and configure

assembly-line add higgsfield agent

This creates connections/higgsfield.ts:

import { defineHiggsfieldConnection } from "@assemblyline-agents/higgsfield";

export default defineHiggsfieldConnection({
  // Reviewed tools are enabled by default.
});

Set access: "approval-required" when generation and editing should pause for approval.

Use a read-only policy when the agent should inspect Higgsfield without generating or editing:

export default defineHiggsfieldConnection({ access: "read-only" });

The connection exposes higgsfield__read for discovery, status, cost, history, and polling, plus higgsfield__write for upload, generation, training, editing, reframing, and assembly. The write operation can create remote assets and consume account credits.

Assign it to a subagent with the same connection abstraction:

import { defineAgent, useModel } from "@assemblyline-agents/core";

export default defineAgent({
  description: "Create and edit social video.",
  connections: ["higgsfield"],
  setup() {
    useModel("openai/gpt-5.4-mini");
  }
});

Why the transport is a sandbox CLI

The connection definition compiles as protocol: "cli" and transport: "sandbox". Tool discovery, subagent scoping, access policy, approval, tracing, and filesystem activation stay in the connection layer. At execution time, Assembly Line invokes the reviewed command in the active run sandbox, where it can consume /files/... attachments and write results to /workspace.

Model-authored shell source is never accepted. The plugin validates the official command surface, Assembly Line shell-quotes each argument, hydrates logical input paths, and adds --json --no-color.

Sandbox setup

Install the official CLI in the sandbox image or template:

curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh

Then authenticate interactively inside the persistent sandbox belonging to that user:

higgsfield auth login

Do not bake CLI credentials into a shared image or reuse one authenticated sandbox across unrelated users. Higgsfield's current CLI login is browser-based OAuth with a loopback callback, so sandbox provisioning must make that login reachable. If the sandbox is ephemeral, retain the user's authenticated CLI home with a user-scoped snapshot or persistent volume.

The plugin rejects auth-token, website repository-token, and secret-management commands.

Official references:

  • https://higgsfield.ai/cli
  • https://github.com/higgsfield-ai/cli