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

create-dsh-content

v0.4.0

Published

Scaffold a content-automation DSH plugin in seconds — content publishing adapters (Dev.to / Bluesky / Mastodon / GitHub / LinkedIn), credential management, cross-platform formatting, and built-in release pipeline.

Readme

create-dsh-content

Scaffold a content-automation DeepSeek Harness (DSH) plugin in seconds. 一键生成面向「内容自动化」的 DeepSeek Harness 插件。

Zero dependencies, pure ESM, Node ^22.19 || >=24. Dual mode: non-interactive flags or an interactive wizard (bilingual prompts).

Built on the conventions proven by create-dsh-plugin — same next-tag version pinning, same --verify smoke test — and extended with a content-publishing domain layer: platform adapters, credential management (BYOK), cross-platform formatting, and a release pipeline that gets your plugin indexed by the ecosystem.


Quick Start

# Non-interactive
npx create-dsh-content my-crosspost --platforms devto,bluesky

# Interactive wizard
npx create-dsh-content

Options

| Flag | Description | |---|---| | -t, --template <content> | Template variant (default content) | | -n, --name <pkg> | npm package name (derived from dir) | | --plugin-id <id> | cordis patch row id + plugin name export | | --tool-name <name> | Tool name (default derived from package name) | | --platforms <list> | Comma-separated platforms: devto,bluesky,mastodon,github,linkedin | | -y, --yes | Skip prompts, use defaults | | --verify | After generation: build + install into temp profile + dump-config | | --skip-install | Skip pnpm install inside the generated project | | --with-ci | Include GitHub Actions release pipeline (default: on) | | -h, --help | Show help | | -v, --version | Print version |

What you get

Every generated project ships with:

  • Platform adapter layerPlatformAdapter interface + working adapters for Dev.to / GitHub / Bluesky / Mastodon / LinkedIn (BYOK, no platform approval needed from the plugin author; LinkedIn is marked experimental due to OAuth review)
  • Credential management — typed credential service with validation (missing / invalid / disabled states)
  • Cross-platform formatters — Markdown normalization, auto-split for long posts, result card rendering
  • Version pinning@deepseek-ai/dsh-tools pinned to the next-tag version (npm latest is a stale 0.0.1-rc.1)
  • Release pipeline--with-ci (default on) drops a GitHub Actions workflow into the generated project: type-check → build → publish to npm on a v* tag
  • Pitfall guardrails — the 10 real-world pitfalls from the verified spike, baked into the generated README

Why a domain scaffold?

create-dsh-plugin gives you a standard empty kitchen — appliances work, but you cook from scratch. create-dsh-content gives you a ready-to-run content operation kitchen: adapters wired, credential drawers labeled, format rules in place, plating pre-designed. You focus on what makes your plugin unique.

Read the full design rationale in docs/DESIGN.md.

Development

node src/cli.js --help
node --test test/

# After a @deepseek-ai/dsh-* release: is it just a version refresh, or do we
# need to adapt the template? Compile-checks the current template against the
# current `next` DSH packages.
node scripts/dsh-compat.mjs    # or: pnpm run compat

License

MIT