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

@sean-sunagaku/aihy

v0.1.1

Published

AI hypothesis-verification loop for existing apps.

Readme

aihy

既存アプリに ペルソナ → AI 操作 → feedback の 1 サイクルを回すフレーム。 設定・履歴は対象リポの .aihy/ に全部入る分散型。 AI エージェントは対象リポに配置された /aihy-setup / /aihy-run スキルから動く。

インストール

対象リポ (= 検証したいアプリの git リポ) の直下で、どちらかの経路を選ぶ:

A. gh skill 経由 (GitHub CLI 2.91+ / agentskills.io 準拠)

cd <target-repo>
gh skill install sean-sunagaku/aihy aihy-setup   --agent claude-code --scope project
gh skill install sean-sunagaku/aihy aihy-persona --agent claude-code --scope project
gh skill install sean-sunagaku/aihy aihy-run     --agent claude-code --scope project

--agentcursor / codex / gemini-cli など他の AI エージェントにも差し替え可能。

B. npx 経由 (既存経路)

cd <target-repo>
npx @sean-sunagaku/aihy

.claude/skills/aihy-{setup,run,persona}/.aihy/ 雛形を同時に配置する。

使い方 (Claude Code)

インストール後、対象リポを Claude Code で開き:

  1. /aihy-setup — 対象リポを読んで target.json / problem.md を対話で埋め、初期ペルソナを 1 体生成
  2. (任意) /aihy-persona — 別視点のペルソナを追加、既存ペルソナを編集・削除
  3. 対象アプリを起動(web: URL にアクセス可 / mobile: 端末にインストール済み)
  4. /aihy-run — 選択したペルソナで憑依して 1 サイクル回し、.aihy/runs/<id>/feedback.md を生成
  5. 生成された feedback.md を対象リポの Claude に貼って反映

Cursor / Codex / ChatGPT / その他 AI 向け

slash コマンドが効かない AI 向けのコピペ用プロンプトが .aihy/PROMPT.md に入っている。 「.claude/skills/aihy-<name>/SKILL.md を読んで実行して」の形でどの AI にも投げられる。

スキーマ

  • target.json
    • web: { "name": string, "platform": "web", "url": string }
    • mobile: { "name": string, "platform": "mobile", "appId": string }
  • persona: { id, summary, role, goals[], painPoints[], techLevel, behaviorNotes, createdAt, runs[] }
  • problem.md: このアプリは何 / 誰に使ってほしい / 知りたいこと / ベット(任意)

実例: skills/aihy-setup/references/

詳細