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

@ossy/automation

v3.8.0

Published

Workspace automation observability — task topology and run history (ADR 0011)

Readme

@ossy/automation

Workspace automation observability UI for the Ossy platform. Read-only views over the build-time task catalog, trigger graph, and workspace task run history — not a workflow designer.

Normative direction: ADR 0011.

Core concepts

| Term | Role in this package | |------|----------------------| | Task | Runtime primitive (@ossy/{feature}/tasks/{intent}). Listed as tiles, topology, and run history. | | Pipeline | Derived graph over task triggers and optional outputs — shown as read-only edges in the catalog UI. | | Automation | This module: observe topology + runs; manual invoke may come later. | | Flow | Playwright journey tests only (*.flow.js) — not shown here. |

The home page reads manifest.taskCatalog from app bootstrap (useApp()). Run history reads the workspace projection @ossy/platform/actions/list-task-runs via @ossy/sdk-react.

Pages

| Page | Path | Audience | |------|------|----------| | automation/home | /automation | Workspace members (service enabled) |

Enable the module per workspace via the automation service flag (same pattern as booking, calendar, …).

UI surfaces

| Export | File | Description | |--------|------|-------------| | AutomationPage | automation.page.jsx | Shell page: catalog tiles, topology, run history | | TaskCatalogTiles | TaskCatalogTiles.jsx | Cards for event- and schedule-triggered tasks from the catalog | | TaskCatalogGraph | TaskCatalogGraph.jsx | Read-only trigger → task graph | | TaskRunList | TaskRunList.jsx | Selectable list of workspace task runs | | TaskRunDetail | TaskRunDetail.jsx | Side panel for a selected run | | TaskRunStatusBadge | TaskRunStatusBadge.jsx | Status chip for run list / detail |

Tiles and topology share backgroundAutomations() — invoke-only action tasks belong on the packages catalog, not this page. Translation, transcription, and embeddings are not shown until they exist as *.task.js files.

Task catalog data

Build exports normalized entries via @ossy/schema (extractTaskCatalogEntry, buildTaskCatalogEdges). Each catalog row includes:

  • id, moduleId, package, triggers, primaryActionId, inputSchemaIds, outputs

Task run projection

// taskRuns.js — action id only; workspace scope from SDK config
export const ListTaskRuns = { id: '@ossy/platform/actions/list-task-runs' }

TaskRunList calls read(ListTaskRuns) once; the page owns selection state and passes selectedRun to TaskRunDetail.

Package exports

import { Definition, location } from '@ossy/automation'

| Export | Description | |--------|-------------| | Definition | Feature metadata (id: 'automation', title, icon, status) | | location | Resource location prefix for job resources (/@ossy/jobs/) |

React pages and components are loaded by the app manifest — not re-exported from the package entry.

Peer dependencies

| Package | Used for | |---------|----------| | @ossy/app | useApp() — task catalog from SSR bootstrap | | @ossy/design-system | Layout, Page, List, forms | | @ossy/sdk-react | useSdk, read, run list | | @ossy/router-react | Page routing (via app shell) | | react | UI |

Storybook

Generated story: Automation → Pages → Automation. Requires global Storybook bootstrap (.storybook/storybook-bootstrap.js, mock SDK) so useApp() and list-task-runs resolve without a live server.

Discover JSON seeds task ids only; full trigger metadata appears after app build in a real app manifest.

Related packages

| Package | Role | |---------|------| | @ossy/schema | Task id grammar, buildTaskCatalogEdges | | @ossy/platform | Task run projection, MCP task-topology resource | | @ossy/observability | Structured logging inside task run() handlers | | @ossy/media-tasks | Example tasks surfaced in the catalog |

Status

v1 is observe-only: catalog tiles, topology, and run history. No workflow designer and no “add task” UI.