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

this-is-enough

v0.1.4

Published

Install and bootstrap the ThisIsEnough AGENTS.md workflow.

Downloads

521

Readme

This-Is-Enough

가볍지만 실행 가능한 에이전트 작업 규칙을 프로젝트에 설치하는 CLI입니다.

핵심 목표:

  • 요청 수신
  • 로드맵/플랜 정리
  • 페이즈 실행
  • 검증/기록 유지

기본 규칙 문서는 루트 AGENTS.md를 사용합니다.

Install

빠른 시작:

npx this-is-enough@latest init --mode existing --dry-run
npx this-is-enough@latest init --mode existing
npx this-is-enough@latest doctor

도움말:

npx this-is-enough@latest --help

로컬 개발 실행:

node /path/to/this-is-enough/bin/cli.js --help

Commands

init

Day-0 구조를 생성/보강합니다.

npx this-is-enough@latest init --mode new --cwd /path/to/repo
npx this-is-enough@latest init --mode existing --cwd /path/to/repo --dry-run

로컬 실행:

node /path/to/this-is-enough/bin/cli.js init --mode existing --cwd /path/to/repo

옵션:

  • --mode new|existing
  • --cwd <path> (기본값: 현재 디렉토리)
  • --dry-run (변경 예정만 출력)
  • --force (기존 파일 덮어쓰기, AGENTS.md는 차이가 있으면 --force 없이도 백업 후 갱신)
  • --yes (호환용, 기본이 이미 non-interactive)
  • .gitignorereqs/* 규칙이 없으면 자동 추가

doctor

규칙 준수 상태를 점검합니다.

npx this-is-enough@latest doctor --cwd /path/to/repo

로컬 실행:

node /path/to/this-is-enough/bin/cli.js doctor --cwd /path/to/repo

출력:

  • OK: 정상
  • WARN: 주의
  • FAIL: 필수 항목 누락/불일치 (exit code 1)

upgrade

템플릿/구조를 안전하게 업데이트합니다.

npx this-is-enough@latest upgrade --cwd /path/to/repo --dry-run
npx this-is-enough@latest upgrade --cwd /path/to/repo

로컬 실행:

node /path/to/this-is-enough/bin/cli.js upgrade --cwd /path/to/repo

동작:

  • 누락된 docs/adr, reqs, reqs/interrupts 생성
  • 누락된 ARCHITECTURE.md, reqs/INBOX.md 생성
  • AGENTS.md가 다르면 백업(AGENTS.md.bak.<timestamp>) 후 갱신
  • .gitignorereqs/* 규칙이 없으면 자동 추가

Installed Structure

init/upgrade는 아래 구조를 기준으로 맞춥니다.

ARCHITECTURE.md
AGENTS.md
docs/
  adr/
reqs/
  INBOX.md
  interrupts/

작업 진행 중에는 규칙에 따라 아래 파일이 생길 수 있습니다.

  • reqs/ACTIVE.md
  • reqs/INTERRUPT.md
  • reqs/REQ-XXXX-*/...

Workflow Modes

  • new: 빈 프로젝트/초기 프로젝트 설치
    • clean state 전제 (reqs/ACTIVE.md, reqs/INTERRUPT.md 없음)
  • existing: 진행 중 프로젝트 중간 도입
    • 기존 상태 보존 중심으로 설치

License

MIT