1. 왜 GraphQL을 사용하는가?

✅ REST의 한계

✅ GraphQL의 해결책

➕ 추가 장점

type User {
  id: ID!
  name: String!
  age: Int
}
subscription {
  newMessage {
    text
    sender
  }
}

2. 서브모듈 (Submodule) 구조 이해

agent-builder-api-protocol 레포는 Submodule로 연결되어 있음