docs(python skill): recommend a task-unique PoC filename to avoid inter-agent collisions

This commit is contained in:
Ahmed Allam
2026-07-16 09:15:40 -07:00
committed by Ahmed Allam
parent a529d7f73a
commit 3a50a5ab0e
+3 -3
View File
@@ -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: For iterative exploit work, put code in a file:
```text ```text
1. Create or edit a distinctively-named script (e.g. `strix_poc.py`, to avoid 1. Create or edit a task-unique script (e.g. `poc_<task-id>.py`, so it can't
clobbering project files) with `apply_patch`. clobber a project file or another agent's script) with `apply_patch`.
2. Run it with `exec_command`: `python3 strix_poc.py`. 2. Run it with `exec_command`: `python3 poc_<task-id>.py`.
3. Edit and rerun until the proof-of-concept is reliable. 3. Edit and rerun until the proof-of-concept is reliable.
``` ```