forked from FlorianBruniaux/claude-code-ultimate-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion-template.yaml
More file actions
56 lines (51 loc) · 2.38 KB
/
question-template.yaml
File metadata and controls
56 lines (51 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Question Template for Claude Code Knowledge Quiz
#
# Use this template to contribute new questions to the quiz.
# Submit as a PR to: https://github.com/FlorianBruniaux/claude-code-ultimate-guide
#
# Guidelines:
# - Test practical understanding, not memorization
# - Make distractors plausible but clearly distinguishable
# - Explanations should teach, not just state the correct answer
# - Reference accurate sections from the guide
#
# Difficulty levels:
# - junior: Basic commands, installation, simple concepts
# - senior: Context management, configuration patterns, agent design
# - power: Advanced orchestration, Trinity pattern, optimization
#
# Profile visibility:
# - junior: Questions for new users (Day 1)
# - senior: Questions for experienced developers (Week 1-2)
# - power: Questions for advanced users (Month 1+)
# - pm: Conceptual questions for non-technical stakeholders
category: "Category Name" # One of: Quick Start, Core Concepts, Memory & Settings, Agents, Skills, Commands, Hooks, MCP Servers, Advanced Patterns, Reference
category_id: 1 # 1-10 matching category
questions:
- id: "xx-001" # Category prefix + unique number (qs=Quick Start, cc=Core Concepts, ms=Memory Settings, ag=Agents, sk=Skills, cm=Commands, hk=Hooks, mcp=MCP, ap=Advanced, rf=Reference)
difficulty: "junior" # junior | senior | power
profiles: ["junior", "senior", "power", "pm"] # Who sees this question
question: "What is the recommended action when context usage reaches 70%?"
options:
a: "Continue working normally"
b: "Use /compact to compress context"
c: "Use /clear to reset completely"
d: "Exit and restart Claude Code"
correct: "b" # a | b | c | d
explanation: |
At 70% context usage (orange zone), you should use /compact to summarize
the conversation and free up space while preserving key context.
/clear is a more drastic option that completely resets context, which
is typically only needed at 90%+ usage (red/critical zone).
The context zones are:
- 0-50%: Green (work freely)
- 50-70%: Yellow (be selective)
- 70-90%: Orange (/compact now)
- 90%+: Red (/clear required)
doc_reference:
file: "guide/ultimate-guide.md"
section: "2.2 Context Management"
anchor: "#22-context-management"
# Add more questions following this format...
# - id: "xx-002"
# ...