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

@meistrari/tela-cli

v0.7.56

Published

Tela command line tools for local state and agent workflows.

Downloads

2,382

Readme

Tela CLI

@meistrari/tela-cli owns the local tela binary for scriptable access to Tela Local state and agent workflows.

The CLI reads and writes the same ~/.tela/config.json state as Tela Dock through @meistrari/tela-local-config. It should not parse local config files directly, and normal output must not print token material.

Commands

Current first-slice commands:

tela auth token --json
tela auth token --raw
tela context current --json
tela context list --json
tela context show <context-id> --json
tela context use <context-id>
tela env list --json
tela update --json
tela api <slug> <METHOD> <PATH> [args...] --env <slug> --body <json> --pretty
tela docs endpoints <slug> --pretty
tela docs reference <slug> [METHOD PATH|file-path] --pretty
tela docs guide <slug> [path]
tela env list <ingredient-slug> --pretty
tela env set <ingredient-slug> <environment>
tela whoami --pretty
tela doctor auth --json
tela agent sync [repo] --current --all --dry-run --json --verbose
tela agent run --input <name=path>... --plain --json --verbose
tela agent push --message <text> --claude --manual --dry-run --json --verbose
tela agent feedback --list --apply <all|select> --json --verbose

context use is the only normal config mutation in this slice. auth token may refresh a user-session credential in Keychain before returning metadata or printing a raw token. Creating, removing, editing, and repairing contexts are Dock-first workflows.

The legacy telactl Pantry/service workflows are ported into this binary as top-level update, api, docs, whoami, and token commands. Ingredient cache and per-ingredient environment defaults live under TELA_HOME next to the Dock config, while credential material still comes from the selected Tela context through @meistrari/tela-local-config.

Development

From the repository root:

pnpm cli:build
pnpm cli:test
pnpm --filter @meistrari/tela-cli run typecheck

Run the built binary directly during development:

node apps/tela-cli/dist/index.js context current --json
node apps/tela-cli/dist/index.js auth token --json

Use TELA_HOME to point the CLI at an isolated config directory:

TELA_HOME=/tmp/tela-home node apps/tela-cli/dist/index.js env list --json

Credential Behavior

The CLI uses the credential adapter contract from local-config.

  • env credentials read TELA_ACCESS_TOKEN, TELA_REFRESH_TOKEN, or TELA_DATA_TOKEN.
  • macOS keychain credentials use the system security command.
  • expired user-session access tokens with a refresh token are reported as refreshable, not as a hard auth failure.
  • auth token refreshes expired user-session access tokens when a refresh token is available.
  • unsupported providers report diagnostic status instead of exposing secrets.

auth token --raw is the explicit token-export escape hatch for shell scripts. Default and --json output stay redacted.

Tests

Tests are black-box node --test cases that execute the compiled CLI with an isolated TELA_HOME.

pnpm --filter @meistrari/tela-cli run test