Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions optional-skills/research/darwinian-evolver/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,13 @@ ls "$DE_DIR/darwinian_evolver/lineage_visualizer.html" >/dev/null && \
cd "$DE_DIR" && uv run darwinian_evolver --help >/dev/null && \
echo "darwinian-evolver: OK"
```
## Security

⚠️ **Pickle deserialization risk.** Snapshots produced by `darwinian_evolver` are Python pickle files. Loading a pickle from an untrusted source can execute arbitrary code on your machine.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This warning is accurate. If this is salvaged onto current main, please also update the earlier show_snapshot.py example to pass --i-trust-this-file, because the script now refuses to unpickle without that acknowledgement.


- Only load snapshots you generated yourself, or that come from a source you fully trust.
- Never load snapshots shared over chat, email, or unverified Git repos without inspecting them first.
- If you need to distribute snapshots, prefer signing them (e.g. with `gpg --detach-sign`) and verifying signatures before load.
## References

- [Imbue research post](https://imbue.com/research/2026-02-27-darwinian-evolver/)
Expand Down
Loading