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

openclaw-azure-openai

v2026.3.28

Published

OpenClaw Azure OpenAI plugin

Readme

OpenClaw Azure OpenAI

English | 中文


English

An OpenClaw plugin that integrates Azure OpenAI as a model provider. It automatically registers Azure OpenAI models into your OpenClaw configuration so you can use them directly through the OpenClaw gateway.

Supported Models

| Model ID | Name | | -------------- | ------------ | | gpt-5.3-chat | GPT 5.3 Chat | | gpt-5.4 | GPT 5.4 | | gpt-5.4-pro | GPT 5.4 Pro |

Prerequisites

  • OpenClaw installed and configured
  • An Azure OpenAI resource with a valid API key

Installation

openclaw plugins install openclaw-azure-openai

Update

openclaw plugins update openclaw-azure-openai

Configuration

After installation, configure the plugin with your Azure OpenAI credentials. Navigate to Settings > Plugins > Azure OpenAI in the OpenClaw UI:

OpenClaw Plugin Configuration

| Parameter | Required | Description | | --------------- | -------- | ----------------------------------------------------------- | | resource_name | Yes | Your Azure OpenAI resource name (e.g. my-openai-resource) | | api_key | Yes | Your Azure OpenAI API key |

Example configuration

Alternatively, you can edit openclaw.json directly:

{
  "plugins": {
    "openclaw-azure-openai": {
      "resource_name": "my-openai-resource",
      "api_key": "your-api-key-here"
    }
  }
}

Troubleshooting

  • "resource name or API key is not set" -- Make sure both resource_name and api_key are provided in the plugin config.
  • "Failed to read openclaw.json" -- Verify that the openclaw.json file exists at the expected path (~/.openclaw/openclaw.json).

中文

一个 OpenClaw 插件,用于将 Azure OpenAI 集成为模型提供者。它会自动将 Azure OpenAI 模型注册到你的 OpenClaw 配置中,让你可以直接通过 OpenClaw 网关使用这些模型。

支持的模型

| 模型 ID | 名称 | | -------------- | ------------ | | gpt-5.3-chat | GPT 5.3 Chat | | gpt-5.4 | GPT 5.4 | | gpt-5.4-pro | GPT 5.4 Pro |

前置条件

  • 已安装并配置 OpenClaw
  • 拥有一个 Azure OpenAI 资源及有效的 API Key

安装

openclaw plugins install openclaw-azure-openai

更新

openclaw plugins update openclaw-azure-openai

配置

安装完成后,在 OpenClaw 管理界面中进入 Settings > Plugins > Azure OpenAI 配置插件:

OpenClaw 插件配置

| 参数 | 是否必填 | 说明 | | --------------- | -------- | -------------------------------------------------- | | resource_name | 是 | Azure OpenAI 资源名称(例如 my-openai-resource) | | api_key | 是 | Azure OpenAI API 密钥 |

配置示例

也可以直接编辑 openclaw.json

{
  "plugins": {
    "openclaw-azure-openai": {
      "resource_name": "my-openai-resource",
      "api_key": "your-api-key-here"
    }
  }
}

常见问题

  • "resource name or API key is not set" -- 请确认 resource_nameapi_key 均已在插件配置中填写。
  • "Failed to read openclaw.json" -- 请检查 openclaw.json 文件是否存在于预期路径(~/.openclaw/openclaw.json)。