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

@linghub/agent-cli

v0.1.0

Published

CLI for LingHub codegen agent (Plan→Implement→Review) without VS Code

Downloads

28

Readme

@linghub/agent-cli

LingHub Nexus Agent CLI — ターミナルから LingHub の AI エージェント機能をフル活用するコマンドラインツール。

インストール

# モノレポ内でビルドしてグローバルにリンク
pnpm --filter @linghub/agent-cli run build
npm link packages/linghub-agent-cli

# またはモノレポ内から直接実行
node packages/linghub-agent-cli/dist/cli.js --help

クイックスタート

1. サービスに申し込む(未申し込みの場合)

https://hub.linghub.dev/apply

2. API キーを取得する

https://hub.linghub.dev/dashboard/api-keys

3. 環境変数を設定する

export LINGHUB_ROUTER_URL=https://router.linghub.dev
export LINGHUB_API_KEY=lhk_your-key

未設定のまま実行すると、申し込みページへの誘導メッセージが表示されます。

4. エージェントを起動する

# 自律エージェントループ
linghub-agent agent "src/auth.ts のバグを修正してください"

# インタラクティブチャット
linghub-agent chat

# 引数なしでメニューから選択
linghub-agent

主なコマンド

| コマンド | 説明 | |---------|------| | linghub-agent | インタラクティブランチャー(メニュー選択) | | linghub-agent agent "<task>" | 自律エージェントループ(SSE ストリーミング) | | linghub-agent chat | リッチ入力チャット | | linghub-agent project list/init/set | プロジェクト設定管理 | | linghub-agent skill list/run <name> | スキル管理 | | linghub-agent code-agent "<task>" | Plan→Implement→Review パイプライン |

主なフラグ

| フラグ | 説明 | |-------|------| | --workspace DIR | ワークスペースディレクトリ | | --project KEY | Nexus プロジェクトキーを適用 | | --skill NAME | スキルを適用してエージェント起動 | | --files | ファイルエクスプローラーを表示 | | --no-stream | ストリーミングを無効化(CI 向け) | | --dangerously-skip-permissions | 承認バイパス(enterprise プラン限定・CI/サンドボックス専用) |

環境変数

| 変数 | 必須 | 説明 | |------|------|------| | LINGHUB_ROUTER_URL | ✓ | Router Worker の URL | | LINGHUB_API_KEY | ✓ | Bearer トークン(lhk_ 始まり) | | LINGHUB_DASHBOARD_URL | — | 管理画面 URL(デフォルト: https://hub.linghub.dev) | | LINGHUB_PROJECT | — | デフォルトプロジェクトキー | | ANTHROPIC_API_KEY | — | code-agent/full 用 | | OPENAI_API_KEY | — | code-agent/full 用 |

詳細は docs/LINGHUB_AGENT_CLI.md を参照。