From 225bc7b5d7847d5d058cde8e8f6dbcf24ae1343f Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 14:44:26 +0000 Subject: [PATCH] Update base44-cli skill to v0.0.36 - Bump CLI_VERSION from v0.0.35-6-g0f89a25 to v0.0.36 - Add dev.md reference for the `base44 dev` command (local dev server) - Add `base44 dev` to the Project Management commands table in SKILL.md No user-facing CLI interface changes between stored version and v0.0.36 (only CI/release metadata changes in that range). Co-Authored-By: Claude Sonnet 4.6 --- CLI_VERSION | 2 +- skills/base44-cli/SKILL.md | 1 + skills/base44-cli/references/dev.md | 41 +++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 skills/base44-cli/references/dev.md diff --git a/CLI_VERSION b/CLI_VERSION index 1ff8782..bc6ec85 100644 --- a/CLI_VERSION +++ b/CLI_VERSION @@ -1 +1 @@ -v0.0.35-6-g0f89a25 +v0.0.36 diff --git a/skills/base44-cli/SKILL.md b/skills/base44-cli/SKILL.md index 57de04f..edd587d 100644 --- a/skills/base44-cli/SKILL.md +++ b/skills/base44-cli/SKILL.md @@ -198,6 +198,7 @@ npx base44 | `base44 create` | Create a new Base44 project from a template | [create.md](references/create.md) ⚠️ **MUST READ** | | `base44 link` | Link an existing local project to Base44 | [link.md](references/link.md) | | `base44 eject` | Download the code for an existing Base44 project | [eject.md](references/eject.md) | +| `base44 dev` | Start the local development server | [dev.md](references/dev.md) | | `base44 dashboard open` | Open the app dashboard in your browser | [dashboard.md](references/dashboard.md) | ### Deployment diff --git a/skills/base44-cli/references/dev.md b/skills/base44-cli/references/dev.md new file mode 100644 index 0000000..3fda3c8 --- /dev/null +++ b/skills/base44-cli/references/dev.md @@ -0,0 +1,41 @@ +# base44 dev + +Start the local development server for the current Base44 project. + +## Syntax + +```bash +npx base44 dev [options] +``` + +## Options + +| Option | Description | Required | +|--------|-------------|----------| +| `-p, --port ` | Port for the development server | No | + +## Examples + +```bash +# Start the dev server on the default port +npx base44 dev + +# Start the dev server on a specific port +npx base44 dev --port 3001 +npx base44 dev -p 3001 +``` + +## Notes + +- Requires authentication +- Reads project configuration from `base44.config.json` +- Loads local functions and entities and serves them via a local proxy +- The server URL is printed on startup (e.g., `http://localhost:`) + +## Related Commands + +| Command | Description | +|---------|-------------| +| `base44 deploy` | Deploy all project resources to Base44 | +| `base44 entities push` | Push local entity definitions to Base44 | +| `base44 functions deploy` | Deploy local functions to Base44 |