@base44-preview/cli 0.0.22-pr.141.bcadd58 → 0.0.22-pr.142.ed13ece

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -57,11 +57,30 @@ The CLI will guide you through project setup. For step-by-step tutorials, see th
57
57
 
58
58
  <!--| [`eject`](https://docs.base44.com/developers/references/cli/commands/eject) | Create a Base44 backend project from an existing Base44 app | -->
59
59
 
60
- ## AI agent skills
60
+ ## AI Agent Skills
61
61
 
62
- When creating a project, [base44/skills](https://github.com/base44/skills) are automatically installed. These help AI agents understand how to work with Base44 projects.
62
+ When creating a project, you'll be prompted to install AI agent skills for your preferred coding assistants:
63
63
 
64
- If you need to install skills manually, use the following command:
64
+ ```
65
+ ◆ Add AI agent skills? (Select agents to configure)
66
+ │ ◼ Cursor
67
+ │ ◼ Claude Code
68
+
69
+ ```
70
+
71
+ This installs [base44/skills](https://github.com/base44/skills) which helps AI agents understand how to work with Base44 projects.
72
+
73
+ **Non-interactive mode:**
74
+
75
+ ```bash
76
+ # Install skills for all supported agents
77
+ base44 create --name my-app --path ./my-app --skills
78
+
79
+ # Skip skills installation
80
+ base44 create --name my-app --path ./my-app
81
+ ```
82
+
83
+ **Manual installation:**
65
84
 
66
85
  ```bash
67
86
  npx add-skill base44/skills
package/dist/index.js CHANGED
@@ -38475,7 +38475,7 @@ async function executeCreate({ template, name: rawName, description, projectPath
38475
38475
  finalAppUrl = appUrl;
38476
38476
  }
38477
38477
  }
38478
- if (skills ?? true) try {
38478
+ if (skills) try {
38479
38479
  await runTask("Installing AI agent skills...", async () => {
38480
38480
  await execa("npx", [
38481
38481
  "-y",
@@ -38496,7 +38496,7 @@ async function executeCreate({ template, name: rawName, description, projectPath
38496
38496
  if (finalAppUrl) M.message(`${theme.styles.header("Site")}: ${theme.colors.links(finalAppUrl)}`);
38497
38497
  return { outroMessage: "Your project is set up and ready to use" };
38498
38498
  }
38499
- const createCommand = new Command("create").description("Create a new Base44 project").addArgument(new Argument("name", "Project name").argOptional()).option("-p, --path <path>", "Path where to create the project").option("-t, --template <id>", "Template ID (e.g., backend-only, backend-and-client)").option("--deploy", "Build and deploy the site").option("--skills", "Add AI agent skills").hook("preAction", validateNonInteractiveFlags$1).action(async (name$1, options) => {
38499
+ const createCommand = new Command("create").description("Create a new Base44 project").addArgument(new Argument("name", "Project name").argOptional()).option("-p, --path <path>", "Path where to create the project").option("-t, --template <id>", "Template ID (e.g., backend-only, backend-and-client)").option("--deploy", "Build and deploy the site").option("--no-skills", "Skip AI agent skills installation").hook("preAction", validateNonInteractiveFlags$1).action(async (name$1, options) => {
38500
38500
  await chooseCreate({
38501
38501
  name: name$1,
38502
38502
  ...options
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/cli",
3
- "version": "0.0.22-pr.141.bcadd58",
3
+ "version": "0.0.22-pr.142.ed13ece",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "bin": {