@intentius/chant-lexicon-gitlab 0.1.14 → 0.1.15

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "1121cc5d536544ee7de9b5326c5aa47929f4ac40591d4269e1e50e428f7c32dc",
4
+ "manifest.json": "9e465a00a26c63eaeb0d3b3407353dbcc3a511038aa6be4b1d21052557a4414f",
5
5
  "meta.json": "931fc3246a55645b1493080bbeb160e5d205e42349e8bdca96ca243adb5f0da3",
6
6
  "types/index.d.ts": "5cd2e99f135a929b72bdd822d00d780d39b1cd407ba0cfb3d511c7ac9d667b58",
7
7
  "rules/artifact-no-expiry.ts": "3f3cabf9792cbf8207e53a25f506715466b19ec25e9c3b4d0d77fed6b2eb4542",
@@ -32,5 +32,5 @@
32
32
  "skills/chant-gitlab-migrate.md": "9402ed4fcfd25971cf72f8f02a93c43aadfed3b83876081b92711562ce1bdc34",
33
33
  "skills/chant-gitlab-patterns.md": "cefda1b656f222293d16381dfbf452b2b376b545a69f62e55dc38907fe8aa7fa"
34
34
  },
35
- "composite": "95153640312955ba3ebf46f26199a5c749cf81ae007ffdaa1b38f23148ca6464"
35
+ "composite": "f67b7f890c88e02db4444f723bfff195fd89a223ffe4d4024fbf5a6404715794"
36
36
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitlab",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "GitLab",
6
6
  "intrinsics": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-gitlab",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "GitLab CI lexicon for chant — declarative IaC in TypeScript",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://intentius.io/chant",
@@ -653,6 +653,12 @@ The \`chant-gitlab\` skill covers the full deployment lifecycle:
653
653
 
654
654
  The skill is invocable as a slash command: \`/chant-gitlab\`
655
655
 
656
+ ## Skill: chant-gitlab-migrate
657
+
658
+ Operational glue for translating GitHub Actions workflows to GitLab CI/CD. The skill detects the user's intent (paste a \`.github/workflows/*.yml\`, ask about migrating, etc.), invokes \`chant migrate\`, surfaces the report, and suggests GitLab-native upgrade moments like \`--use-composites\`.
659
+
660
+ See [Migration](../migration) for the full CLI surface, supported translations, and limitations.
661
+
656
662
  ## MCP integration
657
663
 
658
664
  The lexicon also provides MCP (Model Context Protocol) tools and resources that AI agents can use programmatically:
@@ -665,6 +671,7 @@ The lexicon also provides MCP (Model Context Protocol) tools and resources that
665
671
  | \`scaffold\` | Generate starter files |
666
672
  | \`search\` | Search available resource types |
667
673
  | \`gitlab:diff\` | Compare current build output against previous |
674
+ | \`gitlab:migrate\` | Translate a GitHub Actions workflow into GitLab CI/CD (see [Migration](../migration)) |
668
675
 
669
676
  | MCP resource | Description |
670
677
  |--------------|-------------|
@@ -672,6 +679,13 @@ The lexicon also provides MCP (Model Context Protocol) tools and resources that
672
679
  | \`examples/basic-pipeline\` | Example pipeline with build, test, and deploy jobs |`,
673
680
  },
674
681
  ],
682
+ extraSections: [
683
+ {
684
+ title: "Migrating from GitHub Actions",
685
+ content: `\`chant migrate\` translates GitHub Actions workflows into GitLab CI/CD pipelines or typed chant source. See [Migration](./migration) for the full CLI surface, supported translations, and limitations.`,
686
+ },
687
+ ],
688
+ sidebarExtra: [{ label: "Migration", slug: "migration" }],
675
689
  basePath: "/chant/lexicons/gitlab/",
676
690
  };
677
691