tessl install tessl/npm-ulid@3.0.0A universally-unique, lexicographically-sortable, identifier generator
Agent Success
Agent success rate when using this tile
78%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.34x
Baseline
Agent success rate without this tile
58%
{
"context": "This criteria evaluates how well the engineer uses the ulid package's crockfordDecode function to decode Base32-encoded strings into binary data. The focus is on correct usage of the package's decoding API rather than reimplementing Base32 decoding logic.",
"type": "weighted_checklist",
"checklist": [
{
"name": "crockfordDecode import",
"description": "The solution imports the crockfordDecode function from the ulid package",
"max_score": 20
},
{
"name": "crockfordDecode usage",
"description": "The decodeBase32 function uses crockfordDecode to decode the Base32 string instead of implementing custom decoding logic",
"max_score": 40
},
{
"name": "Correct return type",
"description": "The decodeBase32 function correctly returns the Uint8Array produced by crockfordDecode without unnecessary conversion",
"max_score": 20
},
{
"name": "No reimplementation",
"description": "The solution does not reimplement Base32 decoding logic (e.g., manual alphabet mapping, bit shifting) that is already provided by crockfordDecode",
"max_score": 20
}
]
}