Modern presentation framework and CLI tool that transforms Markdown files into interactive, web-based slide presentations with built-in development server, export capabilities, and Vue.js integration
Overall
score
100%
{
"context": "This evaluation assesses how well the engineer uses Slidev's context menu customization API. The criteria focus on proper usage of the defineContextMenu setup hook, accessing Slidev navigation state composables, and implementing mode-specific menu filtering.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Setup hook usage",
"description": "Uses the setup/context-menu.ts file location and exports a defineContextMenu function that returns context menu configuration",
"max_score": 25
},
{
"name": "Menu item registration",
"description": "Properly registers custom menu items using the correct Slidev context menu API structure with label/text and action/handler properties",
"max_score": 20
},
{
"name": "Navigation composable",
"description": "Uses useNav() or $nav composable to access current slide information (currentSlideNo, total) and navigation methods (go, goTo, or similar)",
"max_score": 20
},
{
"name": "Route path access",
"description": "Accesses the current route path using Slidev's $route, useRoute(), or similar router composable to get the path for clipboard copying",
"max_score": 15
},
{
"name": "Mode filtering",
"description": "Implements mode-specific filtering using __DEV__, isDev, or similar Slidev mode detection to show menu items only in development mode",
"max_score": 20
}
]
}Install with Tessl CLI
npx tessl i tessl/npm-slidev--clidocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10