BREAKING: Major version release with new quiz feature New Features: - Interactive CLI quiz with 159 curated questions - 4 user profiles: Junior, Senior, Power User, Product Manager - 10 topic categories covering all guide sections - Immediate feedback with explanations and doc references - Session persistence to ~/.claude-quiz/ - Score tracking with category breakdown - Optional dynamic question generation via claude -p - Cross-platform support (Node.js): macOS, Linux, Windows Quiz highlights: - Profile-based question filtering and difficulty weighting - Retry wrong questions only or new quiz options - Visual progress bar and score visualization - Direct documentation links for wrong answers Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
595 B
JSON
31 lines
595 B
JSON
{
|
|
"name": "claude-code-quiz",
|
|
"version": "1.0.0",
|
|
"description": "CLI quiz to test your Claude Code knowledge",
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"claude-quiz": "./src/index.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"quiz": "node src/index.js"
|
|
},
|
|
"keywords": [
|
|
"claude",
|
|
"claude-code",
|
|
"quiz",
|
|
"cli",
|
|
"learning"
|
|
],
|
|
"author": "Florian BRUNIAUX",
|
|
"license": "CC-BY-SA-4.0",
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"inquirer": "^9.2.12",
|
|
"yaml": "^2.8.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|