feat: add agent skills tab and local dev helpers

This commit is contained in:
Dotta
2026-03-17 09:10:40 -05:00
parent 5a9a4170e8
commit 4323d4bbda
6 changed files with 221 additions and 6 deletions

View File

@@ -144,4 +144,12 @@ export const agentsApi = {
) => api.post<HeartbeatRun | { status: "skipped" }>(agentPath(id, companyId, "/wakeup"), data),
loginWithClaude: (id: string, companyId?: string) =>
api.post<ClaudeLoginResult>(agentPath(id, companyId, "/claude-login"), {}),
availableSkills: () =>
api.get<{ skills: AvailableSkill[] }>("/skills/available"),
};
export interface AvailableSkill {
name: string;
description: string;
isPaperclipManaged: boolean;
}