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

@scenicai/cli

v1.3.0

Published

Scenic is a CLI for interacting with the Unity Editor.

Readme

@scenicai/cli

Scenic is a CLI for interacting with the Unity editor.

Install

Use without global install:

npx @scenicai/cli --help

Install globally:

npm install -g @scenicai/cli
scenic --help

Requirements

  • Node.js >=22.18.0
  • A Unity project
  • Scenic Unity plugin installed in that project

Setup

Install the Unity plugin in the current Unity project:

scenic init

The execute function allows you to execute C# code directly in Unity. It's disabled by default. You can enable it explicitly per project:

scenic init --enable-execute

When Unity is running, init --enable-execute/--disable-execute applies the setting immediately and persists it. When Unity is not running, it persists the setting for the next Unity startup.

update is an alias for init and can be used to re-run this idempotently after SDK/CLI upgrades:

scenic update

Or provide a specific project path:

scenic --project /path/to/UnityProject init

Quick Start (3D Vertical Slice)

This creates a tiny playable setup: a tagged cylinder player with physics, a floor, and two enemy cubes. The example uses jq to capture IDs from --json output.

# 1) Ensure the Player tag exists (idempotent).
scenic tags add Player

# 2) Create Player (cylinder), then tag it as Player.
PLAYER_ID=$(scenic --json gameobject create Player --dimension 3d --primitive cylinder --position 0,1,0 | jq -r '.result.instanceId')
scenic gameobject update --instance-id "$PLAYER_ID" --tag Player

# 3) Add Rigidbody so the player can interact with physics.
scenic components add --instance-id "$PLAYER_ID" --type UnityEngine.Rigidbody --values '{"mass":70,"useGravity":true}'

# 4) Create a floor and two enemies.
scenic gameobject create ArenaFloor --dimension 3d --primitive plane --position 0,0,0 --scale 3,1,3
scenic gameobject create Enemy_A --dimension 3d --primitive cube --position 3,0.5,2
scenic gameobject create Enemy_B --dimension 3d --primitive cube --position -3,0.5,2

# 5) Inspect the scene and enter Play Mode.
scenic scene hierarchy --limit 200 --offset 0
scenic editor play

Run commands with JSON output:

scenic --json status

Inspect and update runtime settings:

scenic settings get
scenic settings update --execute-enabled true

Learn more about Scenic here.