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

@zollibee/baton

v0.1.1

Published

사람↔Claude 협업 폴더 컨벤션 + 얇은 CLI

Readme

baton

사람↔Claude 협업 폴더 컨벤션 + 얇은 CLI. Markdown으로 지시하고(inbox/), HTML로 결과를 받는다(outbox/). 폴더 이름이 곧 인터페이스. A convention-first CLI for human↔Claude collaboration. Use Markdown for instructions (inbox/) and HTML for outputs (outbox/).

Live docs: https://sohee-zoe.github.io/baton/

Prerequisites

Node.js 18+

Install

# 글로벌 설치
npm install -g @zollibee/baton

# 글로벌 업데이트
npm update -g @zollibee/baton

# 로컬 개발
git clone https://github.com/sohee-zoe/baton.git && cd baton
npm link

Quickstart

mkdir my-project && cd my-project

baton init               # 폴더 스켈레톤 + CLAUDE.md 생성
baton new "첫 번째 task" # inbox/task.md 갱신 (이전 본 자동 archive)
baton status             # task · outbox 수 · 미결 질문 수 요약
baton status --json      # 동일 정보를 JSON으로 출력
baton open               # 최신 outbox/*.html 브라우저로 열기

Commands

| 명령 | 설명 | |------|------| | baton init [name] | 현재 디렉토리에 baton 프로젝트 생성 (idempotent) | | baton new "<task>" | inbox/task.md 갱신, 이전 본 자동 archive | | baton status | 현재 task · outbox 수 · 미결 질문 수 | | baton status --json | 위 정보를 JSON으로 출력 (tooling용, stdout only) | | baton open | outbox/ 최신 HTML을 OS 기본 브라우저로 열기 | | baton --version | 버전 출력 |

status --json output

{
  "projectName": "my-project",
  "task": "첫 번째 task",
  "outboxCount": 1,
  "latestOutbox": "001-usage-guide.html",
  "openQuestionsCount": 0,
  "batonVersion": {
    "file": "0.1.1",
    "running": "0.1.1"
  }
}

Folder Convention

project/
  CLAUDE.md              Claude 컨텍스트 진입점 (< 100줄)
  baton.json             프로젝트 메타 (이름, 생성일, baton 버전)
  inbox/
    task.md              현재 할 일 — 사람이 작성 (40줄 이내)
    .archive/            이전 task.md 자동 보관
    context/             참조 자료 (Claude가 명시 요청 시에만 로드)
  outbox/
    001-slug.html        Claude 산출물 — 브라우저로 열어볼 것
  memory/
    decisions.md         결정 누적 (append-only)
    open-questions.md    미결 질문 (해결 시 [resolved] 추가)
    summary.md           세션 부트스트랩 요약 (20줄 이내)

Tests

npm run smoke           # 전체 워크플로 통합 테스트 (7단계)
npm run test:conflicts  # init 충돌 정책 테스트 (4케이스)
npm run test:archive    # task archive 파일명 충돌 방지 테스트
npm run test:open       # 브라우저 open 실패 fallback 테스트
npm test                # 전체 테스트

Design Notes

  • Zero external deps — Node.js 내장 모듈만 사용
  • Markdown in, HTML out — 짧은 마크다운으로 지시, 풍부한 HTML로 결과 수신
  • Static HTML by defaultoutbox/ 산출물은 기본적으로 정적 HTML/CSS/SVG, JavaScript는 task가 명시 요청한 경우에만 사용
  • Append-only memorydecisions.md / open-questions.md 줄 삭제 금지
  • Version mismatchbaton status 경고 표시, --json에서 양쪽 버전 노출, 자동 마이그레이션 없음

상세 설계: docs/design.md · CLI 스펙: docs/cli-spec.md

Documentation

브라우저에서 직접 열 수 있는 HTML 문서 (빌드 불필요):

docs/는 npm 패키지에 포함되어 설치본에서도 위 로컬 링크를 열 수 있다.