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

@daisy-workflow/plugin-jira

v0.1.7

Published

Daisy workflow plugin — Jira Cloud connector

Readme

Jira plugin for Daisy-workflow

One Daisy node that talks to Jira Cloud. The action is selected per-node via the operation dropdown .

Docker Hub

Operations

| operation | What it does | |----------------------------|-----------------------------------------------------------| | issue.get | Fetch a single issue by key. | | issue.create | Create an issue in a project. | | issue.update | Patch fields on an existing issue. | | issue.delete | Permanently delete an issue. | | issue.search | JQL search (paginated). | | issue.comment.add | Add a comment to an issue. | | issue.transition | Move an issue to a new status (by name or transition id). | | issue.transitions.list | List the transitions currently available on an issue. |

Configure auth

Create one generic config on the Configurations page (default name jira) with three keys:

| Key | Example | |------------|----------------------------------| | host | https://acme.atlassian.net | | email | [email protected] | | apiToken | API token from id.atlassian.com |

A node can override the config name per-call via the config input — useful if a workspace talks to multiple Jira instances.

Install

docker compose -f docker-compose.yml -f docker-compose.plugins.yml \
  --profile jira up -d

npm run install-plugin -- --endpoint http://daisy-jira:8080

Per-operation inputs

The manifest declares every input as optional except operation; each handler checks its own required fields and returns a clear error if they're missing. Quick reference:

  • issue.getissueKey (required), fields[], expand[]
  • issue.createprojectKey (required), summary (required), issueType, description, assignee, priority, labels[], components[], dueDate, customFields
  • issue.updateissueKey (required) + any of the create fields (only the keys you pass get patched)
  • issue.deleteissueKey (required)
  • issue.searchjql (required), maxResults, startAt, fields[]
  • issue.comment.addissueKey (required), comment (required), visibility
  • issue.transitionissueKey (required), transitionId or transitionName, optional comment, resolution
  • issue.transitions.listissueKey (required)

Output envelope

{
  "ok":        true,
  "operation": "issue.create",
  "status":    201,
  "result":    { "id": "10042", "key": "ACME-123", "self": "..." },
  "url":       "https://acme.atlassian.net/browse/ACME-123"
}

result is operation-specific:

  • issue.get / issue.create → the issue object
  • issue.update / issue.delete{ issueKey, updated|deleted: true }
  • issue.search{ issues[], total, startAt, maxResults }
  • issue.comment.add → the comment object (id, author, body, created, …)
  • issue.transition{ issueKey, transitionId, transitionName }
  • issue.transitions.list → array of { id, name, to: { name, … } }

ADF (Atlassian Document Format)

Jira Cloud REST v3 requires comment / description bodies in ADF. The plugin wraps plain-text inputs into a minimal ADF document automatically. If you already have an ADF object (e.g. from another integration), pass it through as JSON and it's forwarded as-is.

Files

plugins-external/jira/
├── manifest.json        # node schema (inputs + outputs)
├── index.js             # servePlugin entry, dispatches by operation
├── lib/
│   ├── client.js        # auth + fetch wrapper + ADF helper
│   └── actions.js       # one async handler per operation
├── package.json
├── Dockerfile
└── README.md