fix(i-d): notifications-DELETE + agents/skills Brueche — tote Hooks eliminiert

Verifiziert: useDeleteNotification und useAgentSkills haben NULL Komponenten-Importeure (nur Definitionsdateien). Die echten Komponenten nutzen andere Hooks (useNotifications, useMarkNotificationRead, useUnreadNotificationCount; useAgentTools/useAgentToolsFull). Nach AGENTS.md 0.2 keine Backend-Shims fuer tote Calls: beide Hooks entfernt, ungenutztes apiDelete-Import in notifications.ts bereinigt.

Damit sind alle 12 API-Braeche aus dem D5-Triage abgeschlossen: ai/sessions x5 (3e5f13f), policies x4 (86c96f0), mail x4 (86c96f0), notifications DELETE (hier), agents/skills (hier). tsc exit=0.
This commit is contained in:
Agent Zero
2026-08-25 20:23:02 +02:00
parent 86c96f03ca
commit 52323610e3
2 changed files with 1 additions and 22 deletions
-11
View File
@@ -16,7 +16,6 @@ import type {
AutomationSettings,
MiniAppDef,
AgentToolInfo,
AgentSkillInfo,
AgentRunFull,
} from '@/types/automation';
@@ -258,16 +257,6 @@ export function useAgentToolsFull() {
});
}
export function useAgentSkills() {
return useQuery({
queryKey: ['agentSkills'],
queryFn: async () => {
const res = await apiGet<AgentSkillInfo[] | { items: AgentSkillInfo[] }>('/agents/skills');
return Array.isArray(res) ? res : res.items ?? [];
},
});
}
export function useAgentRunsFull(agentId: string) {
return useQuery({
queryKey: ['agentRunsFull', agentId],