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

@dregonc89/git-commit-mcp

v1.0.8

Published

MCP server for smart git commits with auto-evaluation

Readme

@dregonc89/git-commit-mcp

스마트 Git 커밋을 위한 MCP 서버입니다. Claude가 변경사항을 자동 분석하여 커밋 메시지와 평가를 생성합니다.

설치 및 설정

방법 1: Cursor 프로젝트 설정

프로젝트 루트에 .cursor/mcp.json 파일 생성:

{
  "mcpServers": {
    "git-commit": {
      "command": "npx",
      "args": ["-y", "@dregonc89/git-commit-mcp"]
    }
  }
}

Cursor 재시작 후 사용 가능합니다.

방법 2: Claude CLI 설정

개인 설정

~/.claude/settings.json 파일에 추가:

{
  "mcpServers": {
    "git-commit": {
      "command": "npx",
      "args": ["-y", "@dregonc89/git-commit-mcp"]
    }
  }
}

팀과 공유

프로젝트 루트에 .mcp.json 파일 생성 후 추가:

{
  "mcpServers": {
    "git-commit": {
      "command": "npx",
      "args": ["-y", "@dregonc89/git-commit-mcp"]
    }
  }
}
  1. Cursor 또는 Claude CLI 재시작

프로젝트 설정

커밋하려는 프로젝트 루트에 .claude/developer-config.json 생성:

{
  "developer": {
    "name": "홍길동",
    "email": "[email protected]",
    "team": "Frontend"
  },
  "commit": {
    "type": "develop",
    "dashboardApiUrl": "https://your-api.com/submit-commit",
    "dashboardApiKey": "your-api-key"
  },
  "scopes": {
    "console": "프론트엔드 관련",
    "bo": "백오피스 관련"
  }
}

💡 .claude/developer-config.json.gitignore에 추가하세요!

사용법

Cursor 또는 Claude CLI에서:

커밋해줘

Claude가 자동으로:

  1. 설정 로드
  2. 변경사항 분석
  3. prefix/scope 결정
  4. 평가 점수 산정
  5. 커밋 메시지 작성
  6. Dashboard API 제출
  7. 원격 푸시

MCP 도구

| 도구 | 설명 | | ----------------------------- | ------------------ | | git_commit_load_config | 설정 파일 로드 | | git_commit_get_status | Git 상태 조회 | | git_commit_get_diff | Staged diff 조회 | | git_commit_stage_all | 전체 stage | | git_commit_execute | 커밋 실행 | | git_commit_submit_dashboard | Dashboard API 제출 | | git_commit_push | 원격 푸시 |

커밋 메시지 형식

feat(console): 대시보드 차트 컴포넌트 추가

대시보드에 차트 기능을 추가했습니다.
- 라인 차트 구현
- 바 차트 구현

Refs: COM-123

evaluation: 6 (complexity: 3, volume: 2, thinking: 1, others: 0)
comment: 차트 라이브러리 연동 및 데이터 시각화 기능 구현

H: 4h
ai driven: 40m
productivity: 600%

라이선스

MIT