askFollowUp
Ask follow-up questions about terminal command outputs without re-executing commands, extracting specific information from previous executions to optimize context usage.
Instructions
Ask follow-up questions about the previous terminal command execution without re-running the command. Only available after using runAndExtract tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
question | Yes | Follow-up question about the previous terminal command execution and its output |
Input Schema (JSON Schema)
{
"properties": {
"question": {
"description": "Follow-up question about the previous terminal command execution and its output",
"type": "string"
}
},
"required": [
"question"
],
"type": "object"
}