From a529d7f73a7c719289fd66c455f7bf17376e3823 Mon Sep 17 00:00:00 2001 From: Ahmed Allam Date: Thu, 16 Jul 2026 16:04:25 +0000 Subject: [PATCH] docs(python skill): use a distinctive PoC filename to avoid clobbering project files --- strix/skills/tooling/python.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/strix/skills/tooling/python.md b/strix/skills/tooling/python.md index bc53b043..6bef2e34 100644 --- a/strix/skills/tooling/python.md +++ b/strix/skills/tooling/python.md @@ -84,8 +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 `exploit.py` with `apply_patch`. -2. Run it with `exec_command`: `python3 exploit.py`. +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`. 3. Edit and rerun until the proof-of-concept is reliable. ```