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/diagnostics-tls-skill

v0.0.1

Published

OpenClaw skill for installing or updating @volcengine/diagnostics-tls

Downloads

250

Readme

Diagnostics TLS Installer

OpenClaw Skill/扩展,用于在对话中安装或更新 @volcengine/diagnostics-tls 插件。

设计原则

  • 安装能力不内置:安装/配置完全通过调用 @volcengine/diagnostics-tls-install npm 包完成。
  • 更新能力可控:更新时优先 openclaw plugins update(clawhub 来源),并与 npm 官方源 latest 对齐;当 clawhub 同步延迟导致版本不一致时,触发兜底重装并恢复配置。

安装与启用

方式一:通过 diagnostics-tls-install 一键安装(推荐)

当你运行 @volcengine/diagnostics-tls-install 完成 @volcengine/diagnostics-tls 安装后,会自动顺带安装并启用本 Skill(@volcengine/diagnostics-tls-skill,插件 id:diagnostics-tls-installer)。

方式二:手动安装

openclaw plugins install "@volcengine/diagnostics-tls-skill" --pin
openclaw plugins enable diagnostics-tls-installer
openclaw gateway restart

联调

  • 本地与 OpenClaw 联调(含 watch):docs/dev-with-openclaw.md

对外工具(OpenClaw Tools)

  • diagnostics_tls_install
    • 行为:调用 @volcengine/diagnostics-tls-install 的 CLI(non-interactive)完成安装与 openclaw.json 写入。
  • diagnostics_tls_update
    • 行为:
      1. 查询 npm 官方源 @volcengine/diagnostics-tls latest
      2. 执行 openclaw plugins update @volcengine/diagnostics-tls
      3. 如果 update 后版本 != npm latest:
        • 备份卸载前 openclaw.json 的 plugins.entries[diagnostics-tls] 配置(以及 allow)
        • openclaw plugins uninstall diagnostics-tls
        • openclaw plugins install @volcengine/diagnostics-tls@<latest> --pin
        • 把备份的 entries/allow 写回 openclaw.json
        • 返回消息里会明确说明触发了该兜底逻辑
  • diagnostics_tls_diagnose
    • 行为:读取 openclaw.json 中 diagnostics-tls 配置,针对指定 logType 调用 TLS 上报接口写入少量测试数据,并分析未上报原因(endpoint/权限/鉴权/网络等)。

开发

pnpm install
pnpm test
pnpm build