openclaw / bitbucket
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/bitbucket && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/1380" && unzip -o skill.zip -d .claude/skills/bitbucket && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/bitbucket/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Manage Bitbucket repositories, pull requests, and pipelines via API.
0 views
0 installs
Skill Content
---
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
```bash
export BITBUCKET_USERNAME="xxxxxxxxxx"
export BITBUCKET_APP_PASSWORD="xxxxxxxxxx"
```
## List Repositories
```bash
curl -u "$BITBUCKET_USERNAME:$BITBUCKET_APP_PASSWORD" "https://api.bitbucket.org/2.0/repositories/$BITBUCKET_USERNAME"
```
## Create Pull Request
```bash
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
- Docs: https://developer.atlassian.com/cloud/bitbucket/rest