// actions.go – Typsichere Konstanten für Agent-Actions package agents const ( // Research ActionQuery = "query" // Memory ActionStore = "store" ActionIngest = "ingest" // Task ActionAdd = "add" ActionList = "list" ActionDone = "done" ActionDelete = "delete" // Memory ActionIngestURL = "url" ActionIngestPDF = "pdf" ActionProfile = "profile" ActionProfileShow = "profile-show" // Knowledge ActionKnowledgeList = "list" ActionKnowledgeDelete = "delete" // Tool/Email ActionEmail = "email" ActionEmailSummary = "summary" ActionEmailUnread = "unread" ActionEmailRemind = "remind" ActionEmailIngest = "ingest" ActionEmailMove = "move" ActionEmailTriage = "triage" )