한국어
문서
GitLab

GitLab

GitLab 이슈와 머지 리퀘스트에서 OpenCode 사용하기.

OpenCode는 GitLab CI/CD 파이프라인 또는 GitLab Duo를 통해 GitLab 워크플로와 통합됩니다.

두 경우 모두 OpenCode는 GitLab 러너에서 실행됩니다.


GitLab CI

OpenCode는 일반 GitLab 파이프라인에서 동작합니다. CI 컴포넌트 (opens in a new tab)로 파이프라인에 빌드해 넣을 수 있습니다.

여기서는 커뮤니티가 만든 OpenCode용 CI/CD 컴포넌트인 nagyv/gitlab-opencode (opens in a new tab)를 사용합니다.


기능

  • 잡마다 사용자 지정 설정 사용 : OpenCode를 사용자 지정 설정 디렉터리(예: ./config/#custom-directory)로 설정해 OpenCode 호출마다 기능을 활성화하거나 비활성화할 수 있습니다.
  • 최소한의 설정 : CI 컴포넌트가 백그라운드에서 OpenCode를 설정하므로, OpenCode 설정과 초기 프롬프트만 생성하면 됩니다.
  • 유연함 : CI 컴포넌트는 동작을 사용자 지정하기 위한 여러 입력을 지원합니다.

설정

  1. OpenCode 인증 JSON을 Settings > CI/CD > Variables에서 File 유형의 CI 환경 변수로 저장하세요. "Masked and hidden"으로 표시하는 것을 잊지 마세요.

  2. 다음을 .gitlab-ci.yml 파일에 추가하세요.

    .gitlab-ci.yml
    include:
      - component: $CI_SERVER_FQDN/nagyv/gitlab-opencode/opencode@2
        inputs:
          config_dir: ${CI_PROJECT_DIR}/opencode-config
          auth_json: $OPENCODE_AUTH_JSON # The variable name for your OpenCode authentication JSON
          command: optional-custom-command
          message: "Your prompt here"

더 많은 입력과 사용 사례는 이 컴포넌트의 문서를 확인하세요 (opens in a new tab).


GitLab Duo

OpenCode는 GitLab 워크플로와 통합됩니다. 댓글에서 @opencode를 멘션하면 OpenCode가 GitLab CI 파이프라인 내에서 작업을 실행합니다.


기능

  • 이슈 분류 : OpenCode에게 이슈를 살펴보고 설명해 달라고 요청하세요.
  • 수정 및 구현 : OpenCode에게 이슈를 수정하거나 기능을 구현하도록 요청하세요. 변경 사항으로 새 브랜치를 만들고 머지 리퀘스트를 올립니다.
  • 안전함 : OpenCode는 GitLab 러너에서 실행됩니다.

설정

OpenCode는 GitLab CI/CD 파이프라인에서 실행됩니다. 설정에 필요한 사항은 다음과 같습니다:

팁: 최신 안내는 GitLab 문서 (opens in a new tab)를 확인하세요.

  1. GitLab 환경을 설정합니다

  2. CI/CD를 설정합니다

  3. AI 모델 프로바이더 API 키를 얻습니다

  4. 서비스 계정을 만듭니다

  5. CI/CD 변수를 설정합니다

  6. 플로우 설정 파일을 만듭니다. 예시는 다음과 같습니다:

    플로우 설정

    image: node:22-slim
    commands:
      - echo "Installing opencode"
      - npm install --global opencode-ai
      - echo "Installing glab"
      - export GITLAB_TOKEN=$GITLAB_TOKEN_OPENCODE
      - apt-get update --quiet && apt-get install --yes curl wget gpg git && rm --recursive --force /var/lib/apt/lists/*
      - curl --silent --show-error --location "https://raw.githubusercontent.com/upciti/wakemeops/main/assets/install_repository" | bash
      - apt-get install --yes glab
      - echo "Configuring glab"
      - echo $GITLAB_HOST
      - echo "Creating OpenCode auth configuration"
      - mkdir --parents ~/.local/share/opencode
      - |
        cat > ~/.local/share/opencode/auth.json << EOF
        {
          "anthropic": {
            "type": "api",
            "key": "$ANTHROPIC_API_KEY"
          }
        }
        EOF
      - echo "Configuring git"
      - git config --global user.email "[email protected]"
      - git config --global user.name "OpenCode"
      - echo "Testing glab"
      - glab issue list
      - echo "Running OpenCode"
      - |
        opencode run "
        You are an AI assistant helping with GitLab operations.
     
        Context: $AI_FLOW_CONTEXT
        Task: $AI_FLOW_INPUT
        Event: $AI_FLOW_EVENT
     
        Please execute the requested task using the available GitLab tools.
        Be thorough in your analysis and provide clear explanations.
     
        <important>
        Please use the glab CLI to access data from GitLab. The glab CLI has already been authenticated. You can run the corresponding commands.
     
        If you are asked to summarize an MR or issue or asked to provide more information then please post back a note to the MR/Issue so that the user can see it.
        You don't need to commit or push up changes, those will be done automatically based on the file changes you make.
        </important>
        "
      - git checkout --branch $CI_WORKLOAD_REF origin/$CI_WORKLOAD_REF
      - echo "Checking for git changes and pushing if any exist"
      - |
        if ! git diff --quiet || ! git diff --cached --quiet || [ --not --zero "$(git ls-files --others --exclude-standard)" ]; then
          echo "Git changes detected, adding and pushing..."
          git add .
          if git diff --cached --quiet; then
            echo "No staged changes to commit"
          else
            echo "Committing changes to branch: $CI_WORKLOAD_REF"
            git commit --message "Codex changes"
            echo "Pushing changes up to $CI_WORKLOAD_REF"
            git push https://gitlab-ci-token:$GITLAB_TOKEN@$GITLAB_HOST/gl-demo-ultimate-dev-ai-epic-17570/test-java-project.git $CI_WORKLOAD_REF
            echo "Changes successfully pushed"
          fi
        else
          echo "No git changes detected, skipping push"
        fi
    variables:
      - ANTHROPIC_API_KEY
      - GITLAB_TOKEN_OPENCODE
      - GITLAB_HOST

자세한 안내는 GitLab CLI 에이전트 문서 (opens in a new tab)를 참고하세요.


예시

다음은 GitLab에서 OpenCode를 사용하는 몇 가지 예시입니다.

팁: @opencode 대신 다른 트리거 문구를 사용하도록 설정할 수 있습니다.

  • 이슈 설명 GitLab 이슈에 다음 댓글을 추가하세요.

    @opencode explain this issue

    OpenCode가 이슈를 읽고 명확한 설명으로 답합니다.

  • 이슈 수정 GitLab 이슈에서 다음과 같이 말하세요:

    @opencode fix this

    OpenCode가 새 브랜치를 만들고, 변경 사항을 구현하며, 변경 사항으로 머지 리퀘스트를 엽니다.

  • 머지 리퀘스트 리뷰 GitLab 머지 리퀘스트에 다음 댓글을 남기세요.

    @opencode review this merge request

    OpenCode가 머지 리퀘스트를 리뷰하고 피드백을 제공합니다.