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-productboard

v1.0.29

Published

OpenClaw plugin for ProductBoard integration

Readme

OpenClaw ProductBoard Plugin

npm version npm downloads

A lean, fast OpenClaw plugin for ProductBoard integration. Provides 15 agent tools for managing features, products, customer feedback notes, and workspace users, plus 3 skills for common workflows.

Features

  • 15 Agent Tools for full ProductBoard API coverage
  • 3 Skills for search, feedback capture, and release planning
  • LRU Caching with configurable TTL for read operations
  • Rate Limiting with token bucket algorithm
  • Automatic Retries with exponential backoff
  • Bearer Token Authentication

Installation

# Install via npm
npm install openclaw-productboard

Or install as an OpenClaw plugin:

openclaw plugins install openclaw-productboard

# Or install locally for development
openclaw plugins install -l ./openclaw-productboard

Configuration

Add your ProductBoard API token to ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "openclaw-productboard": {
        "enabled": true,
        "config": {
          "apiToken": "your_productboard_api_token_here"
        }
      }
    }
  }
}

Then restart the gateway:

openclaw gateway restart

Configuration Options

| Option | Type | Required | Default | Description | |--------|------|----------|---------|-------------| | apiToken | string | Yes | - | ProductBoard API bearer token | | apiBaseUrl | string | No | https://api.productboard.com | API base URL | | cacheTtlSeconds | number | No | 300 | Cache TTL for read operations | | rateLimitPerMinute | number | No | 100 | Max API requests per minute |

Getting Your API Token

  1. Log in to ProductBoard
  2. Go to SettingsIntegrationsPublic API
  3. Generate a new API token
  4. Copy the token and add it to your configuration

Agent Tools

Feature Management (6 tools)

| Tool | Description | |------|-------------| | pb_feature_create | Create a new feature | | pb_feature_list | List features with optional filters | | pb_feature_get | Get detailed feature information | | pb_feature_update | Update an existing feature | | pb_feature_delete | Archive/delete a feature | | pb_feature_search | Search features by name or description |

Product Management (3 tools)

| Tool | Description | |------|-------------| | pb_product_list | List all products | | pb_product_get | Get product details with components | | pb_product_hierarchy | Get complete product/component tree |

Notes & Feedback (3 tools)

| Tool | Description | |------|-------------| | pb_note_create | Create customer feedback note | | pb_note_list | List notes with date filters | | pb_note_attach | Attach note to a feature |

Search & Users (3 tools)

| Tool | Description | |------|-------------| | pb_search | Global search across all entities | | pb_user_current | Get current authenticated user | | pb_user_list | List workspace users |

Skills

ProductBoard Search (/productboard-search)

Search and explore your ProductBoard workspace. Find features, products, components, and customer feedback using natural language queries.

/productboard-search

ProductBoard Feedback (/productboard-feedback)

Capture customer feedback and link it to features. Create notes from support tickets, user interviews, or any customer interaction.

/productboard-feedback

ProductBoard Release (/productboard-release)

Plan and manage releases by organizing features, tracking progress, and updating statuses. (Internal skill, not user-invocable)

Usage Examples

Create a Feature

Create a new feature called "Dark Mode Support" in ProductBoard with status "candidate"

Search Features

Search ProductBoard for features related to "authentication"

Capture Customer Feedback

Create a note in ProductBoard: "Customer requested ability to export reports to PDF"
from user [email protected] at Acme Corp, tagged as "feature-request"

View Product Structure

Show me the ProductBoard product hierarchy

Development

Prerequisites

  • Node.js 18+
  • npm or yarn

Setup

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

Project Structure

openclaw-productboard/
├── openclaw.plugin.json     # Plugin manifest
├── package.json             # Dependencies
├── tsconfig.json            # TypeScript config
├── src/
│   ├── index.ts             # Plugin entry point
│   ├── client/
│   │   ├── api-client.ts    # ProductBoard API client
│   │   ├── types.ts         # TypeScript types
│   │   └── errors.ts        # Error handling
│   ├── tools/
│   │   ├── features.ts      # Feature tools
│   │   ├── products.ts      # Product tools
│   │   ├── notes.ts         # Note tools
│   │   └── search.ts        # Search & user tools
│   └── utils/
│       ├── cache.ts         # LRU cache
│       └── rate-limiter.ts  # Rate limiting
└── skills/
    ├── productboard-search/
    ├── productboard-feedback/
    └── productboard-release/

API Reference

This plugin uses the ProductBoard Public API. The following endpoints are utilized:

  • GET/POST/PATCH/DELETE /features - Feature management
  • GET /products - Product listing
  • GET /components - Component listing
  • GET/POST /notes - Note management
  • POST /notes/{id}/connections - Note-feature linking
  • GET /users - User listing
  • GET /users/me - Current user

Error Handling

The plugin handles common API errors gracefully:

  • 401 Unauthorized - Invalid or expired API token
  • 403 Forbidden - Insufficient permissions
  • 404 Not Found - Resource doesn't exist
  • 429 Rate Limited - Automatic retry with backoff
  • 5xx Server Errors - Automatic retry with exponential backoff

License

MIT

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Links