gitlab-catalog-browser 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,11 +1,39 @@
1
1
  # gitlab-catalog-browser
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/gitlab-catalog-browser)](https://www.npmjs.com/package/gitlab-catalog-browser)
4
+ [![CI](https://github.com/kouassives/gitlab-catalog-browser/actions/workflows/ci.yml/badge.svg)](https://github.com/kouassives/gitlab-catalog-browser/actions/workflows/ci.yml)
5
+ [![skills.sh](https://skills.sh/b/kouassives/gitlab-catalog-browser)](https://skills.sh/kouassives/gitlab-catalog-browser)
6
+
3
7
  CLI tool for AI agents to browse GitLab CI/CD Catalog, inspect component schemas, validate pipeline configurations, and analyze pipeline structure. Inspired by [agent-browser](https://github.com/vercel-labs/agent-browser).
4
8
 
5
9
  ## Status
6
10
 
7
11
  Pre-product — specification phase.
8
12
 
13
+ ## Installation
14
+
15
+ ```bash
16
+ # Install globally via npm
17
+ npm install -g gitlab-catalog-browser
18
+
19
+ # Or install the agent skill for AI workflows
20
+ npx skills add kouassives/gitlab-catalog-browser
21
+ ```
22
+
23
+ ## Release Process
24
+
25
+ New versions are published to npm automatically via GitHub Actions using Trusted Publisher (OIDC) — no tokens required.
26
+
27
+ ```bash
28
+ # 1. Update version
29
+ npm version patch # or minor, or major
30
+
31
+ # 2. Push the commit and tag
32
+ git push && git push --tags
33
+ ```
34
+
35
+ The `publish.yml` workflow triggers on any tag matching `v*.*.*`, builds, tests, and publishes with provenance attestations.
36
+
9
37
  ## Spec-Driven Development
10
38
 
11
39
  This project follows the [OpenSpec](https://github.com/forztf/open-skilled-sdd) framework for Spec-Driven Development.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitlab-catalog-browser",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "CLI tool for AI agents to browse GitLab CI/CD Catalog, inspect component schemas, and validate pipeline configurations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: gitlab-catalog-browser
3
- description: GitLab CI/CD Catalog browsing and pipeline management CLI for AI agents. Use when the user needs to browse GitLab CI/CD components, inspect component schemas, validate .gitlab-ci.yml files, analyze pipeline structure, or manage GitLab CI/CD configurations. Triggers include requests to "browse the GitLab catalog", "list components", "validate a pipeline", "inspect a CI component", "check pipeline dependencies", "trace variables", or any task involving GitLab CI/CD pipeline management.
3
+ description: Browse GitLab CI/CD Catalog, inspect component schemas, validate pipelines, and analyze CI/CD configurations via CLI. For AI agents managing GitLab CI/CD workflows.
4
4
  ---
5
5
 
6
6
  # gitlab-catalog-browser