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

@railly/wiener-cli

v0.4.2

Published

Agent-first CLI for Universidad Norbert Wiener student portals (intranet ASP + Canvas LMS). Surfaces what the Wiener UI hides.

Readme

wiener-cli

Agent-first CLI for Universidad Norbert Wiener (UNW) student portals.

Wraps two backends:

  • Wienernet intranet (intranet.uwiener.edu.pe) — Classic ASP, cookie session. Notas, horario, asistencia, plan de estudios, pagos, trámites.
  • Canvas LMS (campus.uwiener.edu.pe) — Instructure cloud (cluster335, us-east-1c), SAML2 → MS Entra. Cursos, tareas, anuncios, archivos, calendario.

Built for an agent to autonomously answer day-to-day student questions ("qué nota saqué", "qué clase tengo ahora", "qué tareas debo entregar") without manual portal navigation.

Usage (Canvas — tareas submit)

Submit an assignment from the terminal. Requires a Canvas PAT (wiener auth canvas set-token <pat>).

# Upload a file (online_upload)
wiener tareas submit ciencia "informe UD2" ./informe.pdf --yes

# Upload multiple files
wiener tareas submit ciencia "informe UD2" ./parte1.pdf ./parte2.pdf --yes

# Text submission
wiener tareas submit farmacia "reflexion semana 3" --type online_text_entry --text "Mi reflexión..." --yes

# URL submission
wiener tareas submit ciencia "presentacion slides" --type online_url --url https://docs.google.com/my-slides --yes

# Dry-run: preview what would be sent without submitting
wiener tareas submit ciencia "informe UD2" ./informe.pdf --dry-run

# Pipe a file path list from stdin
echo "./informe.pdf" | wiener tareas submit ciencia 42 --yes

# With submission comment
wiener tareas submit ciencia "informe UD2" ./informe.pdf --comment "Entrega versión final" --yes

JSON output (for agents)

wiener tareas submit ciencia "informe" ./informe.pdf --yes --json
# {"ok":true,"data":{"submission_id":77,"workflow_state":"submitted","attempt_number":1,...}}

Error codes

| Code | Meaning | |------|---------| | submission-locked | Assignment lock_at has passed | | submission-no-attempts | All allowed attempts used | | assignment-not-found | No matching assignment found | | assignment-ambiguous | Multiple assignments match the name | | file-not-found | File path does not exist | | submission-invalid-extension | File extension not in assignment allowlist | | validation-error | Missing required input (text/url/files) |

Trust level

T2 — requires --yes or interactive confirmation. --dry-run shows a preview without submitting.

Status

Pre-implementation. Recon + shaping + scaffold spec + skill draft are complete:

  • recon.md — endpoint map, auth flows, quirks
  • shaping.md — command surface, trust ladder, JSON contract
  • scaffold.md — directory structure, package.json, build/test strategy
  • skill-draft.md — agent skill template

Implementation starts after Hunter reviews the shape.

License

Private. Personal use.