diff --git a/package.json b/package.json index c938591..29c3fb7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codev-ai", - "version": "0.5.3", + "version": "0.5.4", "description": "CoDev — AI Coding Agent Hub. Install, configure, and manage multiple AI coding agents.", "keywords": [ "ai", diff --git a/src/SkillPullApp.tsx b/src/SkillPullApp.tsx index fde8b2f..ebb5e67 100644 --- a/src/SkillPullApp.tsx +++ b/src/SkillPullApp.tsx @@ -42,7 +42,7 @@ type Phase = | "error"; const LOCATIONS: { key: InstallLocation; label: string }[] = [ - { key: "current", label: "Current directory" }, + { key: "current", label: "Current directory (recommended)" }, { key: "global", label: "Global" }, ]; diff --git a/tests/SkillPullApp.test.tsx b/tests/SkillPullApp.test.tsx index 6acf1c5..a492461 100644 --- a/tests/SkillPullApp.test.tsx +++ b/tests/SkillPullApp.test.tsx @@ -93,7 +93,7 @@ describe("SkillPullApp", () => { await waitFor(() => frameText(lastFrame).includes("pg-tuner")); const frame = frameText(lastFrame); - expect(frame).toContain("Current directory"); + expect(frame).toContain("Current directory (recommended)"); expect(frame).not.toContain(ID); });