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

@vekexasia/fucina

v0.0.1

Published

Label-driven AI workflows for GitHub repositories.

Readme

Fucina

Issue dentro, PR fuori.

Fucina is a thin layer over Sandcastle for label-driven AI workflows on GitHub.com repositories. Fucina owns labels, GitHub workflow conventions, prompts, configuration loading, and CLI setup; Sandcastle owns agent execution, sandboxing, branch strategy, sessions, and provider integration.

MVP labels

Operational trigger labels are one-shot buttons: Fucina removes only the label that triggered the run when that run starts.

  • fucina:explore - analyze an open issue and comment with findings
  • fucina:implement - implement an open issue and create a draft PR
  • fucina:review - publish a read-only GitHub PR Review
  • fucina:address-feedback - address feedback on an internal PR branch
  • fucina:in-progress - visible running state
  • fucina:blocked - last run failed or was refused; removed on retry

There is no MVP readiness label, fucina:queued, or fucina:update-branch. Runs share repository-wide GitHub Actions concurrency with cancel-in-progress: false, so GitHub Actions is the queue.

Install in a repo

npx @vekexasia/fucina@<version> install

fucina install writes workflows and .fucina/config.json, creates or updates labels, never commits, and does not overwrite existing files without confirmation or --force. Use install-labels only for label maintenance.

Target repositories pin Fucina in the generated workflows with npx @vekexasia/fucina@<version>; Fucina is not a repository dependency.

Configuration

Fucina reads environment variables first, then optional .fucina/config.json. Required values must come from one of those sources.

Minimum config keys:

  • agent - one of Sandcastle providers claudeCode, codex, or pi
  • model
  • agentCliVersion - pinned CLI version installed by Fucina
  • maxIterations - optional, defaults to 1

Optional repository variable:

  • FUCINA_ALLOWED_ACTORS - comma-separated GitHub usernames allowed to run Fucina. When omitted, Fucina allows repository collaborators with write, maintain, or admin permission.

Optional secret:

  • AGENT_PAT - Fucina uses AGENT_PAT || GITHUB_TOKEN and fails clearly when a PAT is required.

Sensitive instruction path protection

Fucina protects files that can influence agent instructions from prompt injection by untrusted PR authors.

The sensitiveInstructionPaths config key defaults to:

  • .fucina/**
  • .github/workflows/**
  • AGENTS.md
  • CLAUDE.md
  • .claude/**
  • .codex/**
  • .pi/**

This list can be completely overridden in .fucina/config.json, but not via environment variables.

When fucina:review runs on a PR:

  1. If the PR modifies files matching sensitive paths AND the PR author is not an Authorized Actor, the review blocks with fucina:blocked
  2. An error comment is posted with the exact command to approve: /fucina trust-instructions <full-sha>
  3. An Authorized Actor can post that slash command as a PR comment to explicitly trust the changes
  4. The approval is SHA-specific; if the PR is updated, a new approval is required

This prevents untrusted contributors from injecting malicious instructions into agent workflows while allowing Authorized Actors to explicitly review and approve instruction changes.

Local development

npm install
npm run typecheck
npm run build