The diff adds the mandatory `retoor <retoor@molodetz.nl>` header comment to every `.py` file under `devplacepy/` (including `__init__.py` and `routers/__init__.py`), and updates the `StyleAgent` in `agents/style.py` to instruct agents to only add the header on created or already-edited files rather than sweeping the entire repo. The `agents/base.py` operating protocol is also revised to reorder and clarify tool discipline rules.
17 lines
309 B
Python
17 lines
309 B
Python
# retoor <retoor@molodetz.nl>
|
|
|
|
TOPICS = ["devlog", "showcase", "question", "rant", "fun", "random", "signals"]
|
|
|
|
REACTION_EMOJI = [
|
|
"\U0001f44d",
|
|
"❤️",
|
|
"\U0001f680",
|
|
"\U0001f389",
|
|
"\U0001f602",
|
|
"\U0001f440",
|
|
"\U0001f525",
|
|
"\U0001f92f",
|
|
]
|
|
|
|
DEVII_GUEST_COOKIE = "devii_guest"
|