From 2e96f717bf264762d23bd62cc95788091e638727 Mon Sep 17 00:00:00 2001 From: Oz Sayag Date: Sun, 1 Feb 2026 08:09:14 +0200 Subject: [PATCH] fix: update skill installation command in README and CLI create command - Changed the skill installation command from `npx add-skill base44/skills` to `npx skills add base44/skills` --- README.md | 2 +- src/cli/commands/project/create.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cc1f176b..451e7cca 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ When creating a project, [base44/skills](https://github.com/base44/skills) are a If you need to install skills manually, use the following command: ```bash -npx add-skill base44/skills +npx skills add base44/skills ``` ## Help diff --git a/src/cli/commands/project/create.ts b/src/cli/commands/project/create.ts index 33cc690d..9b83d71d 100644 --- a/src/cli/commands/project/create.ts +++ b/src/cli/commands/project/create.ts @@ -229,14 +229,14 @@ async function executeCreate({ await runTask( "Installing AI agent skills...", async () => { - await execa("npx", ["-y", "add-skill", "base44/skills", "-y"], { + await execa("npx", ["-y", "skills", "add", "base44/skills", "-y"], { cwd: resolvedPath, shell: true }); }, { successMessage: theme.colors.base44Orange("AI agent skills added successfully"), - errorMessage: "Failed to add AI agent skills - you can add them later with: npx add-skill base44/skills", + errorMessage: "Failed to add AI agent skills - you can add them later with: npx skills add base44/skills", } ); } catch {