Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

bitbucket-server位桶服务器

Agent Skill

bitbucket-server 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

8

下载量

143
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bitbucket-server(位桶服务器)
来源仓库:https://github.com/skempken/bitbucket-server
仓库路径:skills/bitbucket-server
安装命令:
npx skills add https://github.com/skempken/bitbucket-server --skill bitbucket-server
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/skempken/bitbucket-server --skill bitbucket-server

简介

bitbucket-server 提供与 BitBucket Server REST API 交互的工具集,聚焦 Pull Request 工作流。

  • 需配置 BITBUCKET_URL、USER 与 TOKEN 环境变量方可使用。
  • 支持 PR 创建、审批状态查询与分支权限管理等功能。
  • 适用于企业内部代码审查与 CI/CD 流水线集成场景。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

BitBucket Server

This skill provides tools for interacting with BitBucket Server's REST API, focusing on Pull Request management workflows.

Prerequisites

The following environment variables must be set:

  • BITBUCKET_URL - Base URL of the BitBucket Server instance (e.g., https://bitbucket.example.com)
  • BITBUCKET_USER - Username for authentication
  • BITBUCKET_TOKEN - Personal access token for authentication

Available Commands

The scripts/bitbucket_api.py script provides a CLI for BitBucket Server operations. Execute it with Python 3:

python3 scripts/bitbucket_api.py <command> [options]

Pull Request Commands

CommandDescription
list-prsList pull requests with optional status filter
get-prGet details of a specific pull request
create-prCreate a new pull request
get-diffGet the diff of a pull request
approveApprove a pull request
mergeMerge a pull request
declineDecline a pull request

Comment Commands

CommandDescription
get-commentsGet all comments and activities on a pull request
add-commentAdd a general or inline comment to a pull request
reply-commentReply to an existing comment

Task Commands

CommandDescription
get-tasksList all tasks on a pull request
complete-taskMark a single task as completed
complete-tasksMark multiple tasks as completed at once
reopen-taskReopen a single completed task
reopen-tasksReopen multiple tasks at once

Command Usage Examples

List Pull Requests

# List all open PRs in a repository
python3 scripts/bitbucket_api.py list-prs --project MYPROJ --repo my-repo

# List PRs with specific state
python3 scripts/bitbucket_api.py list-prs --project MYPROJ --repo my-repo --state MERGED

Get Pull Request Details

python3 scripts/bitbucket_api.py get-pr --project MYPROJ --repo my-repo --pr-id 42

Create a Pull Request

python3 scripts/bitbucket_api.py create-pr \
  --project MYPROJ \
  --repo my-repo \
  --title "Add new feature" \
  --from-branch feature/my-feature \
  --to-branch main \
  --description "Description of changes"

Get Diff

python3 scripts/bitbucket_api.py get-diff --project MYPROJ --repo my-repo --pr-id 42

Work with Comments

# Get all comments
python3 scripts/bitbucket_api.py get-comments --project MYPROJ --repo my-repo --pr-id 42

# Add a general comment
python3 scripts/bitbucket_api.py add-comment \
  --project MYPROJ --repo my-repo --pr-id 42 \
  --text "This looks good!"

# Add an inline comment on a specific file and line
python3 scripts/bitbucket_api.py add-comment \
  --project MYPROJ --repo my-repo --pr-id 42 \
  --text "Consider renaming this variable" \
  --file-path src/main.py --line 42 --line-type ADDED

# Reply to a comment
python3 scripts/bitbucket_api.py reply-comment \
  --project MYPROJ --repo my-repo --pr-id 42 \
  --comment-id 123 --text "Fixed!"

Work with Tasks

Tasks in BitBucket Server are comments with BLOCKER severity. They are managed via the Comments API.

# List all tasks (BLOCKER comments)
python3 scripts/bitbucket_api.py get-tasks --project MYPROJ --repo my-repo --pr-id 42

# Complete a single task
python3 scripts/bitbucket_api.py complete-task --project MYPROJ --repo my-repo --pr-id 42 --comment-id 456

# Complete multiple tasks at once (comma-separated IDs)
python3 scripts/bitbucket_api.py complete-tasks --project MYPROJ --repo my-repo --pr-id 42 --comment-ids 456,789,123

# Reopen a single task
python3 scripts/bitbucket_api.py reopen-task --project MYPROJ --repo my-repo --pr-id 42 --comment-id 456

# Reopen multiple tasks at once
python3 scripts/bitbucket_api.py reopen-tasks --project MYPROJ --repo my-repo --pr-id 42 --comment-ids 456,789

PR Actions

# Approve a PR
python3 scripts/bitbucket_api.py approve --project MYPROJ --repo my-repo --pr-id 42

# Merge a PR
python3 scripts/bitbucket_api.py merge --project MYPROJ --repo my-repo --pr-id 42

# Decline a PR
python3 scripts/bitbucket_api.py decline --project MYPROJ --repo my-repo --pr-id 42

Workflow Guidelines

Reviewing a Pull Request

  1. Get PR details to understand the context
  2. Get the diff to review code changes
  3. Get existing comments to see discussion
  4. Add comments or inline comments as needed
  5. Check and manage tasks if present
  6. Approve or request changes

Creating a Pull Request

  1. Ensure the source branch exists and has commits
  2. Create the PR with a descriptive title and description
  3. The script returns the PR ID and URL on success

Managing Tasks

Tasks in BitBucket Server are comments with BLOCKER severity. Use get-tasks to list all tasks and their status (returns comment IDs), then complete-task or reopen-task to change their state. The comment ID from get-tasks output is used as --comment-id for task operations.

Error Handling

The script outputs JSON for successful operations and error messages for failures. Common errors:

  • Missing environment variables: Ensure BITBUCKET_URL, BITBUCKET_USER, and BITBUCKET_TOKEN are set
  • Authentication failed: Verify credentials and token permissions
  • Resource not found: Check project, repository, and PR ID values

Additional Reference

For detailed API endpoint documentation, see references/api_endpoints.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.35%
按下载量换算53

Claude

29.75%
按下载量换算43

Cursor

17.83%
按下载量换算25

Gemini CLI

8.55%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills