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

playauto-create-pr

v1.0.12

Published

Playauto PR 생성 CLI 도구

Readme

playauto-create-pr

Playauto PR 생성 CLI 도구입니다.

설치/실행

권장 실행 방식:

npx plto-pr --base master

전역 설치 후 실행:

npm i -g playauto-create-pr
plto-pr --base master

사용법

npx plto-pr --jira <JIRA_URL> [--base <BRANCH>] [--confirm] [--no-push]

예시

# 브랜치에서 ENG-<number> 자동 추출
npx plto-pr --base master

# Jira 직접 지정
npx plto-pr --jira https://playautogmpproject.atlassian.net/browse/ENG-6033 --base master

# 미리보기 출력 + 확인
npx plto-pr --base master --confirm

# 원격 푸시 건너뛰기
npx plto-pr --base master --no-push

옵션

  • --jira <URL>: Jira 이슈 URL 직접 지정 (브랜치에 ENG-/eng-가 있으면 자동 생성)
  • --base <BRANCH>: PR base 브랜치 (기본: master 또는 PR_BASE)
  • --confirm: PR 내용 미리보기 후 확인
  • --no-push: 원격에 브랜치를 자동으로 푸시하지 않음
  • --help, -h: 도움말

자동 Jira 링크 생성

  • 브랜치명이 ENG-1234 또는 feature/eng-1234-foo 형태이면 자동으로 Jira URL을 생성합니다.
  • 생성된 URL은 항상 ENG- 대문자로 변환됩니다.
  • JIRA_ROOT 미설정 시 기본값을 사용합니다.

기본값:

https://playautogmpproject.atlassian.net/browse

환경변수

필수:

  • GITHUB_TOKEN
  • PR_OWNER
  • PR_REPO
  • PR_API_URL

옵션:

  • PR_BASE
  • JIRA_ROOT (기본: https://playautogmpproject.atlassian.net/browse)

동작 흐름

  1. 현재 브랜치 확인
  2. master 또는 staging-* 브랜치면 실행 중단
  3. (옵션) 원격 브랜치 존재 확인 후 자동 푸시
  4. PR 템플릿 API 호출
  5. (옵션) 미리보기 출력 및 확인
  6. gh pr create로 PR 생성

요구사항

  • Node.js >= 10
  • GitHub CLI (gh) 설치 및 로그인