feat(agent): add Projects + Compliance agents, webhook notifications
BOC CI/CD / Test (push) Failing after 2s
BOC CI/CD / Security Scan (push) Has been skipped
BOC CI/CD / Build & Push (push) Has been skipped
BOC CI/CD / Deploy to Staging (push) Has been skipped
BOC CI/CD / Deploy to Production (push) Has been skipped

- Add AgentFAB to ProjectsPage and CompliancePage
- Add AgentWebhookNotifier for agent events (activated, message, escalation, error)
- Webhook URL configurable via AGENT_WEBHOOK_URL env var
- Build fresh web-v2 dist
This commit is contained in:
Bernt
2026-08-12 09:42:37 +00:00
parent f259610f8c
commit 8cb26cdb15
6 changed files with 137 additions and 0 deletions
+4
View File
@@ -14,6 +14,7 @@ import {
Clock,
TrendingUp,
} from 'lucide-react'
import { AgentFAB } from '@/components/agent/AgentFAB'
export function CompliancePage() {
const [activeTab, setActiveTab] = useState('iso')
@@ -514,6 +515,9 @@ export function CompliancePage() {
</Card>
</div>
)}
{/* Compliance Agent */}
<AgentFAB rum="compliance" />
</div>
)
}
+4
View File
@@ -16,6 +16,7 @@ import {
X,
GripVertical,
} from 'lucide-react'
import { AgentFAB } from '@/components/agent/AgentFAB'
interface Task {
id: string
@@ -562,6 +563,9 @@ export function ProjectsPage() {
</div>
</div>
)}
{/* Projects Agent */}
<AgentFAB rum="projects" />
</div>
)
}