fix: require non-interactive flags for cloud deploy#13
Merged
Conversation
…eploy The Webflow CLI's `cloud deploy` command is interactive by default, prompting for environment selection, mount path validation, and update checks. This breaks all agent and CI/CD workflows that cannot respond to interactive prompts. Updates the cloud-command skill to: - Always use --no-input --mount --skip-mount-path-check --skip-update-check - Use <MOUNT_PATH> placeholder instead of hardcoded /app - Frame non-interactive requirements for all agents, not just one tool - Fix all examples, guidelines, and quick reference to match Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The Webflow CLI does not persist the mount path to webflow.json after init or deploy, so agents cannot reliably determine it from local files. This caused a deployment issue where `/app` was assumed but the project used a different path. The skill now explicitly instructs agents to check webflow.json first, then ask the user if not found — never guessing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Collaborator
|
Looks good! Can you also update version in plugin.json of webflow-cli-skills |
Reflects the non-interactive cloud deploy flag changes in this PR. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
webflow cloud deploycommand is interactive by default (environment selection, mount path prompts, update checks), which breaks all agent and CI/CD workflows--no-input,--mount <MOUNT_PATH>,--skip-mount-path-check, and--skip-update-checkas required flags throughout the cloud-command skill/appmount paths with<MOUNT_PATH>placeholder so agents extract the correct value from project configTest plan
<MOUNT_PATH>prompts the agent to determine the correct path🤖 Generated with Claude Code