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

@autonomy-cloud/cast-sdk

v1.23.0

Published

<div align="center"> <h1>@autonomy-cloud/cast-sdk</h1>

Downloads

32

Readme

The CLI + SDK for building Cast modules — typed manifests of Objects, Fields, Roles, Workflows, Views, and LogicFunctions that install into a Lattice workspace. One of the eight Visca products. Built on the open Lattice Runtime foundation.

Quick start

The recommended way to start is with create-cast-module:

npx create-cast-module@latest my-module
cd my-module
yarn cast dev

Documentation

Full documentation is available at docs.latticeruntime.com/developers/extend/modules:

  • Getting Started — scaffolding, local server, authentication, dev mode
  • Building Apps — entity definitions, API clients, testing, CLI reference
  • Publishing — deploy, npm publish, marketplace

Manual installation

If you are adding @autonomy-cloud/cast-sdk to an existing project instead of using create-cast-module:

yarn add @autonomy-cloud/cast-sdk @autonomy-cloud/cast-client-sdk

Then add a lattice script to your package.json:

{
  "scripts": {
    "lattice": "lattice"
  }
}

Run yarn cast help to see all available commands.

Configuration

The CLI stores credentials per remote in ~/.lattice/config.json. Run yarn cast remote add to configure a remote, or yarn cast remote list to see existing ones.

Troubleshooting

  • Auth errors: run yarn cast remote add to re-authenticate.
  • Typings out of date: restart yarn cast dev to refresh the client and types.
  • Not seeing changes in dev: make sure dev mode is running (yarn cast dev).

Contributing

Development setup

git clone https://github.com/latticehq/lattice.git
cd lattice
yarn install

Development mode

npx nx run cast-sdk:dev

Production build

npx nx run cast-sdk:build

Running the CLI locally

npx nx run cast-sdk:start -- <command>

Resources