> ## Documentation Index
> Fetch the complete documentation index at: https://agent-skills.zhcndoc.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 客户展示

> 支持 Agent Skills 格式的 Agent 产品。

export const ClientShowcase = ({clients}) => {
  const shuffle = arr => {
    const copy = arr.slice();
    for (let i = copy.length - 1; i > 0; i--) {
      const j = Math.floor(Math.random() * (i + 1));
      [copy[i], copy[j]] = [copy[j], copy[i]];
    }
    return copy;
  };
  const sort = clients => clients.toSorted((a, b) => a.name.localeCompare(b.name));
  const [state, dispatch] = React.useReducer((state, action) => {
    switch (action) {
      case "shuffle":
        return {
          mode: "shuffle",
          clients: shuffle(clients)
        };
      case "alpha":
        return {
          mode: "alpha",
          clients: sort(clients)
        };
      default:
        return state;
    }
  }, {
    mode: "shuffle",
    clients: shuffle(clients)
  });
  const Logo = ({client}) => <a href={client.url} className="block no-underline border-none w-full h-full">
      <img className="block dark:hidden object-contain w-full h-full !my-0" src={client.lightSrc} alt={client.name} noZoom />
      <img className="hidden dark:block object-contain w-full h-full !my-0" src={client.darkSrc} alt={client.name} noZoom />
    </a>;
  const ToggleButton = ({active, onClick, icon, title}) => <button onClick={onClick} title={title} className={`px-3 py-1 cursor-pointer border-none ${active ? 'bg-gray-200 dark:bg-gray-600' : 'hover:bg-gray-100 dark:hover:bg-gray-800'}`}>
      <Icon icon={icon} size={16} />
    </button>;
  return <div>
      <div className="flex justify-end mb-3">
        <div className="inline-flex rounded-md border border-gray-200 dark:border-gray-700 overflow-hidden">
          <ToggleButton active={state.mode === "shuffle"} onClick={() => dispatch("shuffle")} icon="shuffle" title="Shuffle" />
          <ToggleButton active={state.mode === "alpha"} onClick={() => dispatch("alpha")} icon="arrow-down-a-z" title="Alphabetical" />
        </div>
      </div>
      <div className="grid grid-cols-1 md:grid-cols-2 gap-3">
        {state.clients.map(client => <div key={client.name} className="border border-gray-200 dark:border-gray-700 rounded-lg px-5 py-3 flex flex-col">
            <div className="mx-auto mb-1.5" style={{
    height: 80,
    width: 150 * (client.scale || 1)
  }}>
              <Logo client={client} />
            </div>
            <div className="text-base font-semibold mb-1.5"><a href={client.url}>{client.name}</a></div>
            <p className="text-sm text-gray-600 dark:text-gray-400 m-0 leading-normal flex-1">{client.description}</p>
            {(client.instructionsUrl || client.sourceCodeUrl) && <div className="border-t border-gray-100 dark:border-gray-800 -mx-5 -mb-3 mt-3 px-5 py-3 bg-gray-50 dark:bg-gray-800/50 rounded-b-lg text-sm text-gray-500 dark:text-gray-400 flex flex-wrap gap-x-5 gap-y-1">
                {client.instructionsUrl && <span className="whitespace-nowrap">
                    <Icon icon="gear" size={14} /> <a href={client.instructionsUrl} className="text-gray-500 dark:text-gray-400">Setup instructions</a>
                  </span>}
                {client.sourceCodeUrl && <span className="whitespace-nowrap">
                    <Icon icon="code" size={14} /> <a href={client.sourceCodeUrl} className="text-gray-500 dark:text-gray-400">Source code</a>
                  </span>}
              </div>}
          </div>)}
      </div>
    </div>;
};

export const clients = [{
  name: "Junie",
  description: "Junie 是一款面向真实世界开发场景构建的、与 LLM 无关的编码代理。它建立在 IntelliJ Platform 之上，因此能像你的编辑器一样理解你的项目。",
  url: "https://junie.jetbrains.com/",
  lightSrc: "/images/logos/junie/junie-logo-on-white.svg",
  darkSrc: "/images/logos/junie/junie-logo-on-dark.svg",
  instructionsUrl: "https://junie.jetbrains.com/docs/agent-skills.html"
}, {
  name: "Gemini CLI",
  description: "Gemini CLI 是一个开源 AI 代理，可将 Gemini 的能力直接带入你的终端。",
  url: "https://geminicli.com",
  lightSrc: "/images/logos/gemini-cli/gemini-cli-logo_light.svg",
  darkSrc: "/images/logos/gemini-cli/gemini-cli-logo_dark.svg",
  instructionsUrl: "https://geminicli.com/docs/cli/skills/",
  sourceCodeUrl: "https://github.com/google-gemini/gemini-cli"
}, {
  name: "Autohand Code CLI",
  description: "Autohand Code CLI 是一个由 LLM 驱动的自主编码代理，运行在你的终端中。它使用 ReAct（Reason + Act，思考 + 行动）模式来理解你的代码库、规划变更，并在你的批准下执行这些变更。",
  url: "https://autohand.ai/",
  lightSrc: "/images/logos/autohand/autohand-light.svg",
  darkSrc: "/images/logos/autohand/autohand-dark.svg",
  scale: 0.8,
  instructionsUrl: "https://autohand.ai/docs/working-with-autohand-code/agent-skills.html",
  sourceCodeUrl: "https://github.com/autohandai/code-cli"
}, {
  name: "OpenCode",
  description: "OpenCode 是一个开源代理，可帮助你在终端、IDE 或桌面环境中编写代码。",
  url: "https://opencode.ai/",
  lightSrc: "/images/logos/opencode/opencode-wordmark-light.svg",
  darkSrc: "/images/logos/opencode/opencode-wordmark-dark.svg",
  instructionsUrl: "https://opencode.ai/docs/skills/",
  sourceCodeUrl: "https://github.com/sst/opencode"
}, {
  name: "OpenHands",
  description: "OpenHands 是面向云端编码代理的开放平台。它可以从一个代理扩展到成千上万个代理，开源、与模型无关，并且支持企业级使用。",
  url: "https://openhands.dev/",
  lightSrc: "/images/logos/openhands/openhands-logo-light.svg",
  darkSrc: "/images/logos/openhands/openhands-logo-dark.svg",
  instructionsUrl: "https://docs.openhands.dev/overview/skills",
  sourceCodeUrl: "https://github.com/OpenHands/OpenHands"
}, {
  name: "Mux",
  description: "Mux 让你可以轻松并行运行多个编码代理，每个代理都拥有自己隔离的工作区，直接在浏览器或桌面端即可操作。Mux 是开源的，并且与 LLM 提供商无关。",
  url: "https://mux.coder.com/",
  lightSrc: "/images/logos/mux/mux-editor-light.svg",
  darkSrc: "/images/logos/mux/mux-editor-dark.svg",
  scale: 0.8,
  instructionsUrl: "https://mux.coder.com/agent-skills",
  sourceCodeUrl: "https://github.com/coder/mux"
}, {
  name: "Cursor",
  description: "Cursor 是一款 AI 编辑器和编码代理。你可以用它来理解代码库、规划并构建功能、修复漏洞、审查变更，并与现有工具协同工作。",
  url: "https://cursor.com/",
  lightSrc: "/images/logos/cursor/LOCKUP_HORIZONTAL_2D_LIGHT.svg",
  darkSrc: "/images/logos/cursor/LOCKUP_HORIZONTAL_2D_DARK.svg",
  instructionsUrl: "https://cursor.com/docs/context/skills"
}, {
  name: "Amp",
  description: "Amp 是前沿编码代理，让你能够充分发挥领先模型的全部能力。",
  url: "https://ampcode.com/",
  lightSrc: "/images/logos/amp/amp-logo-light.svg",
  darkSrc: "/images/logos/amp/amp-logo-dark.svg",
  scale: 0.8,
  instructionsUrl: "https://ampcode.com/manual#agent-skills"
}, {
  name: "Letta",
  description: "Letta 是用于构建有状态代理的平台：具备高级记忆能力的 AI，能够随着时间推移不断学习并自我改进。",
  url: "https://www.letta.com/",
  lightSrc: "/images/logos/letta/Letta-logo-RGB_OffBlackonTransparent.svg",
  darkSrc: "/images/logos/letta/Letta-logo-RGB_GreyonTransparent.svg",
  instructionsUrl: "https://docs.letta.com/letta-code/skills/",
  sourceCodeUrl: "https://github.com/letta-ai/letta"
}, {
  name: "Firebender",
  description: "Firebender 是首个 Android 原生编码代理，能够编写功能、在模拟器中测试，并自动修复问题。",
  url: "https://firebender.com/",
  lightSrc: "/images/logos/firebender/firebender-wordmark-light.svg",
  darkSrc: "/images/logos/firebender/firebender-wordmark-dark.svg",
  instructionsUrl: "https://docs.firebender.com/multi-agent/skills"
}, {
  name: "Goose",
  description: "Goose 是一个开源、可扩展的 AI 代理，能力不止于代码建议，还可以配合任何 LLM 执行安装、运行、编辑和测试。",
  url: "https://block.github.io/goose/",
  lightSrc: "/images/logos/goose/goose-logo-black.png",
  darkSrc: "/images/logos/goose/goose-logo-white.png",
  instructionsUrl: "https://block.github.io/goose/docs/guides/context-engineering/using-skills/",
  sourceCodeUrl: "https://github.com/block/goose"
}, {
  name: "GitHub Copilot",
  description: "GitHub Copilot 直接在你的编辑器中与你协作，为你提供整行甚至整个函数的建议。",
  url: "https://github.com/",
  lightSrc: "/images/logos/github/GitHub_Lockup_Dark.svg",
  darkSrc: "/images/logos/github/GitHub_Lockup_Light.svg",
  instructionsUrl: "https://docs.github.com/en/copilot/concepts/agents/about-agent-skills",
  sourceCodeUrl: "https://github.com/microsoft/vscode-copilot-chat"
}, {
  name: "VS Code",
  description: "Visual Studio Code 将代码编辑器的简洁性与开发者在核心编辑、构建、调试循环中所需的能力结合在一起。",
  url: "https://code.visualstudio.com/",
  lightSrc: "/images/logos/vscode/vscode.svg",
  darkSrc: "/images/logos/vscode/vscode-alt.svg",
  instructionsUrl: "https://code.visualstudio.com/docs/copilot/customization/agent-skills",
  sourceCodeUrl: "https://github.com/microsoft/vscode"
}, {
  name: "Claude Code",
  description: "Claude Code 是一款代理式编码工具，可以读取你的代码库、编辑文件、运行命令，并与你的开发工具集成。可在终端、IDE、桌面应用和浏览器中使用。",
  url: "https://claude.ai/code",
  lightSrc: "/images/logos/claude-code/Claude-Code-logo-Slate.svg",
  darkSrc: "/images/logos/claude-code/Claude-Code-logo-Ivory.svg",
  instructionsUrl: "https://code.claude.com/docs/en/skills"
}, {
  name: "Claude",
  description: "Claude 是 Anthropic 的 AI，专为解决问题的人打造。你可以用它应对复杂挑战、分析数据、编写代码，并梳理最棘手的工作。",
  url: "https://claude.ai/",
  lightSrc: "/images/logos/claude-ai/Claude-logo-Slate.svg",
  darkSrc: "/images/logos/claude-ai/Claude-logo-Ivory.svg",
  instructionsUrl: "https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview"
}, {
  name: "OpenAI Codex",
  description: "Codex 是 OpenAI 面向软件开发的编码代理。",
  url: "https://developers.openai.com/codex",
  lightSrc: "/images/logos/oai-codex/OAI_Codex-Lockup_400px.svg",
  darkSrc: "/images/logos/oai-codex/OAI_Codex-Lockup_400px_Darkmode.svg",
  instructionsUrl: "https://developers.openai.com/codex/skills/",
  sourceCodeUrl: "https://github.com/openai/codex"
}, {
  name: "Piebald",
  description: "Piebald 是一款桌面和网页应用，让代理式开发变得前所未有地轻松，同时仍让你完全掌控配置、上下文和流程。",
  url: "https://piebald.ai",
  lightSrc: "/images/logos/piebald/Piebald_wordmark_light.svg",
  darkSrc: "/images/logos/piebald/Piebald_wordmark_dark.svg"
}, {
  name: "Factory",
  description: "Factory 是一个 AI 原生的软件开发平台，能在你工作的任何地方运行。从 IDE 到 CI/CD，你都可以把重构、事件响应和迁移等完整任务委派给 Droids，而无需更换工具、模型或工作流。",
  url: "https://factory.ai/",
  lightSrc: "/images/logos/factory/factory-logo-light.svg",
  darkSrc: "/images/logos/factory/factory-logo-dark.svg",
  instructionsUrl: "https://docs.factory.ai/cli/configuration/skills"
}, {
  name: "pi",
  description: "Pi 是一个极简的终端编码框架。让 pi 适应你的工作流，而不是反过来。",
  url: "https://shittycodingagent.ai/",
  lightSrc: "/images/logos/pi/pi-logo-light.svg",
  darkSrc: "/images/logos/pi/pi-logo-dark.svg",
  scale: 0.55,
  instructionsUrl: "https://github.com/badlogic/pi-mono/blob/main/packages/coding-agent/docs/skills.md",
  sourceCodeUrl: "https://github.com/badlogic/pi-mono"
}, {
  name: "Databricks Genie Code",
  description: "Genie Code 是专为 Databricks 中的数据工作打造的自主 AI 伙伴。",
  url: "https://databricks.com/",
  lightSrc: "/images/logos/databricks/databricks-logo-light.svg",
  darkSrc: "/images/logos/databricks/databricks-logo-dark.svg",
  instructionsUrl: "https://docs.databricks.com/aws/en/assistant/skills"
}, {
  name: "Agentman",
  description: "Agentman 是一个代理式医疗平台。它使用 AI 代理自动化收入周期工作流，同时不牺牲控制力。每个操作都可测试、可追踪、可审计。",
  url: "https://agentman.ai/",
  lightSrc: "/images/logos/agentman/agentman-wordmark-light.svg",
  darkSrc: "/images/logos/agentman/agentman-wordmark-dark.svg",
  instructionsUrl: "https://agentman.ai/agentskills"
}, {
  name: "TRAE",
  description: "Trae 是一款自适应 AI IDE，重新定义你的工作方式，并与你协作以更快地推进工作。",
  url: "https://trae.ai/",
  lightSrc: "/images/logos/trae/trae-logo-lightmode.svg",
  darkSrc: "/images/logos/trae/trae-logo-darkmode.svg",
  instructionsUrl: "https://www.trae.ai/blog/trae_tutorial_0115",
  sourceCodeUrl: "https://github.com/bytedance/trae-agent"
}, {
  name: "Spring AI",
  description: "Spring AI 旨在简化集成人工智能功能的应用开发，避免不必要的复杂性。",
  url: "https://docs.spring.io/spring-ai/reference",
  lightSrc: "/images/logos/spring-ai/spring-ai-logo-light.svg",
  darkSrc: "/images/logos/spring-ai/spring-ai-logo-dark.svg",
  instructionsUrl: "https://spring.io/blog/2026/01/13/spring-ai-generic-agent-skills/",
  sourceCodeUrl: "https://github.com/spring-projects/spring-ai"
}, {
  name: "Roo Code",
  description: "Roo Code 将一整支 AI 开发团队直接带到你的编辑器中，凭借深度的项目级上下文、多步骤代理式编码和无与伦比的开发者灵活性，超越封闭式工具。",
  url: "https://roocode.com",
  lightSrc: "/images/logos/roo-code/roo-code-logo-black.svg",
  darkSrc: "/images/logos/roo-code/roo-code-logo-white.svg",
  instructionsUrl: "https://docs.roocode.com/features/skills",
  sourceCodeUrl: "https://github.com/RooCodeInc/Roo-Code"
}, {
  name: "Mistral AI Vibe",
  description: "Mistral Vibe 是一款由 Mistral 模型驱动的命令行编码助手。它为你的代码库提供对话式界面，让你可以通过一套强大的工具，使用自然语言探索、修改并与你的项目交互。",
  url: "https://github.com/mistralai/mistral-vibe",
  lightSrc: "/images/logos/mistral-vibe/vibe-logo_black.svg",
  darkSrc: "/images/logos/mistral-vibe/vibe-logo_white.svg",
  scale: 0.55,
  instructionsUrl: "https://github.com/mistralai/mistral-vibe",
  sourceCodeUrl: "https://github.com/mistralai/mistral-vibe"
}, {
  name: "Command Code",
  description: "Command Code 是一款会持续学习你编码风格的编码代理。我们的元神经符号 AI 模型 taste-1 结合持续强化学习，将 LLM 与你的编码偏好融合在一起。",
  url: "https://commandcode.ai/",
  lightSrc: "/images/logos/command-code/command-code-logo-for-light.svg",
  darkSrc: "/images/logos/command-code/command-code-logo-for-dark.svg",
  scale: 1.33,
  instructionsUrl: "https://commandcode.ai/docs/skills"
}, {
  name: "Ona",
  description: "Ona 是一个面向后台代理的平台。你可以在云端运行一支 AI 软件工程师团队，具备编排、治理和内核级安全保障。",
  url: "https://ona.com",
  lightSrc: "/images/logos/ona/ona-wordmark-light.svg",
  darkSrc: "/images/logos/ona/ona-wordmark-dark.svg",
  scale: 0.8,
  instructionsUrl: "https://ona.com/docs/ona/agents-md#skills-for-repository-specific-workflows"
}, {
  name: "VT Code",
  description: "VT Code 是一个开源编码代理，具备 LLM 原生的代码理解能力和健壮的 Shell 安全机制。它支持多个 LLM 提供商，具备自动故障切换和高效的上下文管理。",
  url: "https://github.com/vinhnx/vtcode",
  lightSrc: "/images/logos/vtcode/vt_code_light.svg",
  darkSrc: "/images/logos/vtcode/vt_code_dark.svg",
  instructionsUrl: "https://github.com/vinhnx/vtcode/blob/main/docs/skills/SKILLS_GUIDE.md",
  sourceCodeUrl: "https://github.com/vinhnx/VTCode"
}, {
  name: "Qodo",
  description: "Qodo 是一个代理式代码质量平台，用于审查、测试和编写代码，并将 AI 融入整个开发工作流，以在每个阶段提升代码质量。",
  url: "https://www.qodo.ai/",
  lightSrc: "/images/logos/qodo/qodo-logo-light.png",
  darkSrc: "/images/logos/qodo/qodo-logo-dark.svg",
  instructionsUrl: "https://www.qodo.ai/blog/how-i-use-qodos-agent-skills-to-auto-fix-issues-in-pull-requests/"
}, {
  name: "Laravel Boost",
  description: "Laravel Boost 通过提供必要的规范和代理技能来加速 AI 辅助开发，帮助 AI 代理编写符合 Laravel 最佳实践的高质量 Laravel 应用。",
  url: "https://github.com/laravel/boost",
  lightSrc: "/images/logos/laravel-boost/boost-light-mode.svg",
  darkSrc: "/images/logos/laravel-boost/boost-dark-mode.svg",
  instructionsUrl: "https://laravel.com/docs/12.x/boost#agent-skills",
  sourceCodeUrl: "https://github.com/laravel/boost"
}, {
  name: "Emdash",
  description: "Emdash 是一款与提供商无关的桌面应用，可让你并行运行多个编码代理，每个代理都隔离在各自的 git worktree 中，既可本地运行，也可通过 SSH 在远程机器上运行。",
  url: "https://emdash.sh",
  lightSrc: "/images/logos/emdash/emdash-logo-light.svg",
  darkSrc: "/images/logos/emdash/emdash-logo-dark.svg",
  instructionsUrl: "https://docs.emdash.sh/skills",
  sourceCodeUrl: "https://github.com/generalaction/emdash"
}, {
  name: "Snowflake Cortex Code",
  description: "Cortex Code 是集成到 Snowflake 平台中的 AI 驱动智能代理，专为复杂的数据工程、分析、机器学习以及代理构建任务进行优化。",
  url: "https://docs.snowflake.com/en/user-guide/cortex-code/cortex-code",
  lightSrc: "/images/logos/snowflake/snowflake-logo-light.svg",
  darkSrc: "/images/logos/snowflake/snowflake-logo-dark.svg",
  instructionsUrl: "https://docs.snowflake.com/en/user-guide/cortex-code/extensibility#extensibility-skills"
}, {
  name: "Kiro",
  description: "Kiro 通过以规格驱动的开发为 AI 编码引入结构，帮助你发挥最佳水平。",
  url: "https://kiro.dev/",
  lightSrc: "/images/logos/kiro/kiro-logo-light.svg",
  darkSrc: "/images/logos/kiro/kiro-logo-dark.svg",
  instructionsUrl: "https://kiro.dev/docs/skills/"
}, {
  name: "Workshop",
  description: "Workshop is a cross-platform AI coding agent for building full applications. It supports multi-LLM models, sub-agents, custom agents, and skills — available as a desktop app, web app, and CLI.",
  url: "https://workshop.ai/",
  lightSrc: "/images/logos/workshop/workshop-logo-light.svg",
  darkSrc: "/images/logos/workshop/workshop-logo-dark.svg",
  instructionsUrl: "https://docs.workshop.ai/core-concepts/working-with-the-agent#create-your-own-agents"
}, {
  name: "Google AI Edge Gallery",
  description: "Google AI Edge Gallery is the premier destination for running the world's most powerful open-source Large Language Models (LLMs) on your mobile device",
  url: "https://github.com/google-ai-edge/gallery",
  lightSrc: "/images/logos/google-ai-edge-gallery/google-ai-edge-gallery-light.svg",
  darkSrc: "/images/logos/google-ai-edge-gallery/google-ai-edge-gallery-dark.svg",
  scale: 0.45,
  instructionsUrl: "https://github.com/google-ai-edge/gallery/tree/main/skills",
  sourceCodeUrl: "https://github.com/google-ai-edge/gallery"
}, {
  name: "nanobot",
  description: "nanobot is an ultra-lightweight, open-source personal AI agent. It runs across multiple platforms — terminal, Telegram, Discord, Slack, WeChat, and more — with built-in MCP support and a skills system for extensibility.",
  url: "https://nanobot.wiki/",
  lightSrc: "/images/logos/nanobot/nanobot-logo-light.png",
  darkSrc: "/images/logos/nanobot/nanobot-logo-dark.png",
  instructionsUrl: "https://nanobot.wiki/docs/0.1.5/use-nanobot/skills",
  sourceCodeUrl: "https://github.com/HKUDS/nanobot"
}, {
  name: "fast-agent",
  description: "fast-agent is a simple, extendable way to interact with LLMs. Excellent for Coding, Evals, ACPX and Skills development.",
  url: "https://fast-agent.ai/",
  lightSrc: "/images/logos/fast-agent/fast-agent-light.svg",
  darkSrc: "/images/logos/fast-agent/fast-agent-dark.svg",
  scale: 1.33,
  instructionsUrl: "https://fast-agent.ai/agents/skills/",
  sourceCodeUrl: "https://github.com/evalstate/fast-agent"
}, {
  name: "bub",
  description: "Bub is a lightweight, hook-first Python framework for channel-native agents that live alongside people.",
  url: "https://bub.build/",
  lightSrc: "/images/logos/bub/bub-light.svg",
  darkSrc: "/images/logos/bub/bub-dark.svg",
  scale: 0.5,
  instructionsUrl: "https://bub.build/docs/build/skills/",
  sourceCodeUrl: "https://github.com/bubbuild/bub"
}, {
  name: "Tabnine",
  description: "Tabnine is an AI engineering platform that combines code assistants, agentic workflows, and enterprise context to help development teams build, review, and maintain software with context-aware AI—while keeping code private, secure, and fully under your control.",
  url: "https://www.tabnine.com/",
  lightSrc: "/images/logos/tabnine/tabnine-logo-light.svg",
  darkSrc: "/images/logos/tabnine/tabnine-logo-dark.svg",
  instructionsUrl: "https://docs.tabnine.com/main/getting-started/tabnine-cli/features/agent-skills"
}, {
  name: "Vita",
  description: "Vita provides autonomous digital workers with virtual desktops to execute complex workflows. It learns your intent to automate end-to-end tasks like creating and posting engaging social media content.",
  url: "https://www.vita-ai.net",
  lightSrc: "/images/logos/vita/logo-horizontal-light.svg",
  darkSrc: "/images/logos/vita/logo-horizontal-dark.svg",
  instructionsUrl: "https://www.vita-ai.net/docs/features/agent-skills"
}, {
  name: "Superconductor",
  description: "Superconductor is a multiplayer workspace for your team and coding agents. Run many agents in the cloud, build together in shared sessions, and ship faster with live app previews and guided code review.",
  url: "https://superconductor.com/",
  lightSrc: "/images/logos/superconductor/superconductor-wordmark-light.svg",
  darkSrc: "/images/logos/superconductor/superconductor-wordmark-dark.svg",
  scale: 1.33,
  instructionsUrl: "https://superconductor.com/docs/project/mcp-and-skills"
}, {
  name: "Deep Code",
  description: "Deep Code is an open-source terminal AI coding assistant for the DeepSeek model, supporting deep thinking, reasoning effort control, and extending its capabilities with Skills and MCP.",
  url: "https://deepcode.vegamo.cn/en",
  lightSrc: "/images/logos/deepcode/deepcode-logo-light.svg",
  darkSrc: "/images/logos/deepcode/deepcode-logo-dark.svg",
  scale: 0.5,
  instructionsUrl: "https://deepcode.vegamo.cn/en/docs/configuration/agent-skills",
  sourceCodeUrl: "https://github.com/lessweb/deepcode-cli"
}];

<ClientShowcase clients={clients} />
