Skip to content
Closed
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
10 changes: 7 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,19 @@ Use the controlled script with the read-only upstream checkout:
```powershell
.\scripts\sync-upstream.ps1 -Mode check
.\scripts\sync-upstream.ps1 -Mode dry-run
.\scripts\sync-upstream.ps1 -Mode resource
.\scripts\sync-upstream.ps1 -Mode diff
.\scripts\sync-upstream.ps1 -Mode unauthorized-patch
.\scripts\sync-upstream.ps1 -Mode sync
```

`check` fails on missing packages, missing referenced resources, drift from the
pinned revision, or unauthorized local changes to upstream-managed files.
`dry-run` and `diff` do not write. `sync` is allowed only after reviewing the
upstream revision and its diff. Never silently resolve a conflict or overwrite
an unrecorded local patch.
`resource` isolates complete-package and referenced-resource checks;
`unauthorized-patch` isolates managed-file, local-patch-record, and extra-file
boundary checks. `dry-run` and `diff` do not write. `sync` is allowed only after
reviewing the upstream revision and its diff. Never silently resolve a conflict
or overwrite an unrecorded local patch.

## Review, installation, and release

Expand Down
Loading