
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@robinpath/gitlab
Advanced tools
GitLab REST API v4 client — projects, branches, commits, files, issues, merge requests, releases, pipelines (CI), jobs, labels, and search. Works with gitlab.com and self-hosted instances. Uses the encrypted credential vault for personal / project / group
GitLab module for RobinPath.
The gitlab module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/gitlab
1. Set up credentials
gitlab.setCredentials "your-credentials"
2. listProjects
gitlab.listProjects
| Function | Description |
|---|---|
gitlab.setCredentials | Configure gitlab credentials. |
gitlab.listProjects | listProjects |
gitlab.getProject | getProject |
gitlab.createProject | createProject |
gitlab.deleteProject | deleteProject |
gitlab.listIssues | listIssues |
gitlab.getIssue | getIssue |
gitlab.createIssue | createIssue |
gitlab.updateIssue | updateIssue |
gitlab.listMergeRequests | listMergeRequests |
gitlab.getMergeRequest | getMergeRequest |
gitlab.createMergeRequest | createMergeRequest |
gitlab.updateMergeRequest | updateMergeRequest |
gitlab.mergeMergeRequest | mergeMergeRequest |
gitlab.listBranches | listBranches |
gitlab.createBranch | createBranch |
gitlab.deleteBranch | deleteBranch |
gitlab.listPipelines | listPipelines |
gitlab.getPipeline | getPipeline |
gitlab.retryPipeline | retryPipeline |
gitlab.cancelPipeline | cancelPipeline |
gitlab.listCommits | listCommits |
gitlab.listTags | listTags |
gitlab.createTag | createTag |
gitlab.listMembers | listMembers |
gitlab.addMember | addMember |
gitlab.getUser | getUser |
gitlab.searchProjects | searchProjects |
gitlab.listEnvironments | listEnvironments |
gitlab.listProjects
gitlab.getProject
gitlab.createProject
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/gitlab";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
gitlab.setCredentials "your-credentials"
gitlab.listProjects
`);
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/vercel — Vercel module for complementary functionality@robinpath/netlify — Netlify module for complementary functionalityMIT
FAQs
GitLab REST API v4 client — projects, branches, commits, files, issues, merge requests, releases, pipelines (CI), jobs, labels, and search. Works with gitlab.com and self-hosted instances. Uses the encrypted credential vault for personal / project / group
We found that @robinpath/gitlab 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
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

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.