feat(skills): document webflow apps commands#37
Draft
agustinchiarotto wants to merge 2 commits into
Draft
Conversation
Document the canonical `webflow apps` namespace in the Webflow Cloud skill and refresh stale `cloud`-namespace content. - Add a "Managing apps" section covering apps list/get/domains, environments list, deployments list/get (with the status enum + polling note), logs build/runtime, env-vars list/set/delete/import, and update/delete — each with a --json example, --fields defaults, the appId/envId resolver precedence, and the --no-input missingFlag contract. Read commands derive the workspace server-side (no --workspace-id). - Present `apps init`/`apps deploy` and `--app-name`/`--app-id` as canonical; mark `cloud init`/`deploy`/`create` and `--project-name`/`--project-id` as deprecated aliases. - Switch detection/config to `cloud.app_id` (legacy `cloud.project_id` still read as a fallback) and document env vars + the CLD-1960 resolver. - Correct the scaffold ref note (Astro v2 + astro7 betaRef, Next.js v1). Co-authored-by: Cursor <cursoragent@cursor.com>
- Simplify the scaffold-fetch note to avoid exposing internal versioning/beta roadmap details publicly. - Remove the "standalone" wording in favor of the existing "project app" term. Co-authored-by: Cursor <cursoragent@cursor.com>
jallegretti-webflow
approved these changes
Jul 15, 2026
jallegretti-webflow
left a comment
Contributor
There was a problem hiding this comment.
LGTM, all mentions of standalone, beta and @next are removed as this will be released once CLI hits GA 👍
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Documents the canonical
webflow appsnamespace in the Webflow Cloud CLI skill (plugins/webflow-skills/skills/webflow-cloud-command/SKILL.md) and refreshes stalecloud-namespace content. Command surface mirrorsapps.ts/registerAppCommands.tsonwebflow-climain.apps list/get/domains,environments list,deployments list/get(with thestarting|building|deploying|success|failed|canceled|unstagedstatus enum,deploying= build-done/deploy-running, pollable-but-no---watch),logs build/runtime(--since/--q/--limit/--cursor, no--level),env-vars list/set/delete/import, andupdate/delete. Each has a--jsonexample,--fieldsdefaults, the appId/envId resolver precedence, and the--no-inputmachine-readablemissingFlagcontract. Read commands derive the workspace server-side (no--workspace-id).apps init/apps deployand--app-name/--app-idpresented as canonical;cloud init/deploy/createand--project-name/--project-idmarked as deprecated (but working) aliases.cloud.app_id(legacycloud.project_idstill read as fallback), env vars, and the CLD-1960 resolver precedence table.v2+astro7betaRef, Next.jsv1).These
appscommands only reach stable@latestonce the beta gate (if (isBetaBuild()) initApps(program)incli/webflow.ts) is removed. Hold this PR until that gate removal / prod release lands.Notes for reviewers
apps update/apps deleteare documented as stable, but the source keeps them behind a second, independentisBetaBuild()gate insideapps.tsthat CLD-2201 does not remove. As written, the docs describe two commands that won't exist in@latestuntil they're separately promoted. Flagging explicitly — may need a follow-up (either gate them in the docs or promote the commands).WEBFLOW_APP_ENVIRONMENT_ID(the actual name inresolveResourceId.ts).cloud listis documented as the scaffold-template lister (distinct fromapps list), since the code keepscreate/listonly under thecloudnamespace.Test plan
name:/description:present)webflow-climainat release timeapps update/apps deletegating decision before un-draftingMade with Cursor