2.9k★by mrgoodb
bitbucket – OpenClaw Skill
bitbucket is an OpenClaw Skills integration for coding workflows. Manage Bitbucket repositories, pull requests, and pipelines via API.
2.9k stars5.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | bitbucket |
| description | Manage Bitbucket repositories, pull requests, and pipelines via API. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/bitbucket |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/bitbucket |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
271 BSKILL.md
919 BSKILL.md
name: bitbucket description: Manage Bitbucket repositories, pull requests, and pipelines via API. metadata: {"clawdbot":{"emoji":"🪣","requires":{"env":["BITBUCKET_USERNAME","BITBUCKET_APP_PASSWORD"]}}}
Bitbucket
Git repository hosting.
Environment
export BITBUCKET_USERNAME="xxxxxxxxxx"
export BITBUCKET_APP_PASSWORD="xxxxxxxxxx"
List Repositories
curl -u "$BITBUCKET_USERNAME:$BITBUCKET_APP_PASSWORD" "https://api.bitbucket.org/2.0/repositories/$BITBUCKET_USERNAME"
Create Pull Request
curl -X POST -u "$BITBUCKET_USERNAME:$BITBUCKET_APP_PASSWORD" \
"https://api.bitbucket.org/2.0/repositories/{workspace}/{repo}/pullrequests" \
-H "Content-Type: application/json" \
-d '{"title": "Feature PR", "source": {"branch": {"name": "feature"}}, "destination": {"branch": {"name": "main"}}}'
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install bitbucket?
Run openclaw add @mrgoodb/bitbucket in your terminal. This installs bitbucket into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/bitbucket. Review commits and README documentation before installing.
