Skip to content

Commit 8820bbd

Browse files
authored
Merge pull request #998 from seocylucky/vibe
fix: tool description ko -> en
2 parents 6d6fda4 + 89b17a3 commit 8820bbd

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

packages/mcp/src/tools/analysis/authorWorkPatternTool.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ export function registerAuthorWorkPatternTool(server: McpServer) {
77
server.registerTool(
88
"author_work_pattern",
99
{
10-
title: "Author별 작업량/변경유형 분석기",
10+
title: "Author Work Pattern Analyzer",
1111
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.",
1313
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("종료 시점 (미지정 시 현재)"),
19-
locale: z.enum(["en", "ko"]).default("en").describe("응답 언어"),
20-
chart: z.boolean().default(false).describe("HTML 차트 리포트 반환 여부"),
14+
repoPath: z.string().describe("GitHub repository path (e.g: owner/repo or https://github.com/owner/repo)"),
15+
author: z.string().describe("Author identifier (login, name, or partial email)"),
16+
branch: z.string().optional().describe("Branch to analyze (default: main)"),
17+
since: z.string().optional().describe("Analysis period start"),
18+
until: z.string().optional().describe("Analysis period end (defaults to now if unspecified)"),
19+
locale: z.enum(["en", "ko"]).default("en").describe("Response language (en: English, ko: Korean)"),
20+
chart: z.boolean().default(false).describe("Return HTML chart (true)"),
2121
},
2222
},
2323

0 commit comments

Comments
 (0)