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

@lmzhen/dsh-evolution-curator

v0.2.0

Published

Deterministic skill lifecycle and recovery (community build)

Readme

@deepseek-ai/dsh-evolution-curator

Deterministic skill lifecycle and recovery

Model Experience

Indirect model surface

What the model sees

@deepseek-ai/dsh-evolution-curator registers no direct prompt or tool schema itself. Model-visible effects are owned by the packages that consume this service.

Token effect

Zero direct token effect from this package; consumers add any model-visible tokens.

KV Cache effect

Independent of request-prefix construction. This package does not alter the assembled prompt or tool list.

Known Limitations and Deferred Work

  • LLM nomination pass is advisory and disabled by default; deterministic lifecycle remains authoritative.
  • Consolidation is control-plane only (/evolution consolidate <target> <source...>): no LLM pass proposes merge groups yet, and merged source bodies are appended verbatim rather than rewritten into a synthesized skill.

Recovery and consolidation

  • archive never deletes: skills move to .archive/ with a .archive-reason marker.
  • restore(name) (service) / /evolution skill restore <name> brings one archived skill back to the active root and resets its usage state.
  • consolidate(target, sources) (service) / /evolution consolidate merges source bodies into the target, archives the sources with an absorbed-into marker, and folds their usage records into archived state. Both operations snapshot the full state first (pre-consolidate / pre-restore).
  • restoreSnapshot (service) / /evolution restore rolls the FULL state back to the latest snapshot: active tree, usage/suppression sidecars, .archive/ and the curator state carried in the snapshot (curator-state.json), so the interval gate does not immediately re-fire after a rollback. The restore itself is undoable — the pre-rollback safety snapshot preserves the current tree plus its state.

Automatic scheduling

  • autoStart (default true) arms an hourly interval check plus a deferred catch-up check bootGraceSeconds (default 10) after host boot. Both decide due-ness from the persisted lastRunAt, so a restart with an overdue schedule runs the first pass within the boot grace instead of waiting a full interval. bootGraceSeconds: 0 disables the deferral (not recommended: the check may run against a half-mounted host). All scheduling gates — interval, idle, first-run deferral, and the reentrancy guard — remain inside run().
  • autoStart: false disables both automatic checks; /evolution curator run (manual, gate-skipping) still works.