Skip to content

Commit 172eceb

Browse files
committed
feat: Add cli tool for generating TOOLS.md using static analysis
1 parent 20b3d3a commit 172eceb

6 files changed

Lines changed: 1186 additions & 488 deletions

File tree

docs/TOOLS.md

Lines changed: 123 additions & 262 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@
2020
"typecheck": "npx tsc --noEmit",
2121
"inspect": "npx @modelcontextprotocol/inspector node build/index.js",
2222
"doctor": "node build/doctor-cli.js",
23-
"tools": "node scripts/tools-cli.js",
24-
"tools:list": "node scripts/tools-cli.js list",
25-
"tools:static": "node scripts/tools-cli.js static",
26-
"tools:count": "node scripts/tools-cli.js count --static",
23+
"tools": "npx tsx scripts/tools-cli.ts",
24+
"tools:list": "npx tsx scripts/tools-cli.ts list",
25+
"tools:static": "npx tsx scripts/tools-cli.ts static",
26+
"tools:count": "npx tsx scripts/tools-cli.ts count --static",
27+
"tools:analysis": "npx tsx scripts/analysis/tools-analysis.ts",
28+
"docs:update": "npx tsx scripts/update-tools-docs.ts",
29+
"docs:update:dry-run": "npx tsx scripts/update-tools-docs.ts --dry-run --verbose",
2730
"test": "vitest run",
2831
"test:watch": "vitest",
2932
"test:ui": "vitest --ui",
@@ -77,9 +80,10 @@
7780
"prettier": "^3.5.3",
7881
"ts-node": "^10.9.2",
7982
"tsup": "^8.5.0",
83+
"tsx": "^4.20.4",
8084
"typescript": "^5.8.2",
8185
"typescript-eslint": "^8.28.0",
8286
"vitest": "^3.2.4",
8387
"xcode": "^3.0.1"
8488
}
85-
}
89+
}

0 commit comments

Comments
 (0)