Skip to content

Commit 1eaf0ae

Browse files
authored
chore(devenv): Remove --frozen flag from dotagents install (#109300)
The lockfile is no longer the source of truth for agent skills, so the `--frozen` flag on `dotagents install` during `devenv sync` is no longer needed. This allows the install to resolve and update dependencies normally. Agent transcript: https://claudescope.sentry.dev/share/YMQ0fBjCNz-2mR1J4Gdq4hn4F6j4rYZXWwuColmf09E
1 parent 652324b commit 1eaf0ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devenv/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def main(context: dict[str, str]) -> int:
226226
repo,
227227
reporoot,
228228
venv_dir,
229-
(("agent skills", ("pnpm", "dlx", "@sentry/dotagents", "install", "--frozen"), {}),),
229+
(("agent skills", ("pnpm", "dlx", "@sentry/dotagents", "install"), {}),),
230230
verbose,
231231
):
232232
print("⚠️ agent skills failed to install (non-fatal)")

0 commit comments

Comments
 (0)