mirror of
https://github.com/rohitg00/agentmemory.git
synced 2026-09-14 20:16:33 +08:00
a9bc129430
* chore(website): refresh agents grid + logos for v0.9.23 Agents section was stale relative to the supported agent matrix that v0.9.23 ships: - FEATURED cards bumped from 6 to 7 — adds Copilot CLI (full plugin + hooks + MCP from PR #534). Title updates from "SIX FIRST-PARTY" to "SEVEN NATIVE PLUGINS". - MARQUEE tiles expanded from 10 to 17 — adds Warp, Continue, Zed, Droid (the 4 covered by `npx skills add` from PR #677) plus Qwen Code, Antigravity, and Kiro (the 3 from PR #648). - Logos switched from `github.com/<org>.png` avatars and stale third-party CDNs (freelogovectors.net, exafunction.github.io) to svgl.app brand SVGs where available (Anthropic, GitHub, OpenAI, Cursor, Warp, Continue, Zed, Gemini, Google, Qwen, Windsurf) or the agent's own website favicon where svgl doesn't carry the brand (Factory.ai, Kiro, OpenCode, Cline, Roo, Kilo, Goose, Aider, OpenClaw, Nous Research). Cursor and Windsurf logo paths were specifically broken; the freelogovectors URL was unreliable and Codeium → Cognition acquisition stale-dated the Windsurf path. AgentInstall chip row adds Copilot CLI + Warp alongside the existing Cursor / VS Code / Claude Code / Claude Desktop / Gemini / Codex shortcuts. Universal MCP JSON hint and "show more" button both updated to list the agents we actually support now. * fix(website): use correct svgl.app slugs + add hostnames to remotePatterns Previous commit's logo URLs all 404'd: - svgl.app slugs were wrong (e.g. anthropic.svg vs anthropic_white.svg, cursor.svg vs cursor_dark.svg). svgl exposes themed variants (`_light`/`_dark`/`_white`/`_black`) but bare `<slug>.svg` only exists for a few entries. Verified actual URLs via api.svgl.app for every featured + marquee tile. - Next.js Image `remotePatterns` didn't whitelist svgl.app or the agent-domain favicon hosts (factory.ai, kiro.dev, opencode.ai, cline.bot, etc.), so even valid URLs were rejected before fetch. Now uses dark-bg-appropriate variants throughout (white/dark logos on the black page background). For the few brands not in svgl (continue, kiro, opencode, cline, roo, goose, aider, openclaw, hermes, droid), falls back to the agent's own website favicon — each URL HEAD-probed for 200. Dropped stale remotePatterns: exafunction.github.io, www.freelogovectors.net, block.github.io (replaced with goose.dev). Added: continue.dev, goose.dev. * revert(website): restore github.com avatars for existing agents Only new logos (copilot-cli, warp, continue, zed, droid, antigravity, qwen, kiro) and previously-broken ones (cursor, windsurf) use svgl / own-site URLs. Original github.com/<org>.png avatars for claude-code, codex, openclaw, hermes, claude-desktop, gemini, opencode, cline, roo, kilo, goose, aider restored — they were never broken. next.config remotePatterns trimmed to: svgl.app, www.factory.ai, kiro.dev, continue.dev (the only non-github hosts still in use). * fix(assets): pi logo fill white for dark website bg User-provided SVG uses #09090b near-black; invisible on the agents grid's dark background. Same path, fill swapped to #ffffff.