From 278c608bedbe56331157cfaa27e8e67f2654c731 Mon Sep 17 00:00:00 2001 From: Quickbeard Date: Fri, 31 Jul 2026 09:37:01 +0700 Subject: [PATCH 1/2] feat(skill): mark the current directory as the recommended pull scope A skill is usually tailored to one project's work, so installing into the current directory (where it can be committed and shared) is the better default. Label it as recommended in the `skill pull` picker. Co-Authored-By: Claude Opus 5 (1M context) --- src/SkillPullApp.tsx | 2 +- tests/SkillPullApp.test.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); }); From adf0eefb11c663ee79a003a9f95349fb47fb0590 Mon Sep 17 00:00:00 2001 From: Quickbeard Date: Fri, 31 Jul 2026 09:40:02 +0700 Subject: [PATCH 2/2] chore: bump version to 0.5.4 Co-Authored-By: Claude Opus 5 (1M context) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",