|
10 | 10 | PipelineStep,
|
11 | 11 | )
|
12 | 12 | from codegate.pipeline.cli.commands import CustomInstructions, Version, Workspace
|
| 13 | +from codegate.utils.utils import get_tool_name_from_messages |
13 | 14 |
|
14 | 15 | HELP_TEXT = """
|
15 | 16 | ## CodeGate CLI\n
|
@@ -78,35 +79,36 @@ async def process(
|
78 | 79 | if last_user_message is not None:
|
79 | 80 | last_user_message_str, _ = last_user_message
|
80 | 81 | last_user_message_str = last_user_message_str.strip()
|
81 |
| - is_cline_client = any( |
82 |
| - "Cline" in str(message.get("content", "")) |
83 |
| - for message in request.get("messages", []) |
84 |
| - ) |
85 |
| - if not is_cline_client: |
86 |
| - # Check if "codegate" is the first word in the message |
87 |
| - match = re.match(r"^codegate(?:\s+(\S+))?", last_user_message_str, re.IGNORECASE) |
88 |
| - else: |
89 |
| - # Check if "codegate" is the first word after the first XML tag |
90 |
| - xml_start = re.search(r"<[^>]+>", last_user_message_str) |
91 |
| - if xml_start: |
92 |
| - # Start processing only from the first XML tag |
93 |
| - relevant_message = last_user_message_str[xml_start.start() :] |
94 |
| - # Remove all XML tags and trim whitespace |
95 |
| - stripped_message = re.sub(r"<[^>]+>", "", relevant_message).strip() |
96 |
| - # Check if "codegate" is the first word |
97 |
| - match = re.match(r"^codegate(?:\s+(\S+))?", stripped_message, re.IGNORECASE) |
| 82 | + base_tool = get_tool_name_from_messages(request) |
| 83 | + codegate_regex = re.compile(r"^codegate(?:\s+(.*))?", re.IGNORECASE) |
| 84 | + |
| 85 | + if base_tool and base_tool == "cline": |
| 86 | + # Check if there are <task> or <feedback> tags |
| 87 | + tag_match = re.search(r"<(task|feedback)>(.*?)</\1>", last_user_message_str, re.DOTALL) |
| 88 | + if tag_match: |
| 89 | + # Extract the content between the tags |
| 90 | + stripped_message = tag_match.group(2).strip() |
98 | 91 | else:
|
99 |
| - match = None |
| 92 | + # If no <task> or <feedback> tags, use the entire message |
| 93 | + stripped_message = last_user_message_str.strip() |
| 94 | + |
| 95 | + # Remove all other XML tags and trim whitespace |
| 96 | + stripped_message = re.sub(r"<[^>]+>", "", stripped_message).strip() |
| 97 | + |
| 98 | + # Check if "codegate" is the first word |
| 99 | + match = codegate_regex.match(stripped_message) |
| 100 | + else: |
| 101 | + # Check if "codegate" is the first word in the message |
| 102 | + match = codegate_regex.match(last_user_message_str) |
100 | 103 | if match:
|
101 |
| - command = match.group(1) # Extract the second word |
| 104 | + command = match.group(1) or "" |
102 | 105 | command = command.strip()
|
103 | 106 |
|
104 | 107 | # Process the command
|
105 | 108 | args = shlex.split(f"codegate {command}")
|
106 | 109 | if args:
|
107 | 110 | cmd_out = await codegate_cli(args[1:])
|
108 |
| - |
109 |
| - if is_cline_client: |
| 111 | + if base_tool and base_tool == "cline": |
110 | 112 | cmd_out = (
|
111 | 113 | f"<attempt_completion><result>{cmd_out}</result></attempt_completion>\n"
|
112 | 114 | )
|
|
0 commit comments