From openhands-skills
Interact with Bitbucket repositories and pull requests using BITBUCKET_TOKEN via API and curl. Triggers on bitbucket or git for Bitbucket-hosted code.
npx claudepluginhub openhands/extensionsThis skill uses the workspace's default tool permissions.
You have access to an environment variable, `BITBUCKET_TOKEN`, which allows you to interact with
Interacts with GitLab repositories, merge requests, and APIs using GITLAB_TOKEN. Manages pushes, branching, authentication, and MR creation for GitLab-hosted code.
Automates Bitbucket repositories, pull requests, branches, issues, and workspace management via Composio toolkit over Rube MCP. Use for programmatic PR creation, reviews, and repo ops.
Share bugs, ideas, or general feedback.
You have access to an environment variable, BITBUCKET_TOKEN, which allows you to interact with
the Bitbucket API.
If you encounter authentication issues when pushing to Bitbucket (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://x-token-auth:${BITBUCKET_TOKEN}@bitbucket.org/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_bitbucket_pr tool to create a pull 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