[Setting] #3 - 에이전트 도구·MCP 및 컨텍스트 설정 - #4
Merged
Conversation
Co-authored-by: Cursor <cursoragent@cursor.com>
There was a problem hiding this comment.
Pull request overview
에이전트가 이 저장소에서 사용할 MCP/도구(특히 Figma, android-pilot)와 컨텍스트 제외 규칙을 문서(룰/ADR) 및 프로젝트 설정(.cursor)으로 고정해, 이후 UI 구현/빌드 검증 흐름을 일관되게 만들기 위한 PR입니다.
Changes:
- 에이전트 도구 규칙(
docs/rules/tooling.md)과 근거 ADR(0005) 추가 및 ADR 인덱싱 - Cursor 설정 추적 범위 정리(
.cursor/mcp.json,.gitignore,.cursorignore) - PR/브랜치 운영 규칙 및 UI 워크플로 문서에 MCP 연결/제약 사항 반영
Reviewed changes
Copilot reviewed 10 out of 11 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | 에이전트 MCP 관련 문서/설정 진입점 링크 추가 |
| docs/rules/ui-workflow.md | UI 작업 시 Figma MCP 사용 및 미연결 시 처리 방침 명시 |
| docs/rules/tooling.md | 에이전트 필수 도구(Figma, android-pilot) 및 Do/Don’t/검증 절차 정의 |
| docs/rules/git.md | PR 본문 Closes 사용 및 기본 브랜치 머지와의 관계 설명 보강 |
| docs/adr/README.md | ADR 0005 인덱스 추가 |
| docs/adr/0005-agent-tooling.md | Figma 플러그인/ android-pilot 선택 근거와 결과를 ADR로 고정 |
| docs/adr/0004-collaboration-and-documentation.md | 기본 브랜치/Closes 자동 종료 관련 협업 규칙 문구 보강 |
| AGENTS.md | 에이전트 도구 규칙 문서(tooling.md) 참조 및 툴링 리마인더 추가 |
| .gitignore | .cursor/는 mcp.json(및 rules/)만 추적하도록 정책 반영 |
| .cursorignore | 빌드 산출물/시크릿/IDE 파일을 에이전트 컨텍스트에서 제외 |
| .cursor/mcp.json | android-pilot MCP 서버 선언 추가 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| - 관련 이슈는 `Closes #<이슈번호>` 또는 `Refs #<이슈번호>` 형식을 사용한다. | ||
| - 관련 이슈는 **본문**에 `Closes #<이슈번호>`를 쓴다. (제목만으로는 이슈가 닫히지 않는다.) | ||
| - 이슈를 닫지 않고 참조만 할 때는 `Refs #<이슈번호>`를 쓴다. | ||
| - GitHub는 **저장소 기본 브랜치로 머지된 PR**에서만 `Closes`로 이슈를 자동 종료한다. 이 저장소의 기본 브랜치는 **`develop`**이다. (`main`으로만 머지하면 일상 이슈가 자동으로 닫히지 않는다.) |
| ### 협업 | ||
| - 이슈 트래커: **GitHub Issues** (Linear 사용 안 함). | ||
| - 브랜치: 작업 브랜치 → PR → **`develop`**. **`main`**은 스토어 배포·버전 태깅 시에만 머지한다. | ||
| - 저장소 **기본 브랜치는 `develop`**이다. GitHub `Closes #<이슈번호>` 자동 종료는 기본 브랜치 머지에만 동작하므로, 일상 PR base와 기본 브랜치를 맞춘다. |
Comment on lines
+4
to
+6
| "command": "npx", | ||
| "args": ["-y", "android-pilot-mcp"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
관련 이슈
변경 요약
.cursor/mcp.json에 선언 (Figma는 Cursor 플러그인 전제, 중복 선언 없음)docs/rules/tooling.md, ADR 0005로 에이전트 도구 규칙 고정.cursorignore및.cursor선택 추적(.gitignore)Closes자동 종료는 기본 브랜치(develop) 머지에서만 동작함을git.md/ADR 0004에 명시완료 기준 대응
docs/rules/tooling.md가 있다. — 필수 MCP, 빌드/UI 검증, 금지 조항docs/adr/0005-agent-tooling.md가 있다. — Figma 플러그인 + android-pilot 선택 이유.cursor/mcp.json에android-pilot이 선언되어 있다.AGENTS.md가docs/rules/tooling.md를 가리킨다.docs/rules/ui-workflow.md가 tooling과 모순 없이 Figma MCP를 참조한다.docs/adr/README.md에 ADR 0005가 인덱싱되어 있다.project_create등으로 architecture/ADR 위반 금지 조항이 있다. —tooling.mdDon't확인 방법
.cursor/mcp.json,.cursorignore,docs/rules/tooling.md,docs/adr/0005-agent-tooling.md경로 확인develop, assigneeJinUng41확인develop이어야 머지 시 [Setting] 에이전트 도구·MCP 설정 #3 자동 종료. 아직main이면 Settings에서 변경 필요)