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 correctly sets up a Node.js 22+ TypeScript project using native type stripping, avoiding build tools like ts-node or tsx, and following the required tsconfig and package.json configuration. The agent is evaluated on configuration decisions, not the completeness of application logic.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Type stripping usage",
"description": "Source TypeScript files are run directly with `node` (not via ts-node, tsx, tsc+run, or similar build tools). The run command or script uses `node` directly on `.ts` files.",
"max_score": 12
},
{
"name": "import type for type imports",
"description": "Type-only imports use the `import type` keyword (e.g., `import type { Foo } from './foo.ts'`). No type imports are written as plain `import { SomeType }` without the `type` keyword.",
"max_score": 10
},
{
"name": "No enums",
"description": "No TypeScript `enum` declarations are present in any source file. Enumerations are expressed using `const` objects with `as const`.",
"max_score": 10
},
{
"name": "No namespaces",
"description": "No TypeScript `namespace` declarations are present in any source file.",
"max_score": 8
},
{
"name": "No constructor parameter properties",
"description": "No TypeScript class constructors use shorthand parameter properties (e.g., `constructor(public name: string)`). Properties are declared explicitly in the class body.",
"max_score": 8
},
{
"name": ".ts import extensions",
"description": "All relative imports within the project use `.ts` file extensions (e.g., `import { x } from './helper.ts'`), not `.js` or no extension.",
"max_score": 10
},
{
"name": "tsconfig noEmit",
"description": "The tsconfig.json (or tsconfig development config) sets `\"noEmit\": true`.",
"max_score": 8
},
{
"name": "tsconfig verbatimModuleSyntax",
"description": "The tsconfig.json sets `\"verbatimModuleSyntax\": true`.",
"max_score": 8
},
{
"name": "tsconfig isolatedModules",
"description": "The tsconfig.json sets `\"isolatedModules\": true`.",
"max_score": 8
},
{
"name": "package.json type module",
"description": "The `package.json` includes `\"type\": \"module\"` to declare the project as ESM.",
"max_score": 9
},
{
"name": "Node engines field",
"description": "The `package.json` includes an `engines` field specifying a Node.js version compatible with type stripping (e.g., `>=22.6.0` or `>=22.19.0`).",
"max_score": 9
}
]
}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