From bdfafa374bcaafe55bcd6cede58a42e038da6d14 Mon Sep 17 00:00:00 2001 From: Goal #797 Champion Date: Sun, 22 Mar 2026 10:13:52 +0000 Subject: [PATCH] docs(base44-cli): add visibility field to config.jsonc reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add `visibility` field ("public" | "private" | "workspace") to the base44-cli skill documentation — config example and property table. This corresponds to the CLI change in base44/cli#370. Goal: https://github.com/base44-dev/gremlins/issues/797 --- skills/base44-cli/SKILL.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skills/base44-cli/SKILL.md b/skills/base44-cli/SKILL.md index b5a75ec..1ca06d0 100644 --- a/skills/base44-cli/SKILL.md +++ b/skills/base44-cli/SKILL.md @@ -135,6 +135,7 @@ my-app/ { "name": "My App", // Required: project name "description": "App description", // Optional: project description + "visibility": "private", // Optional: "public" | "private" | "workspace" "entitiesDir": "./entities", // Optional: default "entities" "functionsDir": "./functions", // Optional: default "functions" "agentsDir": "./agents", // Optional: default "agents" @@ -154,6 +155,7 @@ my-app/ |----------|-------------|---------| | `name` | Project name (required) | - | | `description` | Project description | - | +| `visibility` | App visibility: `"public"` (no login required), `"private"` (owner only), `"workspace"` (workspace members only, Business tier) | omitted (no change on deploy) | | `entitiesDir` | Directory for entity schemas | `"entities"` | | `functionsDir` | Directory for backend functions | `"functions"` | | `agentsDir` | Directory for agent configs | `"agents"` |