# Gitlab Read

> A Claude skill from ParendumOU/Nexora.

- **Type:** Skill
- **Install:** `agentstack add skill-parendumou-nexora-gitlab-read`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [ParendumOU](https://agentstack.voostack.com/s/parendumou)
- **Installs:** 0
- **Category:** [Databases](https://agentstack.voostack.com/c/databases)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [ParendumOU](https://github.com/ParendumOU)
- **Source:** https://github.com/ParendumOU/Nexora/tree/main/backend/src/seeds/skills/builtin/gitlab_read
- **Website:** https://nexora.parendum.com

## Install

```sh
agentstack add skill-parendumou-nexora-gitlab-read
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# GitLab Read

Read access: projects, issues, MRs, files, pipelines, members.

## Tool: `gitlab_api`

ALWAYS use `gitlab_api` — credentials auto-resolved. NEVER call `http_request` against `gitlab.com/api/...`.

### Common actions
- `current_user` — verify auth
- `list_projects` — visible repos (`scope`: member/owned/starred/all)
- `list_groups` — accessible namespaces
- `list_subgroups` — children of parent group
- `repo_info` — single project metadata
- `list_issues` / `list_mrs` — per-project
- `read_file` — file at ref
- `list_branches` / `list_commits` / `list_pipelines`
- `search` — global across projects/issues/MRs/commits/users/blobs

## Legacy tools

`gitlab_repo_info`, `gitlab_list_issues`, `gitlab_list_mrs`, `gitlab_read_file` — back-compat only. Prefer `gitlab_api` → chain multiple actions in one response.

## Requirements

PAT stored in Settings → Integrations → GitLab. Self-hosted: credential carries `base_url`.

PAT scope = human who issued it (not service account, not admin):
- `list_projects scope=member` → ONLY projects PAT owner is member of.
- `list_groups` → ONLY groups owner belongs to.
- Empty `[]` = PAT genuinely has no membership. Do NOT retry with guessed names.

## Anti-hallucination

Always use real API responses verbatim. Never invent project names, slugs, ids, namespaces, branches, paths, URLs, or "probable" repos. Inventory smaller than expected → say so, suggest checking PAT scope.

## Example

```tool_calls
[
  {"name": "gitlab_api", "args": {"action": "current_user"}},
  {"name": "gitlab_api", "args": {"action": "list_projects", "scope": "member", "visibility": "private", "max_pages": 10}}
]
```

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [ParendumOU](https://github.com/ParendumOU)
- **Source:** [ParendumOU/Nexora](https://github.com/ParendumOU/Nexora)
- **License:** MIT
- **Homepage:** https://nexora.parendum.com

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-parendumou-nexora-gitlab-read
- Seller: https://agentstack.voostack.com/s/parendumou
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
