import Image from "next/image"; import styles from "./Agents.module.css"; interface Agent { id: string; name: string; from: string; logo: string; accent: string; href: string; featured?: boolean; pitch?: string; sub?: string; } const FEATURED: Agent[] = [ { id: "claude-code", name: "Claude Code", from: "Anthropic", logo: "https://github.com/anthropics.png", accent: "#CC785C", href: "https://claude.com/product/claude-code", pitch: "12 hooks + MCP + skills", sub: "FIRST-CLASS PLUGIN", }, { id: "copilot-cli", name: "Copilot CLI", from: "GitHub", logo: "https://svgl.app/library/github_dark.svg", accent: "#24292E", href: "https://docs.github.com/copilot/github-copilot-in-the-cli", pitch: "11 hooks + MCP · framed stdio", sub: "NATIVE PLUGIN", }, { id: "codex", name: "Codex CLI", from: "OpenAI", logo: "https://github.com/openai.png", accent: "#10A37F", href: "https://github.com/openai/codex", pitch: "6 hooks + MCP · native plugin", sub: "NATIVE PLUGIN", }, { id: "openclaw", name: "OpenClaw", from: "openclaw", logo: "https://github.com/openclaw.png", accent: "#FFA000", href: "https://github.com/openclaw/openclaw", pitch: "onSessionStart · onPreLlmCall · onPostToolUse · onSessionEnd", sub: "GATEWAY PLUGIN", }, { id: "hermes", name: "Hermes", from: "Nous Research", logo: "https://github.com/NousResearch.png", accent: "#7A5BFF", href: "https://github.com/NousResearch", pitch: "Python plugin · yaml config", sub: "FIRST-PARTY INTEGRATION", }, { id: "pi", name: "pi", from: "pi", logo: "https://raw.githubusercontent.com/rohitg00/agentmemory/main/assets/agents/pi.svg", accent: "#FF6B35", href: "https://github.com/rohitg00/agentmemory/tree/main/integrations/pi", pitch: "Native plugin + MCP", sub: "NATIVE PLUGIN", }, { id: "openhuman", name: "OpenHuman", from: "tinyhumansai", logo: "https://raw.githubusercontent.com/tinyhumansai/openhuman/main/app/src-tauri/icons/128x128.png", accent: "#9b5cf6", href: "https://github.com/tinyhumansai/openhuman", pitch: "Native Memory trait backend (Rust)", sub: "NATIVE BACKEND", }, ]; const MARQUEE: Agent[] = [ { id: "claude-desktop", name: "Claude Desktop", from: "Anthropic", logo: "https://github.com/anthropics.png", accent: "#CC785C", href: "https://claude.ai/download", }, { id: "cursor", name: "Cursor", from: "Anysphere", logo: "https://svgl.app/library/cursor_dark.svg", accent: "#000000", href: "https://cursor.com", }, { id: "warp", name: "Warp", from: "Warp", logo: "https://svgl.app/library/warp.svg", accent: "#9B59FF", href: "https://www.warp.dev", }, { id: "continue", name: "Continue", from: "Continue.dev", logo: "https://continue.dev/icon.svg", accent: "#000000", href: "https://continue.dev", }, { id: "cline", name: "Cline", from: "cline", logo: "https://github.com/cline.png", accent: "#F59E0B", href: "https://github.com/cline/cline", }, { id: "zed", name: "Zed", from: "Zed Industries", logo: "https://svgl.app/library/zed-logo_dark.svg", accent: "#FF4500", href: "https://zed.dev", }, { id: "droid", name: "Droid", from: "Factory.ai", logo: "https://www.factory.ai/favicon.svg", accent: "#FF6B35", href: "https://docs.factory.ai/cli", }, { id: "gemini-cli", name: "Gemini CLI", from: "Google", logo: "https://github.com/google-gemini.png", accent: "#4285F4", href: "https://github.com/google-gemini/gemini-cli", }, { id: "antigravity", name: "Antigravity", from: "Google", logo: "https://svgl.app/library/antigravity.svg", accent: "#4285F4", href: "https://antigravity.google", }, { id: "qwen", name: "Qwen Code", from: "Alibaba", logo: "https://svgl.app/library/qwen_dark.svg", accent: "#615CED", href: "https://github.com/QwenLM/qwen-code", }, { id: "kiro", name: "Kiro", from: "AWS", logo: "https://kiro.dev/favicon.ico", accent: "#FF9900", href: "https://kiro.dev", }, { id: "opencode", name: "OpenCode", from: "opencode-ai", logo: "https://github.com/opencode-ai.png", accent: "#22C55E", href: "https://github.com/opencode-ai/opencode", }, { id: "roo", name: "Roo Code", from: "RooCode", logo: "https://github.com/RooCodeInc.png", accent: "#EC4899", href: "https://github.com/RooCodeInc/Roo-Code", }, { id: "kilo", name: "Kilo Code", from: "Kilo-Org", logo: "https://github.com/Kilo-Org.png", accent: "#06B6D4", href: "https://github.com/Kilo-Org/kilocode", }, { id: "goose", name: "Goose", from: "Block", logo: "https://github.com/block.png", accent: "#00D54B", href: "https://github.com/block/goose", }, { id: "aider", name: "Aider", from: "Aider-AI", logo: "https://github.com/Aider-AI.png", accent: "#E11D48", href: "https://github.com/Aider-AI/aider", }, { id: "windsurf", name: "Windsurf", from: "Cognition", logo: "https://svgl.app/library/windsurf-dark.svg", accent: "#00A699", href: "https://windsurf.com", }, ]; function FeaturedCard({ a }: { a: Agent }) { return (
{`${a.name}
{a.sub} {a.name} FROM {a.from}

{a.pitch}

); } function MarqueeTile({ a }: { a: Agent }) { return ( {`${a.name}
{a.name} FROM {a.from}
); } export function Agents() { const loop = [...MARQUEE, ...MARQUEE]; return (
WORKS WITH

SEVEN NATIVE PLUGINS.
REST MCP-NATIVE.

NATIVE PLUGINS FOR CLAUDE CODE, COPILOT CLI, CODEX CLI, OPENCLAW, HERMES, PI, AND OPENHUMAN. EVERY OTHER MCP CLIENT GETS IT FOR FREE. `agentmemory connect <agent>` AUTO-WIRES THEM ALL.

{FEATURED.map((a) => ( ))}
{loop.map((a, i) => ( ))}
); }