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

@shipd-ai/olympus-cli

v0.1.0

Published

CLI for managing Olympus problems, checks, and agent runs on Shipd

Readme

Olympus CLI

The Olympus CLI is the terminal interface for Project Olympus on Shipd (https://shipd.ai/quests/olympus). Use it to inspect a challenge, download it locally, run checks, and manage rollouts.

Install

npm install -g @shipd-ai/olympus-cli

The CLI checks for newer published versions and will suggest:

npm install -g @shipd-ai/olympus-cli@latest

Get Started

  1. Sign in:
olympus auth login
  1. Open a challenge:
olympus problems view <challenge-id>
  1. From there, the CLI will suggest the most useful next commands.

Common Workflows

Inspect a challenge

olympus problems view <challenge-id>
olympus checks view <challenge-id>
olympus runs view <challenge-id>

Use problems view as the main entrypoint. It shows the latest version, readiness, checks, rollouts, and review history.

Download a challenge locally

olympus problems download <challenge-id>
cd olympus-<challenge-id>-v<version>
make clone
make build-image

This writes a local folder with:

  • task.md
  • Dockerfile when present
  • test.patch when present
  • solution.patch when present
  • hint.md when present
  • solution-approach.md when present
  • metadata.json
  • Makefile

The generated Makefile clones the source repo recursively, checks out the pinned commit, and builds from the checked-out repo context on linux/amd64.

Run checks

olympus checks view <challenge-id>
olympus checks run-all <challenge-id>
olympus checks wait <challenge-id>

Run rollouts

olympus runs presets <challenge-id>
olympus runs run <challenge-id> --preset full
olympus runs run <challenge-id> --solver nova --evaluator orion --count 3
olympus runs wait <challenge-id>

run-all is kept as a compatibility alias for --preset full.

Create or edit a draft

olympus problems create --title "My draft"
olympus problems edit <challenge-id> --description-file task.md
olympus problems version create <challenge-id>

JSON Output

Read commands support --json when you want machine-readable output.

Examples:

olympus problems view <challenge-id> --json
olympus checks view <challenge-id> --json
olympus runs view <challenge-id> --json

Environment

| Env var | Default | Purpose | |---------|---------|---------| | OLYMPUS_URL | https://shipd.ai/quests/olympus | Frontend base URL for auth and config | | OLYMPUS_CONVEX_URL | fetched from /api/cli/config | Convex URL override |

Credentials are stored at ~/.shipd/olympus/credentials.json.

Developer Notes

Run locally against the dev Olympus frontend:

cd quests/olympus/cli
pnpm install
OLYMPUS_URL=http://localhost:3006/quests/olympus pnpm cli auth login

Release checklist:

pnpm --dir quests/olympus/cli typecheck
pnpm --dir quests/olympus/cli build
cd quests/olympus/cli
npm pack --dry-run
npm publish