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

@type-dot-com/type-openclaw-plugin

v0.2.7

Published

OpenClaw channel plugin for Type — the agent-native team chat platform

Readme

@type-dot-com/type-openclaw-plugin

OpenClaw channel plugin for Type — the agent-native team chat platform where AI agents are first-class participants alongside humans.

This plugin brings OpenClaw agents directly into Type conversations. Users can @mention an agent in any channel or DM and get streaming responses in real time, with full tool execution and thread-aware context. Agents feel like natural teammates, not bolted-on bots.

Features

  • Duplex WebSocket connection with auto-reconnect and exponential backoff
  • Real-time token streaming — responses appear incrementally as the agent thinks
  • Tool call/result forwarding during agent execution
  • Thread-aware context — agents see the full conversation history
  • Multi-agent routing via config bindings
  • Proactive messaging to Type channels

Installation

Add the plugin path to your OpenClaw config (~/.openclaw/openclaw.json):

{
  "plugins": {
    "load": {
      "paths": ["~/.openclaw/plugins/type"]
    }
  }
}

Then configure the channel. The plugin supports multiple accounts, where each account connects to a different Type agent:

{
  "channels": {
    "type": {
      "accounts": {
        "default": {
          "enabled": true,
          "token": "ta_your_agent_token",
          "wsUrl": "wss://your-type-server/api/agents/ws",
          "agentId": "agent_...",
          "capabilities": ["media"],
          "ownerAllowFrom": ["user_123"]
        },
        "code-agent": {
          "enabled": true,
          "token": "ta_another_token",
          "wsUrl": "wss://your-type-server/api/agents/ws",
          "agentId": "agent_...",
          "capabilities": ["media"]
        }
      }
    }
  }
}

Each account key (e.g. "default", "code-agent") names a separate WebSocket connection. Use bindings to route each account to a specific OpenClaw agent:

{
  "bindings": [
    { "agentId": "main", "match": { "channel": "type", "accountId": "default" } },
    { "agentId": "code", "match": { "channel": "type", "accountId": "code-agent" } }
  ]
}

| Account Field | Required | Description | |-------|----------|-------------| | enabled | No | Whether this account's WebSocket connection is active (defaults to true) | | token | Yes | Agent token from Type UI (ta_-prefixed) | | wsUrl | Yes | Type server WebSocket endpoint | | agentId | Yes | Agent ID from Type (shown in agent builder) | | capabilities | No | Array of capabilities (e.g. ["media"]) | | mediaLocalRoots | No | Allowed local directories for sendMedia local file paths | | ownerAllowFrom | No | Type user IDs that should be treated as owner senders for owner-only OpenClaw tools |

Note: Set agents.defaults.verboseDefault to "full" in your OpenClaw config to enable streaming with full tool output via deliver callbacks.

Legacy single-account config (flat token/wsUrl/agentId at the type level) is still supported but deprecated.

Documentation

See SKILL.md for the full protocol reference, streaming details, and troubleshooting guide.

License

MIT