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

fishladder

v0.5.2

Published

Fishladder CLI — manage projects, tasks, feedback, and hiring from your terminal

Readme

Fishladder CLI

Command-line tool for Fishladder — manage projects, tasks, feedback, hiring, and AI features from your terminal.

npm install -g fishladder

Authentication

fish login          # Opens browser for OAuth login
fish logout         # Remove stored token
fish whoami         # Show current user

Or set FISHLADDER_API_KEY=fl_<key> to skip browser login (useful for CI).

Commands

Projects & Roadmap

fish projects list
fish goals list
fish goals create "Reduce churn by 20%"
fish initiatives list
fish initiatives create "Platform v2" --status in_progress
fish rows list
fish rows create "Growth"

Tasks

fish tasks list --project <id>
fish tasks create "Fix auth bug" --project <id> --priority high --due 2026-04-01
fish tasks update <id> --status in_progress --assign <userId>
fish tasks complete <id>

Smart syntax for quick task creation:

fish tasks create "Fix login bug" --project <id> @sarah !high #backend due:friday
  • @user — assignee
  • !priority — low, medium, high, urgent
  • #tag — tags (multiple allowed)
  • due:date — YYYY-MM-DD, today, tomorrow, or weekday name

Feedback

fish feedback list
fish feedback create "Users want dark mode" --impact high --company "Acme Corp"
fish feedback analyze --ids fb1,fb2,fb3

Analyze also supports stdin:

fish feedback list --format json | fish feedback analyze
echo "Users keep asking for dark mode" | fish feedback analyze

Hiring

fish hiring jobs
fish hiring candidates
fish hiring pipeline --job <id>
fish hiring move <applicationId> --stage <stageId>
fish hiring hire <applicationId>
fish hiring reject <applicationId> --reason "Not a fit"

AI

# Chat with the AI assistant
fish ai chat "what's blocking the platform team?"

# Generate tasks from meeting notes
cat meeting-notes.txt | fish ai generate-tasks --project <id>
pbpaste | fish ai generate-tasks --project <id>

# Feedback intelligence
cat support-transcript.txt | fish ai ingest --source support
fish ai auto-group
fish ai suggest-projects

# Task suggestions
fish ai suggest-priority <taskId>
fish ai suggest-assignment <taskId>
fish ai detect-blocked --project <id>

# Hiring AI
fish ai score <applicationId>
fish ai bottlenecks --job <id>

# Roadmap AI
fish ai connect-goals

# Signals & actions
fish ai signals --module feedback
fish ai actions --status pending
fish ai approve <actionId>
fish ai reject <actionId>
fish ai undo <actionId> --feedback "Wrong priority"

Other

fish custom-fields list --type task
fish webhooks list
fish webhooks create https://example.com/hook --events task.created,task.updated

JSON Output

Every list command supports --format json for scripting:

fish tasks list --project <id> --format json | jq '.[].title'
fish feedback list --format json | jq 'length'

Environment Variables

| Variable | Default | Purpose | |----------|---------|---------| | FISHLADDER_API_KEY | — | API key (skips browser login) | | FISHLADDER_API_URL | https://app.ladder.fish/api/v1 | API base URL | | FISHLADDER_AUTH_URL | https://app.ladder.fish | Auth page URL |

Development

git clone https://github.com/prone/fishladder-cli.git
cd fishladder-cli
npm install
npm link
npm test        # 83 tests

License

MIT