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

@volcengine/tls-observer-claude-code-install

v0.0.2

Published

One-step installer for the TLS Observer Claude Code plugin.

Readme

TLS Observer Claude Code Installer

一键安装 @volcengine/tls-observer-claude-code 到 Claude Code skills-dir。

安装

npm exec -y \
  --package=@volcengine/tls-observer-claude-code-install -- \
  tls-observer-claude-code-install

安装器默认从 registry 下载插件 @latest。使用 beta:

npm exec -y \
  --package=@volcengine/tls-observer-claude-code-install -- \
  tls-observer-claude-code-install --beta

--plugin-version <version> 可以指定精确版本或 dist-tag,并覆盖 --beta

安装结果

  • 插件:~/.claude/skills/tls-observer-claude-code
  • 配置:~/.claude/settings.json
  • TLS env:~/.claude/tls-observer-claude-code.env
  • 运行数据:~/.claude/plugins/data/tls-observer-claude-code

安装器会设置:

{
  "enabledPlugins": {
    "tls-observer-claude-code@skills-dir": true
  },
  "env": {
    "CLAUDE_CODE_TLS_ENV_FILE": "~/.claude/tls-observer-claude-code.env"
  }
}

非交互安装

npm exec -y \
  --package=@volcengine/tls-observer-claude-code-install -- \
  tls-observer-claude-code-install \
  --non-interactive \
  --force \
  --trace-topic-id <trace-topic-id> \
  --api-key <api-key>

TLS Region 默认是 cn-beijing,TLS Producer endpoint 会自动生成为 tls-cn-beijing.volces.com。如需切换 Region,使用 --region <region>;如需单独覆盖 endpoint,使用 --tls-endpoint <host>。旧的 --otel-endpoint 仅保留兼容。

AK/SK 模式将 --api-key 替换为 --ak--sk,并可提供 --project-name--app-name 自动准备 TLS LogApp。

本地开发

emo run build --filter @volcengine/tls-observer-claude-code
emo run check --filter @volcengine/tls-observer-claude-code-install
emo run build --filter @volcengine/tls-observer-claude-code-install

CLAUDE_CODE_PLUGIN_SOURCE="$PWD/packages/claude-code" \
node packages/claude-code-install/bin/tls-observer-claude-code-install.mjs --force

安装器会读取源码包的 publishConfig.directory,因此本地开发与正式发布都会使用构建生成的 dist-package

sync-plugin 仅用于生成安装器内的开发快照;正式安装路径以 registry 下载插件为准。