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

@obviousbread/docs

v0.3.3

Published

Portable agent skills for generating documents (.docx).

Readme

docs

Portable agent skills for generating official Russian administrative documents in .docx format.

docs installs the same docs-* skills into native harness skill directories, so Claude Code, Codex, and Gemini CLI can use one maintained version instead of copied, drifting folders.

Features

  • Generates official .docx documents in a consistent format.
  • Supports orders, directives, instructions, official letters, internal memos, and job descriptions.
  • Uses local organization details from ~/.docs-plugin/org_details.md.
  • Checks staff data from a configured .xlsx file when needed.
  • Learns recurring wording patterns from your existing .docx, .md, and .txt files.

Skills

  • docs-init - configure or update organization details.
  • docs-ord - orders, directives, and instructions.
  • docs-letter - official letters on organizational letterhead.
  • docs-memo - internal memos.
  • docs-di - job descriptions (должностные инструкции).
  • docs-finetune - extract reusable examples from real documents.

Install

Install for all supported harnesses:

npx @obviousbread/docs@latest --all

Install for one harness:

npx @obviousbread/docs@latest --claude
npx @obviousbread/docs@latest --codex
npx @obviousbread/docs@latest --gemini

Running the same command again updates the installed skills. The installer copies the current package into ~/.docs-plugin/runtime and then copies docs-* skills into native harness locations:

  • Claude Code: ~/.claude/skills/docs-*
  • Codex: ~/.codex/skills/docs-*
  • Gemini CLI: ~/.gemini/skills/docs-*

For Gemini CLI, use /skills list to confirm discovery after install. If Gemini CLI is already running, use /skills reload or restart the session.

Uninstall managed files:

npx @obviousbread/docs@latest --all --uninstall

Uninstall does not remove user configuration, examples, logs, or generated documents from ~/.docs-plugin/.

First Run

Ask your agent to run docs-init. It creates or updates:

  • organization details
  • author and signer details
  • default approvers
  • output folders for generated documents
  • optional staff list path

Persistent user data lives in ~/.docs-plugin/:

  • org_details.md - organization details and output paths
  • org_notes.md - free-form organization context
  • {category}/examples/{category}.md - examples added by docs-finetune
  • generations.jsonl - generation log

Development

Run tests:

npm test

For local installer testing without touching real harness directories:

DOCS_INSTALL_HOME="$(mktemp -d)" node bin/install.js --all

For active Gemini CLI skill development, you can also link a local skill folder manually:

gemini skills link ./skills/docs-letter

Requirements

  • Node.js 18+ for the installer.
  • Python 3 with python-docx and openpyxl for document generation.

License

MIT