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

@kiwa-lab/cli

v2.0.2

Published

CLI for kiwa (init / doctor commands)

Downloads

432

Readme

@kiwa-lab/cli

🇬🇧 English🇯🇵 日本語

CLI for kiwa with init and doctor commands.

@kiwa-lab/cli scaffolds Playwright-based dApp E2E tests that use @kiwa-lab/dapp, and provides a quick prerequisite check for local setup.

Installation

pnpm add -D @kiwa-lab/cli

# or use it without installing
pnpm dlx @kiwa-lab/cli init
pnpm dlx @kiwa-lab/cli doctor

Bonus — Claude Code plugin

Use kiwa with Claude Code? Install the matching skill chain in one command/kiwa:kiwa-design, /kiwa:kiwa-play, /kiwa:kiwa-forge, /kiwa:kiwa-hardhat, /kiwa:kiwa-vitest, /kiwa:kiwa-api, /kiwa:kiwa-review become available across any dApp project. (The /kiwa:kiwa-test one-shot orchestrator requires examples/ and is kiwa-monorepo-only.)

# In Claude Code:
/plugin marketplace add cardene777/kiwa
/plugin install kiwa@kiwa-marketplace
/reload-plugins

Plugin skills are namespaced by plugin name (/kiwa:kiwa-design, not /kiwa-design). See kiwa README — Option A for the full skill list.

Commands

kiwa init

Scaffolds Playwright E2E files into an existing dApp project and wires the generated test to @kiwa-lab/dapp.

pnpm dlx @kiwa-lab/cli init
# creates: e2e/connect.spec.ts + playwright.config.ts
# also updates package.json and creates tsconfig.json if missing

Available flags include --force, --testDir, --config-suffix, --script-key, and --with-deploy.

kiwa doctor

Checks that the required anvil binary is available in the current environment.

pnpm dlx @kiwa-lab/cli doctor

kiwa anvil seed <script> --out <path>

Runs <script> (any executable .mjs / .js) against a fresh anvil instance and dumps the full chain state to <path> via anvil --dump-state. The script reads process.env.ANVIL_RPC_URL to deploy contracts and prepare seed data; on exit, anvil writes the state file that downstream vitest tests can pass to setupTestEnv({ anvil: { loadState: ... } }) for instant chain startup.

pnpm dlx @kiwa-lab/cli anvil seed tests/seed.ts --out tests/fixtures/state.json
# OK seeded state at /…/tests/fixtures/state.json (port 49xxx)

Flags: --chain-id <n> (default 31337), --port <n> (default: random free port).

Related

Author

cardeneGitHub / X

License

MIT