Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/cli/commands/project/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down