Mission Control: notify OpenClaw via tools/invoke on task events

This commit is contained in:
Abhimanyu Saharan
2026-02-02 16:05:18 +05:30
parent 63419a26f1
commit 2bcd078c53
7 changed files with 254 additions and 12 deletions

View File

@@ -25,3 +25,7 @@ class Employee(SQLModel, table=True):
title: str | None = None
status: str = Field(default="active")
# OpenClaw integration
openclaw_session_key: str | None = None
notify_enabled: bool = Field(default=True)