Sync
Invoke as $sync.
Pull the latest changes from the remote repository and report status.
Workflow
- Check current state:
- Run
git status to check for uncommitted changes.
- If there are uncommitted changes, stash them first, pull, then pop the stash. Warn the user about the stash.
- Pull from remote:
- Run
git pull --rebase origin <current-branch>.
- If rebase conflicts occur, abort the rebase, try
git pull --no-rebase instead, and report any merge conflicts for the user to resolve.
- Check for outstanding work:
- Check if
tasks/roadmap.md exists for the full plan, and tasks/todo.md for the current phase.
- If
tasks/todo.md exists, read it and look for unchecked items (- [ ]).
- If there are incomplete items, summarise: which phase is current, what the next step is, and how many steps/phases remain.
- If
tasks/manual-todo.md exists, count unchecked manual tasks and include in the summary.
- If
tasks/record-todo.md or tasks/recurring-todo.md exists, count unchecked advisory items and include those counts separately. Do not treat them as active plan steps.
- If all items are checked, report that the plan is complete.
- If neither file exists, note that there is no active plan.
- Report status:
- Branch name
- Commits pulled (if any) — show short log of new commits
- Whether stashed changes were re-applied
- Any conflicts that need manual resolution
- Current
git status
- Outstanding work — summary from step 3 (next step, current phase, remaining work, pending manual tasks) or "No active plan"
- Advisory tasks — pending record/recurring counts, if those files exist
- Post-sync actions:
a) Check if
sync.md exists at the project root.
b) If sync.md exists — parse and execute it:
- Read
sync.md and identify sections by H2 headings.
- Dependencies (aliases: "Deps", "Dependency Management"): Execute shell commands in fenced code blocks. Report output briefly.
- Conflict Resolution (aliases: "Conflicts"): If the pull introduced merge conflicts (from step 2), apply the guidance in this section. If no conflicts, skip silently.
- Custom (aliases: "Project-Specific", "Scripts", "Setup"): Execute shell commands in fenced code blocks in order. Report output briefly.
- Notifications (aliases: "Awareness", "Alerts", "Watch"): For each bullet, check if the mentioned file/directory was modified in pulled commits (
git diff --name-only against pre-pull HEAD). If any match, print a prominent alert.
- Unrecognised headings: skip with a note.
- Report a summary of all post-sync actions taken.
c) If
sync.md does not exist — suggest creating one:
- Analyse the project to detect: package manager (look for lockfiles), common scripts (package.json, Makefile, Justfile), config templates (.env.example, docker-compose.yml).
- Present a suggested
sync.md following the format below.
- Ask: "Would you like me to create this
sync.md?"
- Only create the file if the user approves.
sync.md format
The sync.md file lives at the project root. H2 sections are categories. Shell commands go in fenced code blocks; prose guidance goes in bullet points.
# Post-Sync Actions
## Dependencies
```sh
npm install
Conflict Resolution
- Always accept theirs for
package-lock.json
Custom
npm run codegen
Notifications
.env.example — check for new environment variables
CLAUDE.md — review if project conventions were updated
## Constraints
- Do not force-push or rewrite history.
- Do not auto-resolve merge conflicts — report them and let the user decide. However, if `sync.md` has a Conflict Resolution section, follow its guidance for the specific files/patterns it covers.
- If stash pop fails due to conflicts, leave the stash intact and report it.
- Post-sync commands from `sync.md` run in the project root directory.
- If any post-sync command fails, report the error and continue with remaining actions.
- Never auto-create `sync.md` without explicit user approval.
- Do not execute commented-out sections (`<!-- ... -->`).
## Default Shipping Contract
Follow the shared shipping contract convention in CLAUDE.md.
1---2name: sync-23description: Pull latest changes from remote and report status4---5
6# Sync
7
8Invoke as `$sync`.
9
10Pull the latest changes from the remote repository and report status.
11
12## Workflow
13
141. Check current state:
15 - Run `git status` to check for uncommitted changes.
16 - If there are uncommitted changes, stash them first, pull, then pop the stash. Warn the user about the stash.
172. Pull from remote:
18 - Run `git pull --rebase origin <current-branch>`.
19 - If rebase conflicts occur, abort the rebase, try `git pull --no-rebase` instead, and report any merge conflicts for the user to resolve.
203. Check for outstanding work:
21 - Check if `tasks/roadmap.md` exists for the full plan, and `tasks/todo.md` for the current phase.
22 - If `tasks/todo.md` exists, read it and look for unchecked items (`- [ ]`).
23 - If there are incomplete items, summarise: which phase is current, what the next step is, and how many steps/phases remain.
24 - If `tasks/manual-todo.md` exists, count unchecked manual tasks and include in the summary.
25 - If `tasks/record-todo.md` or `tasks/recurring-todo.md` exists, count unchecked advisory items and include those counts separately. Do not treat them as active plan steps.
26 - If all items are checked, report that the plan is complete.
27 - If neither file exists, note that there is no active plan.
284. Report status:
29 - Branch name
30 - Commits pulled (if any) — show short log of new commits
31 - Whether stashed changes were re-applied
32 - Any conflicts that need manual resolution
33 - Current `git status`
34 - **Outstanding work** — summary from step 3 (next step, current phase, remaining work, pending manual tasks) or "No active plan"
35 - **Advisory tasks** — pending record/recurring counts, if those files exist
365. Post-sync actions:
37 a) Check if `sync.md` exists at the project root.
38 b) **If `sync.md` exists** — parse and execute it:
39 - Read `sync.md` and identify sections by H2 headings.
40 - **Dependencies** (aliases: "Deps", "Dependency Management"): Execute shell commands in fenced code blocks. Report output briefly.
41 - **Conflict Resolution** (aliases: "Conflicts"): If the pull introduced merge conflicts (from step 2), apply the guidance in this section. If no conflicts, skip silently.
42 - **Custom** (aliases: "Project-Specific", "Scripts", "Setup"): Execute shell commands in fenced code blocks in order. Report output briefly.
43 - **Notifications** (aliases: "Awareness", "Alerts", "Watch"): For each bullet, check if the mentioned file/directory was modified in pulled commits (`git diff --name-only` against pre-pull HEAD). If any match, print a prominent alert.
44 - Unrecognised headings: skip with a note.
45 - Report a summary of all post-sync actions taken.
46 c) **If `sync.md` does not exist** — suggest creating one:
47 - Analyse the project to detect: package manager (look for lockfiles), common scripts (package.json, Makefile, Justfile), config templates (.env.example, docker-compose.yml).
48 - Present a suggested `sync.md` following the format below.
49 - Ask: "Would you like me to create this `sync.md`?"
50 - **Only create the file if the user approves.**
51
52## sync.md format
53
54The `sync.md` file lives at the project root. H2 sections are categories. Shell commands go in fenced code blocks; prose guidance goes in bullet points.
55
56```markdown
57# Post-Sync Actions
58
59## Dependencies
60
61```sh
62npm install
63```
64
65## Conflict Resolution
66
67- Always accept theirs for `package-lock.json`
68
69## Custom
70
71```sh
72npm run codegen
73```
74
75## Notifications
76
77- `.env.example` — check for new environment variables
78- `CLAUDE.md` — review if project conventions were updated
79```
80
81## Constraints
82
83- Do not force-push or rewrite history.
84- Do not auto-resolve merge conflicts — report them and let the user decide. However, if `sync.md` has a Conflict Resolution section, follow its guidance for the specific files/patterns it covers.
85- If stash pop fails due to conflicts, leave the stash intact and report it.
86- Post-sync commands from `sync.md` run in the project root directory.
87- If any post-sync command fails, report the error and continue with remaining actions.
88- Never auto-create `sync.md` without explicit user approval.
89- Do not execute commented-out sections (`<!-- ... -->`).
90
91
92## Default Shipping Contract
93
94Follow the shared shipping contract convention in CLAUDE.md.