Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ aws lambda-microvms create-microvm-image \
--hooks '{"port":9000,"microvmImageHooks":{"ready":"ENABLED","readyTimeoutInSeconds":60},"microvmHooks":{"run":"ENABLED","runTimeoutInSeconds":60}}'
```

To test a CLI off `main`, put a lab version (`YYYY.MM.DD-<sha7>`) in `microvm-image/cursor-agent-version` and rebuild the MicroVM image. Lab builds: [cursor.com/install?channel=lab](https://cursor.com/install?channel=lab), the `agent-cli.yml` GitHub Action on `main`, or `https://downloads.cursor.com/lab/<version>/linux/x64/agent-cli-package.tar.gz`. Leave the file empty for the prod installer.

Then start an agent from [cursor.com/agents](https://cursor.com/agents) against the pool.

## How it works
Expand Down
2 changes: 1 addition & 1 deletion microvm-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN dnf install -y --setopt=install_weak_deps=0 \
$(command -v curl >/dev/null 2>&1 || echo curl) && \
dnf clean all

# Optional: pin a lab/main CLI, e.g. 2026.08.20-f582eb6. Empty = prod installer.
# Optional agent version override. Empty = production installer.
# create-microvm-image zips this directory and may not pass --build-arg;
# set the version in cursor-agent-version instead (ships in the zip).
COPY cursor-agent-version /tmp/cursor-agent-version
Expand Down
7 changes: 3 additions & 4 deletions microvm-image/cursor-agent-version
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Optional Cursor agent-cli lab version (YYYY.MM.DD-<sha7>).
# Leave empty / comments only to use the prod installer:
# Optional agent version override.
# Leave empty / comments only to use the production installer:
# curl -fsSL https://cursor.com/install | bash
# Example: 2026.08.20-f582eb6
#
# This file ships in the create-microvm-image zip (AWS may not pass Docker --build-arg).
# Put the version on its own line, rebuild the MicroVM image, then re-zip/upload.
# Put a version string on its own line, rebuild the MicroVM image, then re-zip/upload.
Loading