Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/agents/debugger.agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tools: ["read", "search", "execute"]
문제가 보고되면 다음 순서로 점검한다:

### 1단계: 환경 기본 점검
- Python 버전 (`python --version` → 3.10+ 지원, 3.12 권장/검증)
- Python 버전 (`python --version` → 3.14.5 권장/검증)
- 가상환경 활성화 여부 (`which python` → `.venv/` 경로인지)
- 의존성 설치 (`pip list` → `agent-framework`, `azure-identity`, `python-dotenv` 등 존재 여부)

Expand Down Expand Up @@ -48,7 +48,7 @@ tools: ["read", "search", "execute"]

| 항목 | 상태 | 설명 |
|------|------|------|
| Python 버전 | ✅ | 3.10.x |
| Python 버전 | ✅ | 3.14.5 |
| Azure 로그인 | ❌ | 만료됨 → `az login` 실행 필요 |
| ... | ... | ... |

Expand Down
4 changes: 2 additions & 2 deletions .github/instructions/python.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ applyTo: "**/*.py"

## 가상환경 설정

- Python 3.10+ 기반 `.venv` 가상환경을 사용한다.
- 권장 버전은 Python 3.12이다.
- Python 3.14.5 기반 `.venv` 가상환경을 사용한다.
- 권장 버전은 Python 3.14.5이다.
- 가상환경 생성 및 활성화:
```bash
python -m venv .venv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.14.5"

- name: Byte-compile all example scripts
run: python -m compileall -q src
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
| **GitHub PAT** | 선택 | `github` MCP·이슈/PR 작업 시 (실습 4) | <https://github.com/settings/tokens> |
| **GitHub CLI(`gh`)** | 선택 | 커밋·PR 실습 시 (실습 7) | `gh auth login` · <https://cli.github.com> |
| **Azure CLI** | 선택 | `azure` MCP 서버 인증 시 (실습 4) | `az version` → `az login` |
| **Python 3** | 선택 | 생성 코드 문법 검증 (실습 5) | `python3 --version` |
| **Python 3.14.5** | 선택 | 생성 코드 문법 검증 (실습 5) | `python3 --version` |

> 💡 **선택 항목은 없어도 완주할 수 있습니다.** PAT·Azure·Python 없이도 인증이 필요 없는
> `microsoftLearn` MCP 서버와 `/diff`·`reviewer` 검토만으로 모든 실습을 따라갈 수 있습니다.
Expand Down
Loading