Skip to content

Update microfeed

Update from the repository clone connected to the intended site.

Open the clone in a local coding agent and use a prompt that names the saved Worker when you know it:

Connect this repository to the microfeed Worker <worker-name>, update microfeed to the latest version, deploy it, and verify the site.

The agent should inspect local changes, fetch the trusted upstream repository, connect only if needed, deploy through yarn manage, and run a status check. Complete any Git or Cloudflare browser handoffs it requests.

First protect any local work. Then fetch and inspect upstream changes using your normal Git workflow. Once the clone contains the version you intend to run:

Terminal window
yarn install --immutable
yarn manage deploy
yarn manage status

deploy applies database migrations, runs project checks, builds the Worker, tags the deployed version with the source commit, deploys, and verifies it.

Do not initialize over an existing Worker. Connect first:

Terminal window
yarn manage connect --worker <worker-name> --instance <local-name>

The connect operation is read-only in Cloudflare: it verifies a compatible microfeed Worker and saves local connection state.

If deployment stops, read the final error before retrying. The CLI keeps saved state for resumable resource changes. If the site still serves the previous version, run yarn manage status and resolve the reported account, resource, or migration problem before another deploy.