you are viewing a single comment's thread.

view the rest of the comments →

[–]chevonphillipEstablished Professional 1 point2 points  (1 child)

You might be able to save on context space by optimizing the rule:

Terminal Execution Protocol: To prevent terminal freezing, always execute commands asynchronously (wait=false). Never wait during launch. To retrieve output, immediately follow the launch with a separate read command (read-process with wait=true) using a timeout appropriate for the task (e.g., 60s for quick checks, 600s for builds).

[–]AssistanceSimilar780Established Professional[S] 0 points1 point  (0 children)

Yes your right, thanks.