AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Work Git Git Diff Summary

skill-jonayeon-claude-code-skills-work-git-git-diff-summary · by JoNaYeon

Use this skill when the user wants to compare current code with a previous git state and get a summary of what changed. Triggers on: 'what changed', 'summarize changes', 'diff summary', 'what did I change', 'compare with last commit', '변경사항 요약', '뭐가 바뀌었는지', '지금까지 뭐 했어'.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-jonayeon-claude-code-skills-work-git-git-diff-summary

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jonayeon-claude-code-skills-work-git-git-diff-summary)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Work Git Git Diff Summary? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Git Diff Summary

목적

현재 작업 중인 코드와 이전 git 상태를 비교하여 변경사항을 사람이 읽기 쉬운 형태로 요약합니다.

지침

1. 비교 기준 파악

사용자가 기준을 지정하지 않으면 다음 순서로 시도합니다:

  • 스테이지된 변경사항: git diff --staged
  • 스테이지 안 된 변경사항: git diff
  • 마지막 커밋과 비교: git diff HEAD
  • 특정 브랜치/커밋과 비교: git diff

2. 변경사항 수집

# 변경된 파일 목록
git diff --name-status HEAD

# 전체 diff
git diff HEAD

# 커밋 로그 (작업 맥락 파악용)
git log --oneline -10

3. 분석 및 요약

다음 관점으로 변경사항을 분석합니다:

  • 무엇이 바뀌었나: 추가/수정/삭제된 파일과 핵심 변경 내용
  • 왜 바뀌었나: 코드 맥락에서 의도를 추론
  • 영향 범위: 다른 파일이나 기능에 미치는 영향
  • 주의사항: 리뷰가 필요하거나 테스트가 필요한 부분

출력 형식

## 변경사항 요약

**비교 기준**: HEAD (마지막 커밋) vs 현재 작업본

### 변경된 파일 (N개)
| 파일 | 변경 유형 | 요약 |
|------|-----------|------|
| src/auth.js | 수정 | 로그인 검증 로직 추가 |
| README.md | 수정 | 설치 방법 업데이트 |

### 주요 변경 내용
1. **[파일명]** — 무엇을 왜 변경했는지

### 영향 분석
- 영향을 받는 기능/모듈

### 주의사항
- 테스트 필요 항목 또는 리뷰 포인트

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.