base44 0.0.23 → 0.0.24

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,30 +57,11 @@ 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, you'll be prompted to install AI agent skills for your preferred coding assistants:
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.
63
63
 
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:**
64
+ If you need to install skills manually, use the following command:
84
65
 
85
66
  ```bash
86
67
  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
@@ -39225,7 +39225,7 @@ const siteDeployCommand = new Command("site").description("Manage site deploymen
39225
39225
 
39226
39226
  //#endregion
39227
39227
  //#region package.json
39228
- var version = "0.0.23";
39228
+ var version = "0.0.24";
39229
39229
 
39230
39230
  //#endregion
39231
39231
  //#region src/cli/program.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "base44",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "bin": {