
Security News
The Code You Didn't Write Is Still Yours to Defend
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.
@robinpath/bitbucket
Advanced tools
Bitbucket module for RobinPath.
The bitbucket module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
npm install @robinpath/bitbucket
1. Set up credentials
bitbucket.setCredentials "your-credentials"
2. listRepositories
bitbucket.listRepositories
| Function | Description |
|---|---|
bitbucket.setCredentials | Configure bitbucket credentials. |
bitbucket.listRepositories | listRepositories |
bitbucket.getRepository | getRepository |
bitbucket.createRepository | createRepository |
bitbucket.deleteRepository | deleteRepository |
bitbucket.listBranches | listBranches |
bitbucket.createBranch | createBranch |
bitbucket.deleteBranch | deleteBranch |
bitbucket.listPullRequests | listPullRequests |
bitbucket.getPullRequest | getPullRequest |
bitbucket.createPullRequest | createPullRequest |
bitbucket.updatePullRequest | updatePullRequest |
bitbucket.mergePullRequest | mergePullRequest |
bitbucket.declinePullRequest | declinePullRequest |
bitbucket.listCommits | listCommits |
bitbucket.listPipelines | listPipelines |
bitbucket.getPipeline | getPipeline |
bitbucket.triggerPipeline | triggerPipeline |
bitbucket.listIssues | listIssues |
bitbucket.createIssue | createIssue |
bitbucket.listWorkspaces | listWorkspaces |
bitbucket.getWorkspace | getWorkspace |
bitbucket.listWebhooks | listWebhooks |
bitbucket.getUser | getUser |
bitbucket.listDeployments | listDeployments |
bitbucket.listRepositories
bitbucket.getRepository
bitbucket.createRepository
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/bitbucket";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
bitbucket.setCredentials "your-credentials"
bitbucket.listRepositories
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/docker — Docker module for complementary functionality@robinpath/git — Git module for complementary functionality@robinpath/github — GitHub module for complementary functionality@robinpath/gitlab — GitLab module for complementary functionality@robinpath/vercel — Vercel module for complementary functionalityMIT
FAQs
Bitbucket Cloud REST API v2 — workspaces, repositories, branches, commits, pull requests, pipelines, issues, webhooks, deployments. Uses the encrypted credential vault for App Password (Basic) or OAuth tokens.
The npm package @robinpath/bitbucket receives a total of 14 weekly downloads. As such, @robinpath/bitbucket popularity was classified as not popular.
We found that @robinpath/bitbucket demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.