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

@render-harness/cap-linear

v0.8.2

Published

Linear monitoring capability pack for the Render agent harness.

Readme

@render-harness/cap-linear

Linear webhook and issue tools for agents in the Render harness.

Use this pack when an agent should react to Linear webhook events, inspect issue context, and optionally create or update Linear issues.

Configuration

Drop the pack into render-harness.yaml:

capabilities:
  - pack: "@render-harness/cap-linear"
    config:
      webhookSecretEnv: "LINEAR_WEBHOOK_SECRET"
      apiKeyEnv: "LINEAR_API_KEY"
      accessMode: "read"

Set these environment variables on the entry that loads the agent:

  • LINEAR_WEBHOOK_SECRET: Linear webhook signing secret used to verify events.
  • LINEAR_API_KEY: Linear API key used for reads and optional write tools.

Connector

The pack mounts the linear connector at /connectors/linear. Configure that URL as a Linear webhook endpoint and use the same secret as LINEAR_WEBHOOK_SECRET.

Each accepted Linear webhook event enqueues one harness run.

Config Keys

| Key | Type | Default | Notes | | --- | --- | --- | --- | | agent | string | default agent | Agent name to enqueue runs for. | | userId | string | cap-linear | User ID stored on enqueued runs. | | webhookSecretEnv | string | LINEAR_WEBHOOK_SECRET | Env var that contains the Linear webhook secret. | | apiKeyEnv | string | LINEAR_API_KEY | Env var that contains the Linear API key. | | accessMode | read or read_write | read | Enables write tools only when set to read_write. | | allowedTeams | string[] | all teams | Restricts events to matching team IDs or team keys. | | allowedProjects | string[] | all projects | Restricts events to matching project IDs or project names. | | states | string[] | all states | Restricts issue events to matching workflow state names. | | labels | string[] | all labels | Restricts issue events to matching label names. | | ignoredActors | string[] | none | Ignores events from matching Linear actor IDs. |

Tools

Read tools are available when LINEAR_API_KEY is set:

  • linear.get_issue
  • linear.search_issues
  • linear.list_comments
  • linear.list_teams
  • linear.list_projects
  • linear.list_workflow_states
  • linear.list_users

Set accessMode: read_write to enable write tools:

  • linear.create_issue
  • linear.create_comment
  • linear.update_issue
  • linear.update_issue_status
  • linear.assign_issue
  • linear.link_related_issue

Use permissions.requireApproval for write tools if the agent should ask before mutating Linear state.

Test Commands

pnpm --filter @render-harness/cap-linear build
pnpm --filter @render-harness/cap-linear test