File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " kilo-code " : patch
3+ ---
4+
5+ Fix an issue where workflows are not working except as the initial prompt of a task
Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ export async function parseKiloSlashCommands(
3838 // this currently allows matching prepended whitespace prior to /slash-command
3939 const tagPatterns = [
4040 { tag : "task" , regex : / < t a s k > ( \s * \/ ( [ a - z A - Z 0 - 9 _ . - ] + ) ) ( \s + .+ ?) ? \s * < \/ t a s k > / is } ,
41- { tag : "feedback" , regex : / < f e e d b a c k > ( \s * \/ ( [ a - z A - Z 0 - 9 _ - ] + ) ) ( \s + .+ ?) ? \s * < \/ f e e d b a c k > / is } ,
42- { tag : "answer" , regex : / < a n s w e r > ( \s * \/ ( [ a - z A - Z 0 - 9 _ - ] + ) ) ( \s + .+ ?) ? \s * < \/ a n s w e r > / is } ,
43- { tag : "user_message" , regex : / < u s e r _ m e s s a g e > ( \s * \/ ( [ a - z A - Z 0 - 9 _ - ] + ) ) ( \s + .+ ?) ? \s * < \/ u s e r _ m e s s a g e > / is } ,
41+ { tag : "feedback" , regex : / < f e e d b a c k > ( \s * \/ ( [ a - z A - Z 0 - 9 _ . - ] + ) ) ( \s + .+ ?) ? \s * < \/ f e e d b a c k > / is } ,
42+ { tag : "answer" , regex : / < a n s w e r > ( \s * \/ ( [ a - z A - Z 0 - 9 _ . - ] + ) ) ( \s + .+ ?) ? \s * < \/ a n s w e r > / is } ,
43+ { tag : "user_message" , regex : / < u s e r _ m e s s a g e > ( \s * \/ ( [ a - z A - Z 0 - 9 _ . - ] + ) ) ( \s + .+ ?) ? \s * < \/ u s e r _ m e s s a g e > / is } ,
4444 ]
4545
4646 // if we find a valid match, we will return inside that block
You can’t perform that action at this time.
0 commit comments