From openhands-skills
Interacts with GitLab repositories, merge requests, and APIs using GITLAB_TOKEN. Manages pushes, branching, authentication, and MR creation for GitLab-hosted code.
npx claudepluginhub openhands/extensionsThis skill uses the workspace's default tool permissions.
You have access to an environment variable, `GITLAB_TOKEN`, which allows you to interact with
Guides glab CLI usage and GitLab workflows, adapting GitHub gh patterns to GitLab projects, merge requests, and CI/CD pipelines.
Interact with GitLab via glab CLI: manage merge requests, CI/CD pipelines, issues, releases, variables, and API requests. Supports gitlab.com and self-hosted.
Reference GitLab CLI (glab) commands for authentication, issues, merge requests, pipelines, releases, repo management, labels, variables from terminal.
Share bugs, ideas, or general feedback.
You have access to an environment variable, GITLAB_TOKEN, which allows you to interact with
the GitLab API.
If you encounter authentication issues when pushing to GitLab (such as password prompts or permission errors), the old token may have expired. In such case, update the remote URL to include the current token: git remote set-url origin https://oauth2:${GITLAB_TOKEN}@gitlab.com/username/repo.git
Here are some instructions for pushing, but ONLY do this if the user asks you to:
main or master branchopenhands-workspace. Create a new branch with a better name before pushing.create_mr tool to create a merge request, if you haven't alreadygit remote -v && git branch # to find the current org, repo and branch
git checkout -b create-widget && git add . && git commit -m "Create widget" && git push -u origin create-widget