@@ -43,15 +43,15 @@ export void writeAddTaskHelp() {
43
43
writeln(" mcl add_task <task-title> [<username/priority/status/milestone/estimate/tshirt-size> ..]" );
44
44
writeln(" <username> is `@<name>` (might be a shorter name if registered in mcl_config.json)" );
45
45
writeln(" <priority> is highest / high / normal / low" );
46
- writeln(" <status> is backlog / ready (for ready to start ) / progress (for in progress ) / done / blocker / paused / cancelled" );
46
+ writeln(" <status> is backlog / next (for next up ) / worked (for worked on ) / done / blocked / paused / cancelled" );
47
47
writeln(" <milestone> is project-specific, but can be auto-recognized based on shorter names in mcl_config.json" );
48
48
writeln(" <estimate> is time(days) estimate, needs explicit `--estimate=..` for now" );
49
49
writeln(" <tshirt-size> is S / M / L / XL" );
50
50
writeln(" " );
51
51
writeln(" for all you can also pass explicit flag like `--priority=<value>" );
52
52
writeln(" " );
53
53
writeln(" examples (with a hypothetical mcl_config.json):" );
54
- writeln(" mcl add_task \" test task\" @Paul low progress beta M" );
54
+ writeln(" mcl add_task \" test task\" @Paul low worked beta M" );
55
55
writeln(" mcl add_task \" test task 2\" @Paul v1 L" );
56
56
writeln(" mcl add_task \" test task 3\" @John done normal M beta" );
57
57
writeln(" mcl add_task \" test task 4\" M backlog @John" );
@@ -133,14 +133,14 @@ class TaskManager {
133
133
Arg result = { kind: " status" , value: " Backlog" };
134
134
return result;
135
135
}
136
- else if (raw == " ready " || raw == " ready to start " )
136
+ else if (raw == " next " || raw == " next up " )
137
137
{
138
- Arg result = { kind: " status" , value: " Ready to Start " };
138
+ Arg result = { kind: " status" , value: " Next Up " };
139
139
return result;
140
140
}
141
- else if (raw == " progress " || raw == " in progress " )
141
+ else if (raw == " worked " || raw == " worked on " )
142
142
{
143
- Arg result = { kind: " status" , value: " In progress " };
143
+ Arg result = { kind: " status" , value: " Worked On " };
144
144
return result;
145
145
}
146
146
else if (raw == " review" || raw == " code review" )
@@ -165,7 +165,7 @@ class TaskManager {
165
165
}
166
166
else if (raw == " blocked" )
167
167
{
168
- Arg result = { kind: " status" , value: " blocked " };
168
+ Arg result = { kind: " status" , value: " Blocked " };
169
169
return result;
170
170
}
171
171
else if (raw.startsWith(" --status=" ))
0 commit comments