@intentius/chant-lexicon-gitlab 0.0.14 → 0.0.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": "xxhash64",
3
3
  "artifacts": {
4
- "manifest.json": "fc31254013f297f8",
4
+ "manifest.json": "ca4a4caa423e76f8",
5
5
  "meta.json": "c663c6c63748a9d0",
6
6
  "types/index.d.ts": "64e65524615be023",
7
7
  "rules/missing-stage.ts": "6d5379e74209a735",
@@ -17,5 +17,5 @@
17
17
  "rules/yaml-helpers.ts": "b5416b80369484f2",
18
18
  "skills/chant-gitlab.md": "4393eb63e0b84b7f"
19
19
  },
20
- "composite": "cb4aab25c84e3aa4"
20
+ "composite": "37c2ff19bbda42a0"
21
21
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitlab",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "GitLab",
6
6
  "intrinsics": [
package/package.json CHANGED
@@ -1,30 +1,33 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-gitlab",
3
- "version": "0.0.14",
3
+ "version": "0.0.15",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
- "files": ["src/", "dist/"],
6
+ "files": [
7
+ "src/",
8
+ "dist/"
9
+ ],
7
10
  "publishConfig": {
8
- "access": "public"
9
- },
10
- "exports": {
11
- ".": "./src/index.ts",
12
- "./*": "./src/*",
13
- "./manifest": "./dist/manifest.json",
14
- "./meta": "./dist/meta.json",
15
- "./types": "./dist/types/index.d.ts"
16
- },
17
- "scripts": {
18
- "generate": "bun run src/codegen/generate-cli.ts",
19
- "bundle": "bun run src/package-cli.ts",
20
- "validate": "bun run src/validate-cli.ts",
21
- "docs": "bun run src/codegen/docs-cli.ts",
22
- "prepack": "bun run bundle && bun run validate"
23
- },
24
- "dependencies": {
25
- "@intentius/chant": "0.0.13"
26
- },
27
- "devDependencies": {
28
- "typescript": "^5.9.3"
29
- }
11
+ "access": "public"
12
+ },
13
+ "exports": {
14
+ ".": "./src/index.ts",
15
+ "./*": "./src/*.ts",
16
+ "./manifest": "./dist/manifest.json",
17
+ "./meta": "./dist/meta.json",
18
+ "./types": "./dist/types/index.d.ts"
19
+ },
20
+ "scripts": {
21
+ "generate": "bun run src/codegen/generate-cli.ts",
22
+ "bundle": "bun run src/package-cli.ts",
23
+ "validate": "bun run src/validate-cli.ts",
24
+ "docs": "bun run src/codegen/docs-cli.ts",
25
+ "prepack": "bun run bundle && bun run validate"
26
+ },
27
+ "dependencies": {
28
+ "@intentius/chant": "0.0.15"
29
+ },
30
+ "devDependencies": {
31
+ "typescript": "^5.9.3"
32
+ }
30
33
  }
@@ -624,7 +624,7 @@ Skills are structured markdown documents bundled with a lexicon. When an AI agen
624
624
 
625
625
  ## Installation
626
626
 
627
- When you scaffold a new project with \`chant init --lexicon gitlab\`, the skill is installed to \`.claude/skills/chant-gitlab/SKILL.md\` for automatic discovery by Claude Code.
627
+ When you scaffold a new project with \`chant init --lexicon gitlab\`, the skill is installed to \`skills/chant-gitlab/SKILL.md\` for automatic discovery by Claude Code.
628
628
 
629
629
  For existing projects, create the file manually:
630
630