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

@scrydon/sdk-authoring

v0.0.4

Published

Unified authoring SDK for Scrydon platform — covers vendor integrations and process templates (manifest schemas, define DSL, CLI, runtime bundle inspector).

Readme

@scrydon/sdk-authoring

The authoring SDK for the Scrydon platform. Define Integrations, Ontologies, Process Templates, and Packs as upload-ready bundles, with types and validation that match the platform's runtime.

Full documentation: docs.scrydon.com/sdks/authoring

Install

npm install --save-dev @scrydon/sdk-authoring zod
# or
bun add -d @scrydon/sdk-authoring zod

zod is a peer dependency (any ^4).

Surfaces

The package has no root barrel — import from the subpath for the artifact you are authoring.

| Subpath | What you define | Docs | | -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | | @scrydon/sdk-authoring/integrations | Vendor connectors with auth, blocks, tools, and capability runtimes (LLM, STT, TTS, embeddings, OCR, video, webhooks). | docs | | @scrydon/sdk-authoring/ontologies | Typed Object Types, Link Types, Action Types, identity rules, and bindings shipped as a versioned pack. | docs | | @scrydon/sdk-authoring/process-templates | Reusable process templates with stages, tasks, personas, voice triggers, and action templates. | docs | | @scrydon/sdk-authoring/packs | Bundle multiple ontologies + a process flow into a single .scrydon-pack.tar.gz artifact, ready for upload. | docs |

Quick start

import { defineVendor }          from "@scrydon/sdk-authoring/integrations/define";
import { defineOntology }        from "@scrydon/sdk-authoring/ontologies";
import { defineProcessTemplate } from "@scrydon/sdk-authoring/process-templates";
import { defineScrydonPack }     from "@scrydon/sdk-authoring/packs";

Each define* helper is a zero-runtime pass-through that gives you full TypeScript narrowing against the platform's manifest schemas. See the Authoring SDK guide for end-to-end examples per surface.

CLI

The package ships a single bin with two subcommands. Invoke it via the package-qualified form — it works whether or not the package is installed locally:

| Subcommand | Purpose | | --------------------------------------- | ------------------------------------------------------------------------------------------------------ | | @scrydon/sdk-authoring integrations | init, build, test — vendor integration bundles. | | @scrydon/sdk-authoring pack | build, inspect, validate — Scrydon Pack bundles (process flow + ontology). |

bunx @scrydon/sdk-authoring --version
bunx @scrydon/sdk-authoring --help
bunx @scrydon/sdk-authoring integrations --help
bunx @scrydon/sdk-authoring pack --help

bunx @scrydon/sdk-authoring integrations build --entry src/index.ts

# pack build accepts a directory — auto-discovers pack.ts | pack.mjs | pack.js | pack.json:
bunx @scrydon/sdk-authoring pack build .

# Or pass an explicit manifest + override the subdirs:
bunx @scrydon/sdk-authoring pack build pack.json --ontology ./ontology --process-flow ./process-flow

What this package does NOT contain

Host-side runtime lives in private engine packages, not in this SDK:

  • @scrydon/engine-dlp — DLP scanner, detectors, enforcement
  • @scrydon/engine-integrations — vendor actor pool, dispatch, capability registry, manifest extractor
  • @scrydon/engine-packs — pack install orchestrator, cross-bind, bundle inspector
  • @scrydon/engine-process-templates — graph validator

These are not on npm and not consumed by integration authors.

Compatibility

  • Runtime: Node 20+, Bun 1.x. Pure ESM.
  • TypeScript: 5.7+ recommended.
  • Zod: peer dep ^4.0.

License

Proprietary. Copyright © Scrydon. All rights reserved. See LICENSE for permitted use.