You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+54-3Lines changed: 54 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "vscode-kubito",
3
3
"displayName": "Kubito - Your Coding Companion",
4
-
"description": "An interactive and animated multilingual companion for your VS Code editor. Kubito walks around, responds to clicks, and shows contextual programming messages that adapt to time and day in 6 languages.",
4
+
"description": "An interactive and animated multilingual companion for your VS Code editor. Kubito walks around, responds to clicks, and shows contextual programming messages that adapt to time and day in 14 languages including productivity reminders.",
5
5
"version": "2.4.0",
6
6
"publisher": "Kubit",
7
7
"author": {
@@ -65,6 +65,10 @@
65
65
{
66
66
"command": "kubito.openEventSettings",
67
67
"title": "Kubito: Configure Event Reactions"
68
+
},
69
+
{
70
+
"command": "kubito.showMetrics",
71
+
"title": "Kubito: Show Productivity Metrics"
68
72
}
69
73
],
70
74
"configuration": {
@@ -84,7 +88,15 @@
84
88
"fr",
85
89
"de",
86
90
"pt",
87
-
"it"
91
+
"it",
92
+
"ja",
93
+
"ko",
94
+
"zh-cn",
95
+
"ru",
96
+
"nl",
97
+
"pl",
98
+
"tr",
99
+
"ar"
88
100
],
89
101
"enumDescriptions": [
90
102
"Detect from VS Code language",
@@ -93,7 +105,15 @@
93
105
"Français",
94
106
"Deutsch",
95
107
"Português",
96
-
"Italiano"
108
+
"Italiano",
109
+
"日本語",
110
+
"한국어",
111
+
"中文(简体)",
112
+
"Русский",
113
+
"Nederlands",
114
+
"Polski",
115
+
"Türkçe",
116
+
"العربية"
97
117
],
98
118
"default": "auto",
99
119
"description": "Language for Kubito messages"
@@ -117,6 +137,37 @@
117
137
"type": "boolean",
118
138
"default": true,
119
139
"description": "Show reactions when pushing to Git remotes"
140
+
},
141
+
"kubito.productivity.reminders": {
142
+
"type": "boolean",
143
+
"default": true,
144
+
"description": "Enable smart reminders for breaks, water, and active pauses"
145
+
},
146
+
"kubito.productivity.breakInterval": {
147
+
"type": "number",
148
+
"default": 30,
149
+
"minimum": 15,
150
+
"maximum": 120,
151
+
"description": "Minutes between break reminders (15-120)"
152
+
},
153
+
"kubito.productivity.waterInterval": {
154
+
"type": "number",
155
+
"default": 45,
156
+
"minimum": 20,
157
+
"maximum": 180,
158
+
"description": "Minutes between water reminders (20-180)"
159
+
},
160
+
"kubito.productivity.showMetrics": {
161
+
"type": "boolean",
162
+
"default": true,
163
+
"description": "Show coding metrics like lines written and session time"
164
+
},
165
+
"kubito.productivity.metricsInterval": {
166
+
"type": "number",
167
+
"default": 60,
168
+
"minimum": 30,
169
+
"maximum": 300,
170
+
"description": "Minutes between metrics updates (30-300)"
0 commit comments