skills$openclaw/bitbucket
mrgoodb2.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

namebitbucket
descriptionManage Bitbucket repositories, pull requests, and pipelines via API. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/bitbucket
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/bitbucket
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains bitbucket in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
271 B
SKILL.md
919 B
SKILL.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"
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"}}}'
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.