-
Notifications
You must be signed in to change notification settings - Fork 1
/
questions.json
121 lines (120 loc) · 3.88 KB
/
questions.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"loggingLevel": {
"type": "list",
"name": "loggingLevel",
"message": "How Much logging would you like to do?",
"choices": [
"fullDetail",
"onlyTheStats",
"quickTest"
]
},
"fullDetail": [
{
"type": "number",
"name": "minExcersice",
"message": "For how many minutes did you excersice today?"
},
{
"type": "number",
"name": "whenSleep",
"message": "When did you go to bed? (input 9.50 for 9:30, etc. count from 12-noon, that is, 2AM=14)"
},
{
"type": "number",
"name": "hrsSleep",
"message": "How many hours of sleep did you get? (input 9.50 for 9:30, etc.)"
},
{
"type": "confirm",
"name": "didStretch",
"message": "Have you stretched today?"
},
{
"type": "confirm",
"name": "didMeditate",
"message": "Have you meditated today? (this is pretty important)"
},
{
"type": "list",
"name": "deepWorkLevel",
"message": "How did you feel about your deep work (value focus, curiousity, and partial progress)",
"choices": [
"terrible",
"barely ok",
"good",
"hey! Not bad at all!",
"omg! Fabulous!"
]
},
{
"type": "input",
"name": "oneGreatThing",
"message": "What's one awesome thing you APPRECIATE happening today? (from trivial to grand!)"
},
{
"type": "input",
"name": "oneLearned",
"message": "What's one cool thing you learned today? (not necesserily academic!)"
},
{
"type": "editor",
"name": "fullReflection",
"message": "Pause, take your hands of the keyboard, and reflect on your condition (how are you feeling? What's occupying you?). Write whatever comes to mind or nothing at all."
},
{
"type": "number",
"name": "dayRating",
"message": "After a full reflection, what would you rate today? (1-10; no need to mean=5 ;)."
}
],
"onlyTheStats": [
{
"type": "number",
"name": "minExcersice",
"message": "For how many minutes did you excersice today?"
},
{
"type": "number",
"name": "whenSleep",
"message": "When did you go to bed? (input 9.50 for 9:30, etc. count from 12-noon, that is, 2AM=14)"
},
{
"type": "number",
"name": "hrsSleep",
"message": "How many hours of sleep did you get? (input 9.50 for 9:30, etc.)"
},
{
"type": "confirm",
"name": "didStretch",
"message": "Have you stretched today?"
},
{
"type": "confirm",
"name": "didMeditate",
"message": "Have you meditated today? (this is pretty important)"
},
{
"type": "list",
"name": "deepWorkLevel",
"message": "How did you feel about your deep work (value focus, curiousity, and partial progress)",
"choices": [
"terrible",
"barely ok",
"good",
"hey! Not bad at all!",
"omg! Fabulous!"
]
},
{
"type": "number",
"name": "dayRating",
"message": "After a full reflection, what would you rate today? (1-10; no need to mean=5 ;)."
}
],
"quickTest": [{
"type": "number",
"name": "dayRating",
"message": "After a full reflection, what would you rate today? (1-10; no need to mean=5 ;)."
}]
}