Set up cloud dev environment + document setup in AGENTS.md - #3
Draft
ernop wants to merge 1 commit into
Draft
Conversation
Co-authored-by: Ernest French <ernestfrench@gmail.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.
What & why
Sets up the Cursor Cloud development environment for MultiImageClient and records the non-obvious learnings for future agents. No product code changes — this PR only adds a
## Cursor Cloud specific instructionssection toAGENTS.md.Environment setup performed (in the VM/snapshot)
dotnet-install.shto/usr/share/dotnetwith a symlink at/usr/bin/dotnet. Ubuntu 24.04 apt ships only .NET 8/10, and Microsoft's Noble feed omits 9.0, so the script install is required.MultiImageClient/settings.json(gitignored, not committed) with the two required fields (LogFilePath,ImageDownloadBaseFolder).dotnet restore MultiImageClient.sln.Verified working
dotnet restore MultiImageClient.slnNU190xwarnings only)dotnet build MultiImageClient.slndotnet test MultiImageClient.Tests/MultiImageClient.Tests.csprojdotnet run --project MultiImageClient/MultiImageClient.csproj -- --ui --ui-no-open127.0.0.1:5960;/api/config+/return 200Hello-world action
All image providers require paid third-party API keys, none of which are provisioned in the cloud VM, so every generator is correctly reported as unavailable and disabled in the UI. As an offline core action I demonstrated the composer's built-in local typo-fix tool: typed a prompt with 4 deliberate misspellings and the app corrected them (
photograpgh→photograph,feild→field,brihgt→bright,daylihgt→daylight) with a change report. A full successful image generation needs at least one provider key added tosettings.json(cheapest:OpenAIApiKey).Services
Primary product = the
MultiImageClientconsole app + its built-in--uiweb UI (bothnet9.0, cross-platform).MultiImageClient.Webisnet9.0-windows(secondary; builds on Linux but cannot run here). The Django gallery and Pythontools/are optional/experimental and out of scope.