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

@solidactions/cli

v1.10.3

Published

SolidActions CLI - Deploy and manage workflow automation

Readme

SolidActions CLI

Deploy and manage workflow automation with SolidActions.

Installation

npm install -g @solidactions/cli

Quick Start

solidactions login <api-key>                          # Authenticate (prompts for workspace)
solidactions init my-project                          # Scaffold a new project (files + AI skills)
cd my-project
solidactions project deploy my-project -e production  # Deploy it
solidactions run start my-project <workflow>          # Trigger a workflow
solidactions run view <run-id>                        # Inspect a run

Configuration

The CLI stores host, apiKey, and workspaceId in a JSON config file. Two locations are supported:

  • Global~/.solidactions/config.json. Used by default, shared across all folders for a single user.
  • Local./.solidactions/config.json. Scoped to a project folder; takes precedence over the global file when running commands from inside that folder (or any subdirectory — the CLI walks up looking for it).

Resolution order

For each field (host, apiKey, workspaceId), the CLI resolves independently in this order:

  1. Environment variables: SOLIDACTIONS_HOST, SOLIDACTIONS_API_KEY, SOLIDACTIONS_WORKSPACE_ID
  2. Nearest local ./.solidactions/config.json (walking up from cwd)
  3. Global ~/.solidactions/config.json

You can mix: e.g., set only SOLIDACTIONS_WORKSPACE_ID in the environment while letting host and apiKey come from a file.

solidactions login flags

  • --local — write config to ./.solidactions/config.json in the current folder.
  • --global — write config to ~/.solidactions/config.json (today's default).
  • --gitignore — with --local, auto-add .solidactions/ to .gitignore without prompting.

In interactive shells, login without --local/--global prompts for a location. In non-interactive contexts, one of the flags is required.

solidactions logout flags

  • --local — remove only the nearest local config (walks up from cwd).
  • --global — remove only the global config.
  • Bare logout — removes the nearest local if present, otherwise removes global.

Debugging resolution

Set SOLIDACTIONS_DEBUG=1 on any command to print the resolved configuration and per-field sources to stderr before the command runs. solidactions whoami also shows this information.

Use case: multiple AI agents in parallel

If you run multiple AI coding agents in different project folders simultaneously, either:

  • Run solidactions login <key> --local in each folder so each has its own config, or
  • Set SOLIDACTIONS_API_KEY / SOLIDACTIONS_WORKSPACE_ID in the environment each agent uses (no files to share or stomp).

Commands

Use solidactions <command> --help for full flag details on any command.

Top-level

| Command | Description | |---------|-------------| | login <api-key> | Authenticate CLI with API key | | logout | Remove saved credentials | | whoami | Show current configuration | | init [directory] | Scaffold a new project (files + AI skills) | | dev <file> | Run a workflow locally (no deploy needed) |

project

| Command | Key Flags | Description | |---------|-----------|-------------| | project deploy <name> [path] | -e, --create, --config-only | Deploy or sync config only | | project pull <name> [path] | -y | Pull source (warns before overwriting) | | project logs <name> | | View build logs | | project list | | List all projects |

run

| Command | Key Flags | Description | |---------|-----------|-------------| | run start <project> <workflow> | -e, -i, -w | Trigger a workflow run | | run list [project] | --json, --detailed, --status, --since, --workflow, --limit, --offset | List and filter runs | | run view <run-id> | --json, --timeline, --steps, --logs | Inspect a run |

env

| Command | Key Flags | Description | |---------|-----------|-------------| | env set <key> <value> | -s, -y, --staging-value, --dev-value | Set global variable (warns before overwriting) | | env set <project> <key> <value> | -e, -s, -y | Set project variable (warns before overwriting) | | env list [project] | -e | List variables | | env delete <key-or-project> [key] | -y | Delete a variable | | env map <project> <key> <global-key> | -y | Map global to project key (warns before overwriting) | | env pull <project> | -e, -o, -y, --update-oauth | Pull resolved env vars to .env file | | env push <project> [path] | -e, -y, --new-only, --include-undeclared | Push .env values to project |

schedule

| Command | Key Flags | Description | |---------|-----------|-------------| | schedule set <project> <cron> | -w, -i, -y | Set cron schedule (warns if exists) | | schedule list <project> | | List schedules | | schedule delete <project> <id> | -y | Delete a schedule |

webhook

| Command | Key Flags | Description | |---------|-----------|-------------| | webhook list <project> | -e, --show-secrets | List webhook URLs |

workspace

| Command | Description | |---------|-------------| | workspace list | List all workspaces | | workspace set <id> | Set active workspace (by ID, slug, or name) |

ai

| Command | Key Flags | Description | |---------|-----------|-------------| | ai init | --claude, --agents | Install AI skills and SDK reference into an existing project (use init for new projects) | | ai examples [names...] | --all, --overwrite | Install example workflows |

ai init installs three auto-activating SolidActions skills and a full SDK reference into your project:

  • Skills go to .claude/skills/ (for --claude / Claude Code) or .agents/skills/ (for --agents / Codex, Cursor, Gemini, Windsurf). Codex auto-discovers the .agents/skills/ path — see https://developers.openai.com/codex/skills.
  • The SDK reference is saved to .solidactions/sdk-reference.md.
  • A slim pointer section is injected into CLAUDE.md or AGENTS.md listing the skills and inlining the highest-cost hard rules (determinism, step discipline, messaging) as a safety net.

Development

git clone https://github.com/SolidActions/solidactions-cli.git
cd solidactions-cli
npm install
npm run build

License

MIT