Route Scanning Skill
SkillFiles & storageScan Express.js source files to discover all API route definitions.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Route Scanning Skill skill
What this skill tells your AI
The instructions your AI receives, as published by huangjia2019/claude-code-engineering in 04-Skills/projects/08-skill-pipeline/.claude/skills/route-scanning/SKILL.md and read by ahel’s review.
Discover all API route definitions in Express.js source files.
Process
Step 1: Run Route Scanner
Execute the scanning script:
python3 scripts/scan-routes.py <source_directory>
The script outputs a structured route list with method, path, file, and line number.
Step 2: Enrich Route Data
For each discovered route, also identify:
- Middleware applied (auth, validation, etc.)
- Whether it's a standard route or chained route (
router.route())
Output Format
Return a JSON-compatible route manifest:
[
{
"method": "GET",
"path": "/api/products",
"file": "src/routes/products.js",
"line": 8,
"middleware": ["requireAuth"],
"type": "standard"
}
]
This manifest will be consumed by the next pipeline stage (doc-writing).
Signals
- GitHub stars
- 1k
- Forks
- 387
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
route-scanning- Source
- github.com/huangjia2019/claude-code-engineering