Python port of John Gruber's titlecase.pl for intelligent title case conversion with style guide compliance
79
Pending
Does it follow best practices?
Impact
79%
0.91xAverage score across 10 eval scenarios
Pending
The risk profile of this skill
{
"context": "This criteria evaluates how well the engineer uses the titlecase package to properly format French and Italian contractions (d', l', o'). The focus is on correctly utilizing the titlecase function which has built-in support for this specific formatting pattern.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Imports titlecase function",
"description": "The solution imports the titlecase function from the titlecase package (e.g., 'from titlecase import titlecase' or 'import titlecase').",
"max_score": 20
},
{
"name": "Uses titlecase function",
"description": "The solution calls the titlecase() function to perform the text formatting rather than implementing custom capitalization logic.",
"max_score": 40
},
{
"name": "Passes input correctly",
"description": "The solution passes the input text as the first argument to titlecase() function, allowing it to process the contractions automatically.",
"max_score": 20
},
{
"name": "Returns titlecase output",
"description": "The solution returns the result from the titlecase() function directly or uses it as the formatted output without manual post-processing of the contractions.",
"max_score": 20
}
]
}docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10