한국어
문서
GitLab

GitLab

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

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

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


GitLab CI

OpenCode는 일반 GitLab 파이프라인에서 작동합니다. CI 컴포넌트로 파이프라인에 구축할 수 있습니다.

여기서는 커뮤니티에서 만든 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 파일에 다음을 추가하세요.
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 runners에서 실행됩니다.

설정

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

: 최신 지침은 GitLab 문서 (opens in a new tab)를 확인하세요.

  1. GitLab 환경을 구성하세요
  2. CI/CD를 설정하세요
  3. AI 모델 프로바이더 API 키를 받으세요
  4. 서비스 계정을 만드세요
  5. CI/CD 변수를 구성하세요
  6. flow 설정 파일을 만드세요. 예시는 다음과 같습니다:
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 agents 문서 (opens in a new tab)를 참조하세요.


예시

GitLab에서 OpenCode를 사용하는 방법의 예시입니다.

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

  • 이슈 설명

    GitLab 이슈에 이 댓글을 추가하세요. OpenCode가 이슈를 읽고 명확한 설명으로 답변합니다.

    @opencode explain this issue
  • 이슈 수정

    GitLab 이슈에서 다음과 같이 작성하세요: OpenCode가 새 브랜치를 생성하고, 변경 사항을 구현하고, 변경 사항이 포함된 머지 리퀘스트를 엽니다.

    @opencode fix this
  • 머지 리퀘스트 리뷰

    GitLab 머지 리퀘스트에 다음 댓글을 남기세요. OpenCode가 머지 리퀘스트를 리뷰하고 피드백을 제공합니다.

    @opencode review this merge request