@yawlabs/ctxlint 0.2.2 → 0.3.0
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 +54 -17
- package/dist/index.js +706 -70
- package/dist/mcp/server.js +566 -47
- package/package.json +25 -11
package/package.json
CHANGED
|
@@ -1,21 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/ctxlint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Lint your AI agent context files (CLAUDE.md, AGENTS.md, etc.) against your actual codebase",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ctxlint": "dist/index.js"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"dev": "tsup --watch",
|
|
12
|
+
"test": "vitest",
|
|
13
|
+
"test:run": "vitest run",
|
|
14
|
+
"lint": "eslint src/",
|
|
15
|
+
"format": "prettier --write src/",
|
|
16
|
+
"mcp": "node dist/mcp/server.js"
|
|
17
|
+
},
|
|
9
18
|
"keywords": [
|
|
10
19
|
"claude",
|
|
11
20
|
"agents",
|
|
12
21
|
"context",
|
|
13
22
|
"lint",
|
|
23
|
+
"linter",
|
|
14
24
|
"claude-md",
|
|
15
25
|
"agents-md",
|
|
16
26
|
"ai-coding",
|
|
17
27
|
"context-engineering",
|
|
18
|
-
"mcp"
|
|
28
|
+
"mcp",
|
|
29
|
+
"cursorrules",
|
|
30
|
+
"copilot-instructions",
|
|
31
|
+
"windsurfrules",
|
|
32
|
+
"pre-commit",
|
|
33
|
+
"agentic",
|
|
34
|
+
"codex",
|
|
35
|
+
"sarif"
|
|
19
36
|
],
|
|
20
37
|
"files": [
|
|
21
38
|
"dist",
|
|
@@ -32,6 +49,7 @@
|
|
|
32
49
|
"engines": {
|
|
33
50
|
"node": ">=20"
|
|
34
51
|
},
|
|
52
|
+
"packageManager": "pnpm@10.33.0",
|
|
35
53
|
"dependencies": {
|
|
36
54
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
37
55
|
"chalk": "^5.6.2",
|
|
@@ -54,13 +72,9 @@
|
|
|
54
72
|
"typescript-eslint": "^8.58.0",
|
|
55
73
|
"vitest": "^4.1.2"
|
|
56
74
|
},
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"test:run": "vitest run",
|
|
62
|
-
"lint": "eslint src/",
|
|
63
|
-
"format": "prettier --write src/",
|
|
64
|
-
"mcp": "node dist/mcp/server.js"
|
|
75
|
+
"pnpm": {
|
|
76
|
+
"onlyBuiltDependencies": [
|
|
77
|
+
"esbuild"
|
|
78
|
+
]
|
|
65
79
|
}
|
|
66
|
-
}
|
|
80
|
+
}
|