Skip to content

Commit c83f1f2

Browse files
jschfflrclaude
andcommitted
chore: release v0.3.0
- feat: add `install --skills` command for AI agent skill files - feat: add full command reference to root `--help` - fix: rename executable to `qodev-gitlab-cli` to match package name - Update README with new executable name and install command Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9178b9e commit c83f1f2

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,26 @@ export GITLAB_TOKEN="glpat-xxxxxxxxxxxxxxxxxxxx"
3131
```
3232

3333
```bash
34+
# Install AI agent skill files (for Claude Code, etc.)
35+
$ qodev-gitlab-cli install --skills
36+
3437
# List open merge requests
35-
$ qodev-gitlab mrs list
38+
$ qodev-gitlab-cli mrs list
3639
!42 Add authentication opened feature/auth → main
3740

3841
# Get MR details as JSON (for scripts/agents)
39-
$ qodev-gitlab mrs get 42 --json
42+
$ qodev-gitlab-cli mrs get 42 --json
4043
{"iid": 42, "title": "Add authentication", "state": "opened", ...}
4144

4245
# List pipelines
43-
$ qodev-gitlab pipelines list
46+
$ qodev-gitlab-cli pipelines list
4447
12345 running main 2m ago
4548

4649
# Get details of a specific issue
47-
$ qodev-gitlab issues get 42
50+
$ qodev-gitlab-cli issues get 42
4851

4952
# Create a merge request from the current branch
50-
$ qodev-gitlab mrs create --title "Add new feature"
53+
$ qodev-gitlab-cli mrs create --title "Add new feature"
5154
```
5255

5356
## Commands
@@ -88,6 +91,7 @@ $ qodev-gitlab mrs create --title "Add new feature"
8891
| **variables** | `list` | List CI/CD variables (values hidden) |
8992
| | `get` | Get a CI/CD variable |
9093
| | `set` | Set (create or update) a CI/CD variable (`--protected`, `--masked`) |
94+
| **install** | `--skills` | Install AI agent skill files to `.claude/skills/qodev-gitlab/` |
9195

9296
## Configuration
9397

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "qodev-gitlab-cli"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
description = "Agent-friendly CLI for the GitLab API"
55
readme = "README.md"
66
requires-python = ">=3.11"

0 commit comments

Comments
 (0)