Auto-generated tile from GitHub (10 skills)
92
94%
Does it follow best practices?
Impact
92%
1.16xAverage score across 44 eval scenarios
Advisory
Suggest reviewing before use
{
"context": "Tests whether the agent avoids thread pool bottlenecks by using dns.resolve*() instead of dns.lookup(), configures UV_THREADPOOL_SIZE correctly before Node.js startup, implements DNS result caching, and adds thread pool saturation monitoring.",
"type": "weighted_checklist",
"checklist": [
{
"name": "dns.resolve* used",
"description": "The service code uses 'dns.resolve4()', 'dns.resolve6()', 'dns.promises.resolve4()', or another 'dns.resolve*()' variant — NOT 'dns.lookup()' or 'dns.promises.lookup()' — for hostname resolution",
"max_score": 20
},
{
"name": "No dns.lookup",
"description": "The service code does NOT call 'dns.lookup()' or 'dns.promises.lookup()' anywhere in the resolution path",
"max_score": 10
},
{
"name": "UV_THREADPOOL_SIZE via env",
"description": "UV_THREADPOOL_SIZE is configured via an environment variable set BEFORE Node.js starts — either in a package.json 'scripts' entry (e.g., 'UV_THREADPOOL_SIZE=16 node service.js'), a shell startup script, or a README/startup-instructions.txt — NOT by assigning 'process.env.UV_THREADPOOL_SIZE' inside the running script",
"max_score": 20
},
{
"name": "No process.env assignment",
"description": "The service code does NOT contain 'process.env.UV_THREADPOOL_SIZE =' (assigning UV_THREADPOOL_SIZE inside the running process)",
"max_score": 10
},
{
"name": "DNS result caching",
"description": "Resolved addresses are stored in a cache (Map, object, or library) and reused for subsequent lookups to the same hostname, avoiding repeated thread pool or c-ares calls",
"max_score": 15
},
{
"name": "Cache expiry",
"description": "Cached DNS entries are expired or refreshed after a time interval (e.g., via setTimeout, TTL tracking, or similar mechanism)",
"max_score": 10
},
{
"name": "Thread pool monitoring",
"description": "The code includes monitoring for thread pool saturation — either a DNS-lookup-based latency canary ('dns.lookup' timing), async hooks tracking thread-pool async types, or 'monitorEventLoopDelay' from perf_hooks with a warning threshold",
"max_score": 15
}
]
}evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
scenario-11
scenario-12
scenario-13
scenario-14
scenario-15
scenario-16
scenario-17
scenario-18
scenario-19
scenario-20
scenario-21
scenario-22
scenario-23
scenario-24
scenario-25
scenario-26
scenario-27
scenario-28
scenario-29
scenario-30
scenario-31
scenario-32
scenario-33
scenario-34
scenario-35
scenario-36
scenario-37
scenario-38
scenario-39
scenario-40
scenario-41
scenario-42
scenario-43
scenario-44
skills
documentation
fastify
init
linting-neostandard-eslint9
node
nodejs-core
rules
oauth
octocat
snipgrapher