mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-07-09 17:08:29 +00:00
Adds the always-enabled _goal plugin with per-chat goal storage, WebUI goal strip, /goal slash command, and agent-facing goal tools. Includes command-picker integration, focused plugin tests, and the generated 256x256 thumbnail asset.
8 lines
173 B
Python
8 lines
173 B
Python
import sys
|
|
from pathlib import Path
|
|
|
|
|
|
a0_root = str(Path(__file__).resolve().parents[3])
|
|
while a0_root in sys.path:
|
|
sys.path.remove(a0_root)
|
|
sys.path.insert(0, a0_root)
|