@yawlabs/ctxlint 0.25.0 → 0.25.1
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/.pre-commit-hooks.yaml +1 -1
- package/dist/index.js +1 -1
- package/package.json +19 -22
package/.pre-commit-hooks.yaml
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
# Version-pinned so a checkout at `rev: vX.Y.Z` runs exactly that release
|
|
5
5
|
# of ctxlint — matches the pinning done by `ctxlint init`. release.sh keeps
|
|
6
6
|
# this in sync with package.json on each bump.
|
|
7
|
-
entry: npx @yawlabs/ctxlint@0.25.
|
|
7
|
+
entry: npx @yawlabs/ctxlint@0.25.1 --strict
|
|
8
8
|
language: node
|
|
9
9
|
always_run: true
|
|
10
10
|
pass_filenames: false
|
package/dist/index.js
CHANGED
|
@@ -29300,7 +29300,7 @@ import { readFileSync as readFileSync8 } from "node:fs";
|
|
|
29300
29300
|
import { resolve as resolve15, dirname as dirname7 } from "node:path";
|
|
29301
29301
|
import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
29302
29302
|
function loadVersion() {
|
|
29303
|
-
if (true) return "0.25.
|
|
29303
|
+
if (true) return "0.25.1";
|
|
29304
29304
|
try {
|
|
29305
29305
|
const __dir = dirname7(fileURLToPath2(import.meta.url));
|
|
29306
29306
|
const pkgPath = resolve15(__dir, "../package.json");
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/ctxlint",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.1",
|
|
4
4
|
"mcpName": "io.github.YawLabs/ctxlint",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Linter for AI agent context files and MCP configs: CLAUDE.md, AGENTS.md, .cursorrules, .mcp.json - catches broken paths, wrong commands, leaked secrets",
|
|
6
6
|
"bin": {
|
|
7
7
|
"ctxlint": "bin/ctxlint.mjs"
|
|
8
8
|
},
|
|
@@ -27,36 +27,33 @@
|
|
|
27
27
|
"mcp": "node dist/index.js --mcp-server"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
|
-
"claude",
|
|
31
|
-
"agents",
|
|
32
|
-
"context",
|
|
33
|
-
"lint",
|
|
34
|
-
"linter",
|
|
35
30
|
"claude-md",
|
|
36
31
|
"agents-md",
|
|
32
|
+
"cursorrules",
|
|
33
|
+
"windsurfrules",
|
|
34
|
+
"copilot-instructions",
|
|
35
|
+
"context-lint",
|
|
36
|
+
"linter",
|
|
37
|
+
"lint",
|
|
38
|
+
"ai-agents",
|
|
37
39
|
"ai-coding",
|
|
38
40
|
"context-engineering",
|
|
39
41
|
"mcp",
|
|
40
|
-
"cursorrules",
|
|
41
|
-
"copilot-instructions",
|
|
42
|
-
"windsurfrules",
|
|
43
|
-
"pre-commit",
|
|
44
|
-
"agentic",
|
|
45
|
-
"codex",
|
|
46
|
-
"sarif",
|
|
47
42
|
"mcp-server",
|
|
48
43
|
"model-context-protocol",
|
|
49
|
-
"
|
|
44
|
+
"claude-code",
|
|
45
|
+
"cursor",
|
|
46
|
+
"windsurf",
|
|
47
|
+
"github-copilot",
|
|
50
48
|
"gemini",
|
|
51
49
|
"cline",
|
|
52
|
-
"windsurf",
|
|
53
|
-
"session",
|
|
54
|
-
"cross-project",
|
|
55
|
-
"agent-session",
|
|
56
50
|
"aider",
|
|
57
|
-
"vibe-cli",
|
|
58
51
|
"amazon-q",
|
|
59
|
-
"goose"
|
|
52
|
+
"goose",
|
|
53
|
+
"codex",
|
|
54
|
+
"sarif",
|
|
55
|
+
"pre-commit",
|
|
56
|
+
"agent-session"
|
|
60
57
|
],
|
|
61
58
|
"files": [
|
|
62
59
|
"dist/index.js",
|
|
@@ -83,7 +80,7 @@
|
|
|
83
80
|
"bugs": {
|
|
84
81
|
"url": "https://github.com/YawLabs/ctxlint/issues"
|
|
85
82
|
},
|
|
86
|
-
"homepage": "https://
|
|
83
|
+
"homepage": "https://yaw.sh/mcp-servers/ctxlint/",
|
|
87
84
|
"author": "Yaw Labs <contact@yaw.sh>",
|
|
88
85
|
"engines": {
|
|
89
86
|
"node": ">=20"
|