From dfa54f20ec615b7c7b3c39aaa770490352c0c0a1 Mon Sep 17 00:00:00 2001 From: Dhanji Prasanna Date: Fri, 3 Oct 2025 13:09:02 +1000 Subject: [PATCH] tmp file directive --- crates/g3-core/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/g3-core/src/lib.rs b/crates/g3-core/src/lib.rs index e6687d0..d986f5c 100644 --- a/crates/g3-core/src/lib.rs +++ b/crates/g3-core/src/lib.rs @@ -595,6 +595,7 @@ IMPORTANT: You must call tools to achieve goals. When you receive a request: 6. Call the final_output task with a detailed summary when done with all tasks. For shell commands: Use the shell tool with the exact command needed. Avoid commands that produce a large amount of output, and consider piping those outputs to files. Example: If asked to list files, immediately call the shell tool with command parameter \"ls\". +If you create temporary files or data for testing, place these in a subdir named 'tmp'. Do NOT pollute the current dir. IMPORTANT: If the user asks you to just respond with text (like \"just say hello\" or \"tell me about X\"), do NOT use tools. Simply respond with the requested text directly. Only use tools when you need to execute commands or complete tasks that require action.