From 03195f6b7e0570dc8e5266e5c8054e4c50da5841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?chencheng=20=28=E4=BA=91=E8=B0=A6=29?= Date: Fri, 2 Jan 2026 00:14:33 +0800 Subject: [PATCH] feat: add neovate code agent support (#224) --- README.md | 1 + src/skill_seekers/cli/install_agent.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ad7942..1003819 100644 --- a/README.md +++ b/README.md @@ -840,6 +840,7 @@ skill-seekers install-agent output/react/ --agent cursor --dry-run | **Letta** | `~/.letta/skills/` | Global | | **Aide** | `~/.aide/skills/` | Global | | **Windsurf** | `~/.windsurf/skills/` | Global | +| **Neovate Code** | `~/.neovate/skills/` | Global | **Global paths** install to user's home directory (~/). **Project paths** install to current project's root directory. diff --git a/src/skill_seekers/cli/install_agent.py b/src/skill_seekers/cli/install_agent.py index 29f87b7..1a93a54 100644 --- a/src/skill_seekers/cli/install_agent.py +++ b/src/skill_seekers/cli/install_agent.py @@ -45,6 +45,7 @@ AGENT_PATHS = { 'letta': '~/.letta/skills/', # Global 'aide': '~/.aide/skills/', # Global 'windsurf': '~/.windsurf/skills/', # Global + 'neovate': '~/.neovate/skills/', # Global } @@ -363,7 +364,7 @@ Examples: skill-seekers install-agent output/react/ --agent cursor --dry-run Supported agents: - claude, cursor, vscode, copilot, amp, goose, opencode, letta, aide, windsurf, all + claude, cursor, vscode, copilot, amp, goose, opencode, letta, aide, windsurf, neovate, all """ )