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

makefx

v1.0.7

Published

Command-line interface for AI-assisted game asset production with Make Effects.

Readme

makefx

Command-line interface for Make Effects, an AI media workspace for game assets, variants, references, and lineage.

makefx lets local developers, scripts, and coding agents create and manage website-backed assets from the terminal: generate images, audio, and video; upload local media; inspect variants; download outputs; watch real-time space events; and curate selected variants.

Install

npm install -g makefx
makefx --version

Requirements:

  • Node.js 20 or newer
  • A Make Effects account at https://makefx.app

The npm package installs a bundled executable and does not declare runtime dependencies.

Quick Start

makefx login
makefx spaces create "My Game Assets" --init

makefx generate "A cozy pixel-art market background" \
  --name "Market Background" \
  --type scene \
  -o art/market.png

makefx audio sfx generate "A crisp magical item pickup" \
  --name "Item Pickup" \
  -o audio/item-pickup.wav

makefx video generate "A looping idle animation for a tiny robot" \
  --name "Robot Idle" \
  --type animation \
  --duration 6 \
  --resolution 1080p \
  --tier fast \
  -o video/robot-idle.mp4

Authentication

makefx login
makefx logout

login opens a browser-based sign-in flow and stores CLI credentials in the user config directory. Credentials are separate from project bindings and are not written into your repository.

Project Binding

Bind the current directory to a Make Effects space:

makefx init --space YOUR_SPACE_ID

This writes .inventory/config.json with the target environment and space ID. It does not store assets, prompts, media files, provider keys, or auth tokens. Inside an initialized project, commands can omit --space and --env.

The CLI defaults to production at https://makefx.app. Use --env stage for staging, or --local for a local development server.

Common Workflows

Inspect and download tracked assets:

makefx assets
makefx assets show ASSET_ID --json
makefx assets download VARIANT_ID -o references/variant.png

Upload local media:

makefx upload hero.png --name "Hero Character" --type character
makefx upload theme.mp3 --name "Theme Music" --type audio
makefx upload cutscene.mp4 --name "Cutscene" --type video

Refine or derive from references:

makefx refine --variant VARIANT_ID "make it evening, with warmer lights" \
  -o art/market-evening.png

makefx derive \
  --refs CHARACTER_VARIANT_ID,BACKGROUND_VARIANT_ID \
  --name "Hero In Market" \
  --type scene \
  "Place the hero naturally in the market" \
  -o art/hero-market.png

Compare and choose outputs:

makefx variants star VARIANT_ID
makefx variants rate VARIANT_ID approved
makefx assets set-active ASSET_ID VARIANT_ID

Watch real-time space activity:

makefx listen --space YOUR_SPACE_ID
makefx listen --space YOUR_SPACE_ID --json

Agent And Script Usage

Many commands support --json for stable machine-readable output. Use JSON outputs for automation instead of parsing human-readable tables.

makefx spaces create "Agent Test Space" --init --json
makefx assets --json
makefx runs show --latest --debug --json

Debug run manifests are local troubleshooting traces for generation commands:

makefx runs --debug
makefx runs show --latest --debug

The website remains the source of truth for spaces, assets, variants, recipes, lineage, and stored media.

Command Groups

| Command | Purpose | |---------|---------| | login, logout | Manage CLI authentication | | spaces, init | Create spaces and bind local projects | | generate, refine, derive, batch | Generate image assets | | audio | Generate speech, dialogue, music, and sound effects | | video | Generate, refine, and derive video assets | | upload | Upload local media files and return Space IDs for chaining | | assets, variants | Inspect, download, curate, retry, or delete outputs | | listen | Stream real-time space events | | runs | Inspect local debug manifests | | usage | Inspect platform storage and workflow consumption | | spend | Inspect admin provider cost summaries | | billing | Inspect billing sync and operational status |

Run makefx --help or makefx help <command> for command-specific options.

Troubleshooting

  • If a command says you are not authenticated, run makefx login.
  • If a command cannot find a space, run makefx init --space YOUR_SPACE_ID or pass --space YOUR_SPACE_ID.
  • If a generation command times out after creating a variant, resume with --follow VARIANT_ID and the same output path.
  • If automation needs stable output, add --json where supported.

Links

  • App: https://makefx.app
  • CLI docs: https://makefx.app/docs/cli
  • Media generation guide: https://makefx.app/docs/media-playbooks
  • Source: https://github.com/krasnoperov/inventory

Version: 1.0.7