diff --git a/src/config.py b/src/config.py index 09e5068..7cbb72a 100644 --- a/src/config.py +++ b/src/config.py @@ -9,6 +9,17 @@ class Settings(BaseSettings): plane_webhook_secret: str = "" plane_project_id: str = "" + # Per-agent Plane bot tokens (feat: per-agent comment authorship). + # When set, add_comment posts under the matching bot so Plane shows the + # real author (Analyst/Architect/...). Empty -> fallback to plane_api_token. + plane_bot_analyst: str = "" + plane_bot_architect: str = "" + plane_bot_developer: str = "" + plane_bot_reviewer: str = "" + plane_bot_tester: str = "" + plane_bot_deployer: str = "" + plane_bot_stream: str = "" + # Gitea gitea_url: str = "http://localhost:3000" gitea_token: str = ""