| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- ---
- title: GitLab
- description: Use OpenCode in GitLab issues and merge requests.
- ---
- OpenCode integrates with your GitLab workflow through your GitLab CI/CD pipeline or with GitLab Duo.
- In both cases, OpenCode will run on your GitLab runners.
- ---
- ## GitLab CI
- OpenCode works in a regular GitLab pipeline. You can build it into a pipeline as a [CI component](https://docs.gitlab.com/ee/ci/components/)
- Here we are using a community-created CI/CD component for OpenCode — [nagyv/gitlab-opencode](https://gitlab.com/nagyv/gitlab-opencode).
- ---
- ### Features
- - **Use custom configuration per job**: Configure OpenCode with a custom configuration directory, for example `./config/#custom-directory` to enable or disable functionality per OpenCode invocation.
- - **Minimal setup**: The CI component sets up OpenCode in the background, you only need to create the OpenCode configuration and the initial prompt.
- - **Flexible**: The CI component supports several inputs for customizing its behavior
- ---
- ### Setup
- 1. Store your OpenCode authentication JSON as a File type CI environment variables under **Settings** > **CI/CD** > **Variables**. Make sure to mark them as "Masked and hidden".
- 2. Add the following to your `.gitlab-ci.yml` file.
- ```yaml title=".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"
- ```
- For more inputs and use cases [check out the docs](https://gitlab.com/explore/catalog/nagyv/gitlab-opencode) for this component.
- ---
- ## GitLab Duo
- OpenCode integrates with your GitLab workflow.
- Mention `@opencode` in a comment, and OpenCode will execute tasks within your GitLab CI pipeline.
- ---
- ### Features
- - **Triage issues**: Ask OpenCode to look into an issue and explain it to you.
- - **Fix and implement**: Ask OpenCode to fix an issue or implement a feature.
- It will create a new branch and raise a merge request with the changes.
- - **Secure**: OpenCode runs on your GitLab runners.
- ---
- ### Setup
- OpenCode runs in your GitLab CI/CD pipeline, here's what you'll need to set it up:
- :::tip
- Check out the [**GitLab docs**](https://docs.gitlab.com/user/duo_agent_platform/agent_assistant/) for up to date instructions.
- :::
- 1. Configure your GitLab environment
- 2. Set up CI/CD
- 3. Get an AI model provider API key
- 4. Create a service account
- 5. Configure CI/CD variables
- 6. Create a flow config file, here's an example:
- <details>
- <summary>Flow configuration</summary>
- ```yaml
- 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
- ```
- </details>
- You can refer to the [GitLab CLI agents docs](https://docs.gitlab.com/user/duo_agent_platform/agent_assistant/) for detailed instructions.
- ---
- ### Examples
- Here are some examples of how you can use OpenCode in GitLab.
- :::tip
- You can configure to use a different trigger phrase than `@opencode`.
- :::
- - **Explain an issue**
- Add this comment in a GitLab issue.
- ```
- @opencode explain this issue
- ```
- OpenCode will read the issue and reply with a clear explanation.
- - **Fix an issue**
- In a GitLab issue, say:
- ```
- @opencode fix this
- ```
- OpenCode will create a new branch, implement the changes, and open a merge request with the changes.
- - **Review merge requests**
- Leave the following comment on a GitLab merge request.
- ```
- @opencode review this merge request
- ```
- OpenCode will review the merge request and provide feedback.
|