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

create-zx-vibes

v0.2.2

Published

Create zx-vibes ZX Spectrum agent projects.

Downloads

769

Readme

create-zx-vibes

Project generator for zx-vibes ZX Spectrum 48K agent projects.

Current package version in this repository: 0.2.2.

Usage

pnpm create zx-vibes my-game --template game
cd my-game
npm run doctor
npm run build
npm run verify
npm run preview

Available templates:

  • game
  • platformer

Dependencies install by default. Use --no-install for offline work or when testing an unpublished local checkout:

pnpm create zx-vibes my-platformer --template platformer --no-install

The CLI also accepts --install explicitly, but it is already the default.

For a complete install-to-verified-project manual, including Codex, Claude Code, optional MCP setup, and the manual CLI loop, see docs/manual/. The published manual lives under the zx-vibes Pages site at https://alvaromah.github.io/zx-vibes/manual/.

Generated Project Contract

Generated projects include:

  • src/main.asm as the assembler entry point.
  • lib/ helpers for screen and keyboard routines.
  • tests/smoke.test.json declarative verification.
  • zx.config.json build configuration.
  • npm scripts for doctor, build, run, screen, test, verify, preview, and advanced zxs passthrough commands.
  • AGENTS.md and CLAUDE.md generated from the shared agent playbook.
  • .mcp.json for Claude-compatible MCP clients.
  • docs/agents/codex-mcp.toml for Codex MCP configuration.
  • local docs/reference/ and docs/agents/skills/ copies.

Starter package metadata currently uses a zx-vibes dev dependency floor of ^0.2.1, which resolves to the latest compatible release during normal installs.

Relationship To zxs new

create-zx-vibes and zxs new intentionally create the same project contract: default install, --no-install, MCP config files, local reference docs, local agent skills, and the same starter templates.

Development

From the repository root:

pnpm --filter create-zx-vibes build
pnpm --filter create-zx-vibes typecheck
pnpm --filter create-zx-vibes lint
pnpm --filter create-zx-vibes test
pnpm --filter create-zx-vibes run check:assets

check:assets verifies that the package copy of root starters/ and docs/ has not drifted.

License

MIT. Generated projects depend on zx-vibes, whose emulator dependency includes a ZX Spectrum 48K ROM under the separate notice in the emulator package's rom/README.md.