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 +28 -0
- package/package.json +1 -1
- package/skills/gitlab-catalog-browser/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,39 @@
|
|
|
1
1
|
# gitlab-catalog-browser
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/gitlab-catalog-browser)
|
|
4
|
+
[](https://github.com/kouassives/gitlab-catalog-browser/actions/workflows/ci.yml)
|
|
5
|
+
[](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
|
-
description: GitLab CI/CD Catalog
|
|
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
|