You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/mcp/src/tools/analysis/authorWorkPatternTool.ts
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,17 @@ export function registerAuthorWorkPatternTool(server: McpServer) {
7
7
server.registerTool(
8
8
"author_work_pattern",
9
9
{
10
-
title: "Author별 작업량/변경유형 분석기",
10
+
title: "Author Work Pattern Analyzer",
11
11
description:
12
-
"특정 author의 기간 내 작업량(Commits/LOC/Churn)과 커밋 타입(feat/fix/refactor/...) 분포를 Octokit으로 계산합니다.",
12
+
"Analyzes an author’s development activity within a given period to measure workload and commit patterns. Aggregates metrics such as commits, insertions, deletions, and churn, and classifies commit types to reveal focus areas.",
13
13
inputSchema: {
14
-
repoPath: z.string().describe("GitHub repository path (owner/repo 또는 GitHub URL)"),
15
-
author: z.string().describe("로그인/이름/이메일 일부"),
16
-
branch: z.string().optional().describe("브랜치/커밋 SHA (기본: 기본 브랜치)"),
17
-
since: z.string().optional().describe('시작 시점 (예: "2025-09-01" 또는 "30d")'),
18
-
until: z.string().optional().describe("종료 시점 (미지정 시 현재)"),
0 commit comments