@paniolo/scan 0.2.1 → 0.2.3
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 +1 -1
- package/dist/cli.js +92 -90
- package/dist/standards/weights.json +40 -9
- package/package.json +56 -92
|
@@ -1,13 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dimensions": {
|
|
3
|
-
"layering": {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
"layering": {
|
|
4
|
+
"weight": 1,
|
|
5
|
+
"max_score": 100
|
|
6
|
+
},
|
|
7
|
+
"sharing": {
|
|
8
|
+
"weight": 1,
|
|
9
|
+
"max_score": 100
|
|
10
|
+
},
|
|
11
|
+
"discoverability": {
|
|
12
|
+
"weight": 1,
|
|
13
|
+
"max_score": 100
|
|
14
|
+
},
|
|
15
|
+
"harnessWiring": {
|
|
16
|
+
"weight": 1,
|
|
17
|
+
"max_score": 100
|
|
18
|
+
},
|
|
19
|
+
"maintainability": {
|
|
20
|
+
"weight": 1,
|
|
21
|
+
"max_score": 100
|
|
22
|
+
},
|
|
23
|
+
"guardrails": {
|
|
24
|
+
"weight": 1,
|
|
25
|
+
"max_score": 100
|
|
26
|
+
},
|
|
27
|
+
"session": {
|
|
28
|
+
"weight": 1,
|
|
29
|
+
"max_score": 100
|
|
30
|
+
},
|
|
31
|
+
"deep": {
|
|
32
|
+
"weight": 1,
|
|
33
|
+
"max_score": 100
|
|
34
|
+
}
|
|
11
35
|
},
|
|
12
|
-
"check_weights": {
|
|
36
|
+
"check_weights": {
|
|
37
|
+
"shared-rules-doc": 0.5,
|
|
38
|
+
"jsdoc-enforcement-present": 0.5,
|
|
39
|
+
"correction-loop-documented": 0.5,
|
|
40
|
+
"guidance-maintenance-script": 0.5,
|
|
41
|
+
"pr-template-ai-harness-check": 0.5,
|
|
42
|
+
"ci-guidance-lint": 0.5
|
|
43
|
+
}
|
|
13
44
|
}
|
package/package.json
CHANGED
|
@@ -1,93 +1,57 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"check:md:style": "markdownlint-cli2",
|
|
59
|
-
"check:md:text": "textlint --rulesdir textlint-rules --config .textlintrc.json \"docs/**/*.md\" \".claude/**/*.md\" && textlint --config .textlintrc.skills.json \"skills/*/SKILL.md\" \"agents/**/*.md\" && textlint --config .textlintrc.instructions.json \"AGENTS.md\" \"CLAUDE.md\" \"GEMINI.md\" \".github/copilot-instructions.md\"",
|
|
60
|
-
"check:links": "remark --quiet --frail \"docs/**/*.md\" \"skills/**/*.md\" \"agents/**/*.md\" \".github/*.md\" \".claude/**/*.md\" \"*.md\"",
|
|
61
|
-
"check:spelling": "cspell --no-progress --no-summary \"**/*.md\"",
|
|
62
|
-
"lint:md": "npm run check:md && npm run check:links && npm run check:spelling",
|
|
63
|
-
"start": "node dist/cli.js",
|
|
64
|
-
"test": "vitest run",
|
|
65
|
-
"test:file": "vitest run",
|
|
66
|
-
"typecheck": "tsc --noEmit"
|
|
67
|
-
},
|
|
68
|
-
"devDependencies": {
|
|
69
|
-
"@tobilu/qmd": "^2.5.3",
|
|
70
|
-
"@types/bun": "^1.3.14",
|
|
71
|
-
"@types/node": "^22.19.20",
|
|
72
|
-
"@typescript-eslint/parser": "^8.61.0",
|
|
73
|
-
"@typescript-eslint/utils": "^8.61.0",
|
|
74
|
-
"cspell": "^9.2.1",
|
|
75
|
-
"esbuild": "^0.27.7",
|
|
76
|
-
"eslint": "^10.4.1",
|
|
77
|
-
"jiti": "^2.7.0",
|
|
78
|
-
"markdownlint-cli2": "^0.22.1",
|
|
79
|
-
"oxfmt": "^0.36.0",
|
|
80
|
-
"oxlint": "^1.68.0",
|
|
81
|
-
"oxlint-tsgolint": "^0.23.0",
|
|
82
|
-
"remark-cli": "^12.0.1",
|
|
83
|
-
"remark-validate-links": "^13.1.0",
|
|
84
|
-
"textlint": "^15.7.0",
|
|
85
|
-
"textlint-rule-max-number-of-lines": "^1.0.3",
|
|
86
|
-
"typescript": "^5.8.3",
|
|
87
|
-
"unist-util-visit": "^5.0.0",
|
|
88
|
-
"vitest": "^3.2.4"
|
|
89
|
-
},
|
|
90
|
-
"engines": {
|
|
91
|
-
"node": ">=20"
|
|
92
|
-
}
|
|
93
|
-
}
|
|
2
|
+
"name": "@paniolo/scan",
|
|
3
|
+
"version": "0.2.3",
|
|
4
|
+
"description": "The AI Technical Debt Scanner — diagnostic-only CLI that scores your repo's AI harness across Copilot, Cursor, Codex, Antigravity, Claude Code, and Gemini. No writes, no telemetry.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agents",
|
|
7
|
+
"agents-md",
|
|
8
|
+
"ai",
|
|
9
|
+
"antigravity",
|
|
10
|
+
"claude-code",
|
|
11
|
+
"cli",
|
|
12
|
+
"codex",
|
|
13
|
+
"coding-agents",
|
|
14
|
+
"copilot",
|
|
15
|
+
"cursor",
|
|
16
|
+
"diagnostic",
|
|
17
|
+
"gemini",
|
|
18
|
+
"harness",
|
|
19
|
+
"harness-engineering",
|
|
20
|
+
"lint",
|
|
21
|
+
"static-analysis",
|
|
22
|
+
"technical-debt"
|
|
23
|
+
],
|
|
24
|
+
"homepage": "https://paniolo.ai",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/paniolo-ai/paniolo/issues"
|
|
27
|
+
},
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/paniolo-ai/paniolo.git",
|
|
32
|
+
"directory": "packages/scan"
|
|
33
|
+
},
|
|
34
|
+
"bin": {
|
|
35
|
+
"paniolo-scan": "dist/cli.js"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist/**/*.js",
|
|
39
|
+
"dist/**/*.json",
|
|
40
|
+
"README.md"
|
|
41
|
+
],
|
|
42
|
+
"type": "module",
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": "^22.19.20",
|
|
45
|
+
"typescript": "^5.8.3",
|
|
46
|
+
"@paniolo/session-source": "0.2.0"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=20"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "pnpm run typecheck && node scripts/build.mjs",
|
|
53
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
54
|
+
"pack:dry-run": "npm pack --dry-run",
|
|
55
|
+
"start": "node dist/cli.js"
|
|
56
|
+
}
|
|
57
|
+
}
|