add urls to agent manifest

This commit is contained in:
Colin McDonnell
2025-11-20 17:06:52 -08:00
parent 935fe26013
commit 8298cdd07c
2 changed files with 6 additions and 12 deletions
+1 -12
View File
@@ -11,18 +11,7 @@ function buildCommentFooter(payload: Payload): string {
const agentName = payload.agent;
const agentInfo = agentName ? agentsManifest[agentName] : null;
const agentDisplayName = agentInfo?.displayName || "Unknown Agent";
// agent URLs based on manifest
const agentUrls: Record<string, string> = {
claude: "https://claude.com/claude-code",
codex: "https://platform.openai.com/docs/guides/codex",
cursor: "https://cursor.com/",
gemini: "https://ai.google.dev/gemini-api/docs",
};
const agentUrl = agentName
? agentUrls[agentName] || "https://pullfrog.ai"
: "https://pullfrog.ai";
const agentUrl = agentInfo?.url || "https://pullfrog.ai";
// build workflow run URL
const workflowRunUrl = runId