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

@glapsfun/tflow

v0.1.2

Published

A factory for authoring Agent Skills to the agentskills.io open standard.

Readme

tflow

A factory for authoring Agent Skills to the agentskills.io open standard (spec v1).

What this is

tflow produces portable Agent Skills — Markdown SKILL.md files paired with POSIX sh scripts. There is no compiled application: the deliverables are the skills themselves and the scripts that author and validate them. The keystone is validate.sh, the linter every artifact is gated through (spec compliance, tflow conventions, and portability).

The shipped skills

  • tflow-skill-idea — interactive idea shaping: Five Whys and a human-chosen direction turn a raw prompt into a research-ready eight-field idea brief.
  • tflow-research — bounded web research synthesized into a sourced decision brief across brainstorm, find-idea, and improve-idea modes.
  • tflow-skill-test — TDD for skills: a define mode that writes the test plan before the skill exists, and a run mode that executes the three-layer pass (structural gate, script checks, judged eval scenarios).
  • tflow-skill-creator — the disciplined factory loop that takes a skill from intent to distributable evidence: the init / validate / improve / package scripts plus the run-tests.sh self-test suite.
  • tflow-skill-factory — the loop controller: idea → research → validate → test-plan → create → test-run → check → doc, with bounded re-research and improvement loops, artifact gates between every phase, and a final run summary.
  • tflow-prompt — prompt enhancement: rewrites a raw or first-draft prompt using established prompt-engineering techniques and returns the stronger prompt plus an auditable change log.
  • tflow-gateway — the family front door: sharpens a raw request with tflow-prompt, discovers the installed tflow skills, routes to the best fit, and accepts the result against acceptance checks fixed before delegation, with a bounded re-delegation loop.

Quick start

# Validate a single skill directory (exit 0 = pass, 1 = fail, 2 = usage error)
sh skills/tflow-skill-creator/scripts/validate.sh <skill-dir>
sh skills/tflow-skill-creator/scripts/validate.sh --quiet <skill-dir>   # suppress PASS lines

# Run the full self-test suite (runs validate.sh against every fixture)
sh skills/tflow-skill-creator/scripts/run-tests.sh

# Lint the real skill scripts (POSIX sh). The non-recursive glob skips the
# scripts/fixtures/ tree on purpose — some fixtures are intentionally broken.
# The excludes mirror the pre-commit gate: SC2115/SC2016/SC2329 are intentional
# and guarded. No shellcheck on PATH? `pre-commit run shellcheck` vendors one.
shellcheck --shell=sh --exclude=SC2115,SC2016,SC2329 skills/*/scripts/*.sh

Repo layout

skills/<name>/
  SKILL.md      # frontmatter + body, must pass validate.sh
  scripts/      # POSIX sh scripts (validate, init, improve, package, run-tests)
  references/   # supporting reference material
  assets/       # templates and other static assets

Skills install portably under both .claude/skills/ and .codex/skills/ — the same SKILL.md must validate in either location.

Documentation

  • Install on your runtime — for users: npx install, every flag with real CLI output, and troubleshooting.
  • Versioning policy — for maintainers: the semver policy and 1.0.0 graduation criterion.
  • Release runbook — for maintainers: the npm versiongit push --follow-tags flow.
  • CHANGELOG — what changed in each release.

The three docs/ guides are linked as absolute GitHub URLs because docs/ is not shipped in the npm tarball; the CHANGELOG.md link is relative because it does ship.

Development

pip install pre-commit
pre-commit install

Contributions run through a three-check gate, enforced identically by the local pre-commit hook and by GitHub Actions CI (.github/workflows/ci.yml) on every push to main and every pull request:

  1. shellcheck (--shell=sh) on the skill scripts, with scripts/fixtures/ excluded so intentionally-broken fixtures don't fail the lint.
  2. The skill self-test suite (run-tests.sh).
  3. yamllint on the project's YAML.

Skill scripts stay POSIX sh (#!/bin/sh, set -eu, no bashisms, no hardcoded runtime paths). The pre-commit / CI tooling is a separate Python-based dev layer and does not relax that rule. Any change to a validate.sh rule needs a matching pass-* / fail-* fixture so the self-test suite keeps the gate honest.

License

Released under the MIT License (© 2026 glapsfun). See LICENSE.