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

@adhamalkhaja/seyola-runtime

v0.13.2

Published

Local CLI runtime for the Seyola business operating system. Reads contracts from a Seyola pack and executes them against a runtime backend (claude-code-local).

Readme

seyola-runtime

Local CLI runtime for the Seyola business operating system. Reads contracts and registries from a Seyola pack and executes them against a runtime backend (Claude Code local subprocess).

This is the engine. The product (Seyola pack + workspace) is at https://github.com/seyola-community/seyola-paid for members.

Install

npm install -g @adhamalkhaja/seyola-runtime

Requires Node 20 or higher.

Verify:

seyola-runtime --version

Usage

The runtime is invoked via subcommands. The most common flow for a Seyola member:

# Get a workspace (clone the client bundle).
git clone https://github.com/seyola-community/seyola-paid.git my-seyola
cd my-seyola

# Initialize.
seyola-runtime init --workspace . --pack ./.seyola/pack

# Health check.
seyola-runtime doctor --workspace .

# Then open Claude Code and use the workflows.
claude

In Claude Code: /linkedin-writer, /brand-voice, /audience-profile-builder, /story-bank-builder.

Subcommands

| Command | Purpose | |---|---| | seyola-runtime --version | Print the runtime version. | | seyola-runtime --help | List all subcommands. | | seyola-runtime validate-pack --pack <path> | Validate a Seyola pack against its registries and schemas. | | seyola-runtime compile-plan --task <path> --pack <path> | Compile a TaskSpec into a deterministic WorkPlan. | | seyola-runtime run-step --plan <path> --step <id> --backend claude-code-local | Execute one WorkPlan step. | | seyola-runtime run-plan --task <path> --backend claude-code-local --output-dir <path> | Execute a full plan as a DAG. | | seyola-runtime init --workspace <path> --pack <path> | Initialize a Seyola workspace from a pack. | | seyola-runtime doctor --workspace <path> | Health-check a workspace. | | seyola-runtime bundle --pack <path> --runtime <path> --out <path> | Generate a Client Alpha distribution bundle. |

Run seyola-runtime <command> --help for command-specific options.

How it works

The runtime reads a Seyola pack (typed registries + skills + schemas), compiles a member's intent (a TaskSpec) into a deterministic WorkPlan, then executes each step against a backend. Today the only supported backend is claude-code-local, which spawns the official Claude Code CLI as a subprocess.

The runtime does NOT:

  • Host or proxy any AI service.
  • Store, collect, or transmit Claude credentials.
  • Own member substrate (voice profiles, audience profiles, runs).
  • Ship contracts or skill content (those live in the pack).

The pack is the product. The runtime is the executor.

Requirements

  • Node.js 20+ — https://nodejs.org/
  • Claude Code — https://claude.com/claude-code (installed and authenticated). Required for run-step and run-plan.
  • A Seyola pack — typically the workspace cloned from https://github.com/seyola-community/seyola-paid (members only).

The runtime alone, without a pack, has no workflows to execute. Get the pack from the Seyola community.

License

Proprietary. See LICENSE. Use of this package is subject to the terms in the LICENSE file. The runtime is freely installable; the pack and methodology library are restricted to active Seyola members.

Support

For installation issues with this runtime: open an issue on the source repository.

For Seyola product questions, methodology, or member access: contact the Seyola community.