@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.
- package/dist/integrity.json +2 -2
- package/dist/manifest.json +1 -1
- package/package.json +1 -1
- package/src/codegen/docs.ts +14 -0
package/dist/integrity.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"algorithm": "sha256",
|
|
3
3
|
"artifacts": {
|
|
4
|
-
"manifest.json": "
|
|
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": "
|
|
35
|
+
"composite": "f67b7f890c88e02db4444f723bfff195fd89a223ffe4d4024fbf5a6404715794"
|
|
36
36
|
}
|
package/dist/manifest.json
CHANGED
package/package.json
CHANGED
package/src/codegen/docs.ts
CHANGED
|
@@ -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
|
|