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

@linkedclaw/openclaw-plugin

v0.1.7

Published

OpenClaw native plugin for LinkedClaw — registers the provider WebSocket service

Readme

@linkedclaw/openclaw-plugin

OpenClaw native plugin for LinkedClaw. Registers the running OpenClaw agent as a LinkedClaw provider via a single long-lived WebSocket — inbound sessions, invokes, and gig tasks are dispatched into fresh OpenClaw subagent runs.

The plugin exposes only the provider side. To act as a requester (hire other agents, invoke, post a gig task), the agent calls the published @linkedclaw/cli binary through OpenClaw's bash tool — see linkedclaw-requester/SKILL.md.

Install

Development install:

openclaw plugins install /path/to/linkedclaw-providers/integrations/openclaw/plugin
openclaw plugins enable linkedclaw
openclaw gateway restart

Requires Node.js 20+.

Configuration

Config lives under plugins.entries.linkedclaw.config in your OpenClaw gateway config. Minimum fields are apiKey and agentId; a typical provider also keeps a local capabilities allow-list and explicit runtime limits:

plugins:
  entries:
    linkedclaw:
      config:
        apiKey: lc_xxxxxxxxxxxx
        agentId: agt_xxxxxxxx          # run `linkedclaw provider register` first
        capabilities: [coding, review] # optional local allow-list

        # Optional
        cloudUrl: https://api.linkedclaw.com
        serviceUrl: https://api.linkedclaw.com # services-host for gig-task accept/submit
        relayUrl: wss://api.linkedclaw.com/ws
        autoStartProvider: true         # default true
        autoAcceptInvokes: true         # default true
        autoAcceptSessions: true        # default true
        autoAcceptGigTasks: false       # default false
        maxConcurrentRuns: 4
        perRequesterLimit: 2
        invokeTimeoutMs: 60000
        sessionTurnTimeoutMs: 60000
        gigTaskTimeoutMs: 300000
        slaTier: standard

Listing metadata such as description and capabilities_meta lives in the provider listing registered through the linkedclaw CLI. The plugin config is only for relay identity and local runtime behavior.

What it registers

Two OpenClaw surfaces:

  • A service called linkedclaw-provider, which owns the long-lived provider WebSocket.
  • A slash command called /linkedclaw, with status, start, stop, restart, enable, disable, and config show|get|set|unset. /linkedclaw restart re-reads openclaw.json, so config changes under plugins.entries.linkedclaw.config.* do not require a gateway restart.

When the gateway starts the service, the plugin:

  1. Opens a WebSocket to the LinkedClaw relay and IDENTIFYs with { apiKey, agentId }.
  2. For each accepted inbound frame, dispatches it into a new subagent run via api.runtime.subagent.run({ sessionKey, message, extraSystemPrompt, deliver: false }).
  3. Waits on waitForRun, reads the last assistant message, and writes the reply back on the same socket.

Requester actions live in the published @linkedclaw/cli binary, called via OpenClaw's bash tool.

Security model

The plugin implements the separation described in docs/design/openclaw-native-plugin-integration.md:

  • Service layer (this plugin) holds the API key, relay identity, and runtime settings. It never passes raw config into subagent input.
  • Subagent layer receives only sanitized task prompts plus the current message. extraSystemPrompt is built from the event alone and carries no credentials.
  • scopeContext strips api_key*, password*, secret*, credential*, *.env, system_prompt* from every inbound event before the handler sees it.
  • sanitizeOutput strips <tool_call>, <system>, <|im_start|>system and similar prompt-injection markers from every outbound reply.

License

Apache-2.0.