tessl install tessl/npm-cronstrue@3.2.0Convert cron expressions into human readable descriptions
Agent Success
Agent success rate when using this tile
100%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.12x
Baseline
Agent success rate without this tile
89%
Build a utility function that converts cron expressions into human-readable descriptions, with special support for time specification nicknames.
Your function should:
@generates
/**
* Converts a cron expression to a human-readable description
* @param {string} expression - The cron expression to convert
* @returns {string} Human-readable description of the schedule
*/
function describeCron(expression) {
// IMPLEMENTATION HERE
}
module.exports = { describeCron };The tool should recognize and convert standard cron time specification aliases:
Provides cron expression to human-readable text conversion.
@satisfied-by