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

@ship-cli/opencode

v0.2.3

Published

OpenCode plugin for Ship - Linear task management integration

Downloads

1,118

Readme

@ship-cli/opencode

npm version License: MIT

OpenCode plugin for Ship - Linear task management and stacked changes for AI coding agents.

Installation

Add to your opencode.json:

{
  "plugins": ["@ship-cli/opencode"]
}

Prerequisites

  • Ship CLI installed and configured (ship init)
  • jj for VCS operations
  • Linear account

What It Provides

This plugin exposes the ship tool to OpenCode, enabling AI agents to:

Task Management

| Action | Description | |--------|-------------| | ready | Find tasks with no blockers | | list | List all tasks with optional filters | | blocked | List tasks waiting on dependencies | | show | View task details | | start | Mark task as in progress | | done | Mark task as complete | | create | Create new tasks | | update | Modify task properties | | block | Add task dependency | | unblock | Remove task dependency | | relate | Link related tasks | | status | Check ship configuration status |

Stacked Changes (jj)

| Action | Description | |--------|-------------| | stack-create | Create isolated workspace for a task | | stack-describe | Update commit message (use title + description params for multi-line) | | stack-sync | Fetch and rebase onto trunk | | stack-restack | Rebase stack onto trunk (no fetch) | | stack-submit | Push and create/update PR | | stack-status | View current change info | | stack-log | View stack of changes | | stack-squash | Squash change into parent | | stack-abandon | Abandon a change | | stack-up | Navigate to parent change | | stack-down | Navigate to child change | | stack-undo | Undo last jj operation | | stack-update-stale | Fix stale working copy | | stack-bookmark | Create or move bookmark | | stack-workspaces | List all workspaces | | stack-remove-workspace | Remove a workspace |

PR Reviews

| Action | Description | |--------|-------------| | pr-reviews | Fetch PR reviews in AI-friendly format |

Webhooks

| Action | Description | |--------|-------------| | webhook-daemon-status | Check webhook daemon status | | webhook-subscribe | Subscribe to PR events | | webhook-unsubscribe | Unsubscribe from events | | webhook-cleanup | Remove stale subscriptions |

Milestones

| Action | Description | |--------|-------------| | milestone-list | List project milestones | | milestone-show | View milestone details | | milestone-create | Create new milestone | | milestone-update | Modify milestone | | milestone-delete | Delete milestone | | task-set-milestone | Assign task to milestone | | task-unset-milestone | Remove task from milestone |

Skill Integration

For best results, pair this plugin with the ship-cli skill which provides workflow guidance:

.opencode/skill/ship-cli/SKILL.md

The skill teaches the agent the proper workflow:

  1. Find ready tasks
  2. Create isolated workspaces
  3. Make changes and sync
  4. Submit PRs with proper context

Links