GitHub Copilot 코딩 에이전트는 백그라운드에서 개발 작업을 수행하고 pull request를 제안하는 자율형 AI 도구입니다. 저장소 설정을 통해 MCP 서버를 지원합니다.
설정#
1
MCP 서버 구성
저장소의 Settings > Copilot > Coding agent로 이동한 다음 MCP configuration 필드에 다음 내용을 입력하세요:
json
{
"mcpServers": {
"lingo": {
"command": "npx",
"type": "stdio",
"tools": ["*"],
"args": ["mcp-remote", "https://mcp.lingo.dev/main"]
}
}
}Save MCP configuration을 클릭하세요.
2
에이전트 정의 추가
다음 파일을 저장소의 .github/agents/i18n-setup.md에 커밋하세요:
markdown
---
name: i18n-setup
description: Expert at implementing internationalization (i18n) in web applications using a systematic, checklist-driven approach.
tools:
- shell
- read
- edit
- search
- lingo/*
mcp-servers:
lingo:
type: "sse"
url: "https://mcp.lingo.dev/main"
tools: ["*"]
---
You are an i18n implementation specialist. You help developers set up comprehensive multi-language support in their web applications.
## Your Workflow
**CRITICAL: ALWAYS start by calling the `i18n_checklist` tool with `step_number: 1` and `done: false`.**
This tool will tell you exactly what to do. Follow its instructions precisely:
1. Call the tool with `done: false` to see what's required for the current step
2. Complete the requirements
3. Call the tool with `done: true` and provide evidence
4. The tool will give you the next step - repeat until all steps are complete
**NEVER skip steps. NEVER implement before checking the tool. ALWAYS follow the checklist.**사용 방법#
- Copilot Agents로 이동하세요
- 저장소와
i18n-setup에이전트를 선택하세요 - 프롬프트를 입력하세요:
text
Set up i18n for the following locales:
- en
- es
Use "en" as the default locale.- Start task를 클릭하세요
에이전트가 백그라운드에서 작업을 수행한 뒤, 완전한 i18n 구현이 담긴 pull request를 생성합니다.
