en un clic
check-upstream-changes
// Check upstream (supabitapp/supacode) for new changes since the last reviewed baseline.
// Check upstream (supabitapp/supacode) for new changes since the last reviewed baseline.
| name | check-upstream-changes |
| description | Check upstream (supabitapp/supacode) for new changes since the last reviewed baseline. |
Check upstream (supabitapp/supacode) for new changes since the last reviewed baseline.
Follow these steps:
Read doc-onevcat/change-list.md and extract the Upstream Baseline commit hash and date.
Fetch the upstream remote:
git fetch upstream main --quiet
List all commits on upstream/main that are newer than the baseline commit:
git log --oneline <baseline_commit>..upstream/main
If there are no new commits, report "No new upstream changes since <baseline_commit> ()." and stop.
For each new commit (or group of related commits), produce a one-line summary including:
doc-onevcat/change-list.md Old Log for context)Categorize commits into:
Present the briefing in this format:
## Upstream Changes Briefing
Baseline: <hash> (<date>)
Latest upstream: <hash> (<date>)
New commits: <count>
### Needs Attention
- `<hash>` <summary> — <reason>
### Safe to Merge
- `<hash>` <summary>
### Recommended Next Step
<action suggestion>
Do NOT modify any files or run sync. This command is read-only reconnaissance.