From 3a50a5ab0ea2f8c62818474809fdf19037e50041 Mon Sep 17 00:00:00 2001 From: Ahmed Allam Date: Thu, 16 Jul 2026 16:10:28 +0000 Subject: [PATCH] docs(python skill): recommend a task-unique PoC filename to avoid inter-agent collisions --- strix/skills/tooling/python.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/strix/skills/tooling/python.md b/strix/skills/tooling/python.md index 6bef2e34..d80aa69f 100644 --- a/strix/skills/tooling/python.md +++ b/strix/skills/tooling/python.md @@ -84,9 +84,9 @@ automatically, so it shows up in `list_requests` and you can use For iterative exploit work, put code in a file: ```text -1. Create or edit a distinctively-named script (e.g. `strix_poc.py`, to avoid - clobbering project files) with `apply_patch`. -2. Run it with `exec_command`: `python3 strix_poc.py`. +1. Create or edit a task-unique script (e.g. `poc_.py`, so it can't + clobber a project file or another agent's script) with `apply_patch`. +2. Run it with `exec_command`: `python3 poc_.py`. 3. Edit and rerun until the proof-of-concept is reliable. ```