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

@arrhq/crate-cli

v0.12.1

Published

Official CLI for Crate project workflows and MCP operations

Downloads

4,250

Readme

@arrhq/crate-cli

Crate のプロジェクト運用を CLI で行うための公式クライアントです。

Install

npm i -g @arrhq/crate-cli

Quick Start

crate auth login --crate-url https://crateio.com
crate context init
crate tool list
crate session list --visibility active --lifecycle-status active --limit 20
  • crate auth login はユーザー認証を行います。
  • crate context init は repository root に .crate/config.json を作成し、リポジトリ単位で project_idgithub_repo を固定します。
  • crate context init--project-id 省略時に、認証済みの対話環境ならブラウザでプロジェクト選択を開きます。非対話環境では --project-id <uuid> を指定してください。

.crate/config.json の例:

{
  "project_id": "11111111-1111-4111-8111-111111111111",
  "github_repo": "arrhq/crate"
}

Common Commands

crate auth status
crate context show
crate issue list --status in_progress --limit 20
crate issue create --title "CLI redesign" --summary "gh 風の command surface へ寄せる"
crate issue start --issue 123
crate issue plan show --issue 123
crate issue plan sync --issue 123 --checklist-file ./plan.md
crate issue checklist update --issue 123 --item-title "検証を完了する" --status done
crate issue complete --summary "CLI surface を整理した" --artifact-url https://github.com/arrhq/crate/pull/999
crate session view
crate session list --visibility active --lifecycle-status active --limit 20
crate session archive --all --except-session-id t/9123210a97c3079bddca5142a71c04bba50cabec --dry-run
crate session archive --all --except-session-id t/9123210a97c3079bddca5142a71c04bba50cabec
crate session progress --state "実装を進めている" --now "README を整理している" --next "PR を作成する"
crate session checkpoint --kind pr_opened --summary "PR #999 を作成した" --reason "レビュー共有の基点を残す" --next-action "CI の結果を確認する" --reference-url https://github.com/arrhq/crate/pull/999
crate session cleanup

crate session list は lifecycle 判定付きの一覧取得、crate session archive は単体または一括 archive に対応します。t/<40hex> の history alias も --session-id / --except-session-id にそのまま指定できます。

日常利用では crate issue ...crate session ... が中心です。より細かい制御や開発者向けの low-level command は repository README を参照してください。

CI / Headless

export CRATE_URL="https://crateio.com"
export CRATE_TOKEN="<crate_mt_...>"
export CRATE_PROJECT_ID="<project_uuid>" # optional

More Docs