@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.
@@ -1,13 +1,44 @@
1
1
  {
2
2
  "dimensions": {
3
- "layering": { "weight": 1, "max_score": 100 },
4
- "sharing": { "weight": 1, "max_score": 100 },
5
- "discoverability": { "weight": 1, "max_score": 100 },
6
- "harnessWiring": { "weight": 1, "max_score": 100 },
7
- "maintainability": { "weight": 1, "max_score": 100 },
8
- "guardrails": { "weight": 1, "max_score": 100 },
9
- "session": { "weight": 1, "max_score": 100 },
10
- "deep": { "weight": 1, "max_score": 100 }
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
- "name": "@paniolo/scan",
3
- "version": "0.2.1",
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-scan/issues"
27
- },
28
- "license": "MIT",
29
- "repository": {
30
- "type": "git",
31
- "url": "git+https://github.com/paniolo-ai/paniolo-scan.git"
32
- },
33
- "bin": {
34
- "paniolo-scan": "dist/cli.js"
35
- },
36
- "files": [
37
- "dist/**/*.js",
38
- "dist/**/*.json",
39
- "README.md"
40
- ],
41
- "type": "module",
42
- "scripts": {
43
- "build": "npm run typecheck && node scripts/build.mjs",
44
- "format": "oxfmt .",
45
- "format:check": "oxfmt --check .",
46
- "format:list-different": "oxfmt --list-different .",
47
- "lint": "npm run typecheck && oxlint --config .oxlintrc.json --type-aware src vitest.config.ts agents/scripts && npm run lint:eslint && npm run check:jsdoc",
48
- "lint:eslint": "eslint --config eslint.config.ts --cache src",
49
- "lint:fix": "oxlint --config .oxlintrc.json --type-aware --fix src vitest.config.ts agents/scripts",
50
- "lint:jsdoc": "npx --yes bun ./scripts/find-missing-jsdoc/check-jsdoc-files.bun.ts",
51
- "check:jsdoc": "npx --yes bun ./scripts/find-missing-jsdoc/find-missing-jsdoc.bun.ts",
52
- "pack:dry-run": "npm pack --dry-run",
53
- "prepack": "npm run build",
54
- "qmd": "node scripts/qmd/qmd.mjs",
55
- "scan:self": "node dist/cli.js . --fail-on warn",
56
- "check:ai-system": "npm run build && npm run scan:self",
57
- "check:md": "npm run check:md:style && npm run check:md:text",
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
+ }