Can we access your project?
Current Behavior
I’m experiencing a persistent issue with the FlutterFlow AI/SDK on an existing project. At this point, the evidence suggests the problem is specifically with the remote validation step, rather than project fetching, local code, or asset uploads.
Environment / current state
Existing FlutterFlow project
Branch: main
Windows x64
FlutterFlow AI/SDK: 0.0.40, build 34200d24
Issue also occurred on the previous SDK build before upgrading
FlutterFlow Web and Desktop can access the project
Project assets are visible in FlutterFlow Web
Local Dart analyzer is clean
Local test suite is passing
What works
flutterflow ai refresh-context works successfully.
Recent successful refresh-context runs have completed in approximately:
30.4 seconds
44.7 seconds
56.8 seconds
The command successfully performs the project fetch/code generation/export.
These commands also complete successfully:
flutterflow ai doctor
flutterflow ai status
flutterflow ai context-check
flutterflow ai branch list
The workspace/project binding resolves correctly, and the CLI reports the target as:
Resolved target mode: existing
What does not work
flutterflow ai validate consistently times out.
The failures have occurred across multiple days and SDK versions:
~142 seconds → timeout
143.3 seconds → timeout
142.3 seconds → timeout
147.2 seconds → timeout
148.0 seconds → timeout
Every failure ends with:
Error: Request timed out. Please try again.
The timing is extremely consistent.
We also tested increasing the client timeout substantially. Instead of completing, validation eventually failed after approximately 625.7 seconds.
This appears to indicate that the remote validation operation is hanging rather than simply requiring more time.
Importantly, the failure does not appear to occur during getProject anymore.
Immediately before validation, refresh-context can successfully perform a full project fetch and codegen export. During validation, the CLI also gets far enough to print the workspace binding and:
Resolved target mode: existing
before hanging.
Assets / project synchronization
We initially suspected that project assets were failing to sync.
However, after opening the same project in the FlutterFlow web application, the uploaded assets are present there with their expected filenames.
FlutterFlow Web recognizes the assets and reports:
This asset is not directly used in this project.
Therefore, the assets appear to exist server-side. This does not appear to be a Desktop-only/local-cache upload problem.
Local project health
The local project itself currently appears healthy:
292 tests passing
dart analyze clean
There are no known analyzer errors preventing compilation.
The same validation timeout can be reproduced without making additional application changes.
Impact
This is currently blocking us from safely validating and pushing staged project updates.
Local development/testing can continue, and refresh-context can retrieve the project, but we cannot complete the normal FlutterFlow AI validation workflow.
We have intentionally stopped repeatedly retrying validation because the behavior has now been reproduced consistently across several days.
Questions for FlutterFlow
Could someone from the FlutterFlow team please help determine:
What remote operation occurs after Resolved target mode: existing during flutterflow ai validate?
Is there a known issue where remote validation hangs while refresh-context and project fetching continue to work normally?
Are there server-side validation logs associated with the project/workspace that FlutterFlow Support can inspect?
Is there another supported diagnostic command or log we can provide that would identify exactly where the remote validation request is hanging?
Is there a safe workaround that would allow us to resume validating/pushing changes without risking the existing project?
I have retained the complete diagnostic output from doctor, context-check, status, refresh-context, and the failed validation attempts and can provide those privately to FlutterFlow Support if needed.
Expected Behavior
I expected flutterflow ai validate to complete successfully and either confirm that the project is valid or return specific validation errors that can be corrected. After successful validation, I expected to be able to safely push the completed changes to my existing FlutterFlow project.
Steps to Reproduce
Open the existing FlutterFlow project in the FlutterFlow AI/SDK workspace on Windows x64.
Confirm the workspace is connected to the correct existing project and branch.
Run:
flutterflow ai doctor
This completes successfully.
Run:
flutterflow ai context-check
This completes successfully.
Run:
flutterflow ai status
This completes successfully.
Run:
flutterflow ai refresh-context
This also completes successfully. The project fetch, context refresh, and code generation/export finish normally, usually within approximately 30–60 seconds.
Without changing the project or workspace configuration, immediately run:
flutterflow ai validate
Validation begins normally and the CLI resolves the workspace/project as an existing target.
The CLI reaches:
Resolved target mode: existing
and then stops progressing.
After approximately 142–148 seconds, the command fails with:
Error: Request timed out. Please try again.
Repeat flutterflow ai refresh-context .
refresh-context succeeds again, confirming that the project can still be fetched from FlutterFlow.
Run flutterflow ai validate again.
The same timeout occurs.
This behavior has been reproduced multiple times across several days.
The problem also occurred before and after upgrading the FlutterFlow AI/SDK to version 0.0.40, so upgrading the SDK did not resolve the issue.
We also tested validation with the client timeout increased to approximately 10 minutes. Instead of completing, the validation request continued to hang and eventually failed after approximately 625 seconds.
The local project does not currently show corresponding code-health failures:
Full local test suite passes
dart analyze reports no errors
FlutterFlow Web and FlutterFlow Desktop are both able to access the project. Uploaded project assets are also visible in FlutterFlow Web, confirming that the assets exist server-side.
Expected result:
flutterflow ai validate should complete and either return a successful validation result or report specific project validation errors.
Actual result:
flutterflow ai validate hangs after resolving the project as an existing target and eventually fails with:
Error: Request timed out. Please try again.
while refresh-context, doctor, context-check, and status continue to work normally.
The issue is reproducible and currently blocks the normal validate/push workflow.
Reproducible from Blank
Bug Report Code (Required)
IT4oi87huI12odtH18/+a/lahSQWQnohR+cK0MpOGCwdCJz0P+9/dcnRQEhtcM+0YH9DKEWGmj4E+e/IiuD9MvZfITiCRoRh+KlUZjvybEy/aoSRC5OWSHwnI8RQGmKi0LWz2hYmNth2W3xiwF6MBd+8cDbsNrX7Zwh9f6PHaOI=
Visual documentation
Attached screenshots demonstrate that refresh-context successfully connects to and retrieves the existing project, while flutterflow ai validate subsequently hangs and returns a request timeout. The project also remains accessible normally through FlutterFlow. This issue has been reproduced consistently across multiple attempts and persisted after updating the FlutterFlow AI/SDK.
That should give Support exactly the visual evidence they need.
Environment
FlutterFlow AI/SDK version: 0.0.40, build 34200d24
Platform: FlutterFlow AI/SDK / CLI with FlutterFlow Web and Desktop
Operating system: Windows x64
Validation environment: Remote validation — no local validator is published for Windows x64
Project type: Existing FlutterFlow project, main branch
Browser: Google Chrome on Windows
Additional context: The issue occurred both before and after upgrading the FlutterFlow AI/SDK. refresh-context, doctor, status, and context-check complete successfully, while validate consistently times out during remote validation.
Additional Information
This issue is currently blocking development and preventing me from safely moving my app toward beta testing and launch.
I am using FlutterFlow AI to make and validate updates to an existing FlutterFlow project. The local code is healthy, the test suite passes, the analyzer is clean, and refresh-context successfully retrieves the project. However, remote validate consistently times out, which means I cannot safely validate or push the work that has been completed.
This has now persisted for several days and across an SDK upgrade. I have multiple completed updates waiting to be validated and pushed, but I do not want to risk the production project by bypassing the normal validation process.
My goal is simply to restore the normal FlutterFlow AI workflow so I can:
validate the project successfully
push the completed changes
continue development
complete QA and begin beta testing
This is now a significant development blocker rather than a minor inconvenience. I would greatly appreciate someone reviewing the server-side validation logs or project state to determine why remote validation is hanging while the other project/CLI operations continue to work normally.
Can we access your project?
Current Behavior
I’m experiencing a persistent issue with the FlutterFlow AI/SDK on an existing project. At this point, the evidence suggests the problem is specifically with the remote validation step, rather than project fetching, local code, or asset uploads.
Environment / current state
Existing FlutterFlow project
Branch: main
Windows x64
FlutterFlow AI/SDK: 0.0.40, build 34200d24
Issue also occurred on the previous SDK build before upgrading
FlutterFlow Web and Desktop can access the project
Project assets are visible in FlutterFlow Web
Local Dart analyzer is clean
Local test suite is passing
What works
flutterflow ai refresh-context works successfully.
Recent successful refresh-context runs have completed in approximately:
30.4 seconds
44.7 seconds
56.8 seconds
The command successfully performs the project fetch/code generation/export.
These commands also complete successfully:
flutterflow ai doctor
flutterflow ai status
flutterflow ai context-check
flutterflow ai branch list
The workspace/project binding resolves correctly, and the CLI reports the target as:
Resolved target mode: existing
What does not work
flutterflow ai validate consistently times out.
The failures have occurred across multiple days and SDK versions:
~142 seconds → timeout
143.3 seconds → timeout
142.3 seconds → timeout
147.2 seconds → timeout
148.0 seconds → timeout
Every failure ends with:
Error: Request timed out. Please try again.
The timing is extremely consistent.
We also tested increasing the client timeout substantially. Instead of completing, validation eventually failed after approximately 625.7 seconds.
This appears to indicate that the remote validation operation is hanging rather than simply requiring more time.
Importantly, the failure does not appear to occur during getProject anymore.
Immediately before validation, refresh-context can successfully perform a full project fetch and codegen export. During validation, the CLI also gets far enough to print the workspace binding and:
Resolved target mode: existing
before hanging.
Assets / project synchronization
We initially suspected that project assets were failing to sync.
However, after opening the same project in the FlutterFlow web application, the uploaded assets are present there with their expected filenames.
FlutterFlow Web recognizes the assets and reports:
This asset is not directly used in this project.
Therefore, the assets appear to exist server-side. This does not appear to be a Desktop-only/local-cache upload problem.
Local project health
The local project itself currently appears healthy:
292 tests passing
dart analyze clean
There are no known analyzer errors preventing compilation.
The same validation timeout can be reproduced without making additional application changes.
Impact
This is currently blocking us from safely validating and pushing staged project updates.
Local development/testing can continue, and refresh-context can retrieve the project, but we cannot complete the normal FlutterFlow AI validation workflow.
We have intentionally stopped repeatedly retrying validation because the behavior has now been reproduced consistently across several days.
Questions for FlutterFlow
Could someone from the FlutterFlow team please help determine:
What remote operation occurs after Resolved target mode: existing during flutterflow ai validate?
Is there a known issue where remote validation hangs while refresh-context and project fetching continue to work normally?
Are there server-side validation logs associated with the project/workspace that FlutterFlow Support can inspect?
Is there another supported diagnostic command or log we can provide that would identify exactly where the remote validation request is hanging?
Is there a safe workaround that would allow us to resume validating/pushing changes without risking the existing project?
I have retained the complete diagnostic output from doctor, context-check, status, refresh-context, and the failed validation attempts and can provide those privately to FlutterFlow Support if needed.
Expected Behavior
I expected flutterflow ai validate to complete successfully and either confirm that the project is valid or return specific validation errors that can be corrected. After successful validation, I expected to be able to safely push the completed changes to my existing FlutterFlow project.
Steps to Reproduce
Open the existing FlutterFlow project in the FlutterFlow AI/SDK workspace on Windows x64.
Confirm the workspace is connected to the correct existing project and branch.
Run:
flutterflow ai doctor
This completes successfully.
Run:
flutterflow ai context-check
This completes successfully.
Run:
flutterflow ai status
This completes successfully.
Run:
flutterflow ai refresh-context
This also completes successfully. The project fetch, context refresh, and code generation/export finish normally, usually within approximately 30–60 seconds.
Without changing the project or workspace configuration, immediately run:
flutterflow ai validate
Validation begins normally and the CLI resolves the workspace/project as an existing target.
The CLI reaches:
Resolved target mode: existing
and then stops progressing.
After approximately 142–148 seconds, the command fails with:
Error: Request timed out. Please try again.
Repeat flutterflow ai refresh-context .
refresh-context succeeds again, confirming that the project can still be fetched from FlutterFlow.
Run flutterflow ai validate again.
The same timeout occurs.
This behavior has been reproduced multiple times across several days.
The problem also occurred before and after upgrading the FlutterFlow AI/SDK to version 0.0.40, so upgrading the SDK did not resolve the issue.
We also tested validation with the client timeout increased to approximately 10 minutes. Instead of completing, the validation request continued to hang and eventually failed after approximately 625 seconds.
The local project does not currently show corresponding code-health failures:
Full local test suite passes
dart analyze reports no errors
FlutterFlow Web and FlutterFlow Desktop are both able to access the project. Uploaded project assets are also visible in FlutterFlow Web, confirming that the assets exist server-side.
Expected result:
flutterflow ai validate should complete and either return a successful validation result or report specific project validation errors.
Actual result:
flutterflow ai validate hangs after resolving the project as an existing target and eventually fails with:
Error: Request timed out. Please try again.
while refresh-context, doctor, context-check, and status continue to work normally.
The issue is reproducible and currently blocks the normal validate/push workflow.
Reproducible from Blank
Bug Report Code (Required)
IT4oi87huI12odtH18/+a/lahSQWQnohR+cK0MpOGCwdCJz0P+9/dcnRQEhtcM+0YH9DKEWGmj4E+e/IiuD9MvZfITiCRoRh+KlUZjvybEy/aoSRC5OWSHwnI8RQGmKi0LWz2hYmNth2W3xiwF6MBd+8cDbsNrX7Zwh9f6PHaOI=
Visual documentation
Attached screenshots demonstrate that refresh-context successfully connects to and retrieves the existing project, while flutterflow ai validate subsequently hangs and returns a request timeout. The project also remains accessible normally through FlutterFlow. This issue has been reproduced consistently across multiple attempts and persisted after updating the FlutterFlow AI/SDK.
That should give Support exactly the visual evidence they need.
Environment
Additional Information
This issue is currently blocking development and preventing me from safely moving my app toward beta testing and launch.
I am using FlutterFlow AI to make and validate updates to an existing FlutterFlow project. The local code is healthy, the test suite passes, the analyzer is clean, and refresh-context successfully retrieves the project. However, remote validate consistently times out, which means I cannot safely validate or push the work that has been completed.
This has now persisted for several days and across an SDK upgrade. I have multiple completed updates waiting to be validated and pushed, but I do not want to risk the production project by bypassing the normal validation process.
My goal is simply to restore the normal FlutterFlow AI workflow so I can:
validate the project successfully
push the completed changes
continue development
complete QA and begin beta testing
This is now a significant development blocker rather than a minor inconvenience. I would greatly appreciate someone reviewing the server-side validation logs or project state to determine why remote validation is hanging while the other project/CLI operations continue to work normally.