From b1804e5d5eb6f9efcd478421eda6012f5e648122 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 08:37:55 +0000 Subject: [PATCH] Update base44-cli skill to v0.0.26 (February 2026) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Synchronized CLI skill documentation with base44-cli v0.0.26. Changes: - Updated create.md: Changed --skills flag to --no-skills (skills now default to enabled) - Updated deploy.md: Added agents to deployment sequence and related commands - Updated entities-push.md: Corrected error message text - Updated CLI_VERSION: v0.0.21 → v0.0.26 Co-Authored-By: Claude Sonnet 4.5 --- CLI_VERSION | 2 +- skills/base44-cli/references/create.md | 4 ++-- skills/base44-cli/references/deploy.md | 5 ++++- skills/base44-cli/references/entities-push.md | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CLI_VERSION b/CLI_VERSION index ad3e98d..08692e0 100644 --- a/CLI_VERSION +++ b/CLI_VERSION @@ -1 +1 @@ -v0.0.21 +v0.0.26 diff --git a/skills/base44-cli/references/create.md b/skills/base44-cli/references/create.md index aff7923..7580645 100644 --- a/skills/base44-cli/references/create.md +++ b/skills/base44-cli/references/create.md @@ -24,7 +24,7 @@ npx base44 create [name] --path [options] | `-p, --path ` | Path where to create the project | Yes* | | `-t, --template ` | Template ID (see templates below) | No | | `--deploy` | Build and deploy the site (includes pushing entities) | No | -| `--skills` | Add AI agent skills (default: true) | No | +| `--no-skills` | Skip AI agent skills installation (skills are added by default) | No | *Required for non-interactive mode. Both `name` and `--path` must be provided together. @@ -96,7 +96,7 @@ npx base44 create my-app -p . npx base44 create my-app -p . --deploy # Create without adding AI agent skills -npx base44 create my-app -p . --skills=false +npx base44 create my-app -p . --no-skills ``` ## What It Does diff --git a/skills/base44-cli/references/deploy.md b/skills/base44-cli/references/deploy.md index 6cccbee..500526f 100644 --- a/skills/base44-cli/references/deploy.md +++ b/skills/base44-cli/references/deploy.md @@ -20,7 +20,8 @@ The command automatically detects and deploys: 1. **Entities** - All `.jsonc` files in `base44/entities/` 2. **Functions** - All functions in `base44/functions/` -3. **Site** - Built files from `site.outputDirectory` (if configured) +3. **Agents** - All agent configurations in `base44/agents/` +4. **Site** - Built files from `site.outputDirectory` (if configured) ## Examples @@ -53,6 +54,7 @@ npx base44 deploy -y 5. Deploys all resources in sequence: - Pushes entity schemas - Deploys functions + - Pushes agent configurations - Uploads site files 6. Displays the dashboard URL and app URL (if site was deployed) @@ -80,4 +82,5 @@ After successful deployment: |---------|-------------| | `base44 entities push` | Push only entities | | `base44 functions deploy` | Deploy only functions | +| `base44 agents push` | Push only agents | | `base44 site deploy` | Deploy only the site | diff --git a/skills/base44-cli/references/entities-push.md b/skills/base44-cli/references/entities-push.md index 756c8d3..63b92d7 100644 --- a/skills/base44-cli/references/entities-push.md +++ b/skills/base44-cli/references/entities-push.md @@ -50,10 +50,10 @@ The push operation synchronizes your local entity schema with Base44: ## Error Handling -If no entities are found in your project configuration: +If no entities are found in your project: ```bash $ npx base44 entities push -Error: No entities found in project configuration +No entities found in project ``` ## Use Cases