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.
- Check provisioned agent config:
- If
CLAUDE.md or AGENTS.md contains <!-- provision-agentic-config vX.Y -->, extract the version.
- Read the canonical
provision-agentic-config skill from the first existing path in this order:
~/.codex/skills/provision-agentic-config/SKILL.md
~/.claude/skills/provision-agentic-config/SKILL.md
global/codex/provision-agentic-config/SKILL.md in the current repo, when present
global/claude/provision-agentic-config/SKILL.md in the current repo, when present
- Extract the
version: field from the canonical skill's YAML frontmatter.
- Extract the canonical provisioned blocks from the same skill:
CLAUDE.md: the fenced block under Required Claude Block or the section that says "The Claude block to insert into ./CLAUDE.md".
AGENTS.md: the fenced block under Required AGENTS Block or the section that says "The AGENTS block to insert into ./AGENTS.md".
- Compare each existing project file against its corresponding canonical block after normalizing line endings and trimming only leading/trailing whitespace around the block. Do not ignore changed bullets, headings, command examples, or policy text.
- If the installed skill version is newer than the provisioned version in either file, warn:
⚠ CLAUDE.md provisioned with vX.Y but provision-agentic-config is at vX.Y — consider re-running $provision-agentic-config
- If the version comment is missing from
CLAUDE.md or AGENTS.md, note: ℹ No provision version found in CLAUDE.md/AGENTS.md — run $provision-agentic-config to add version tracking
- If a project file has the current version comment but the provisioned block content differs from the canonical block, warn:
⚠ CLAUDE.md provisioned block differs from the canonical provision-agentic-config vX.Y block — re-run $provision-agentic-config
- If a canonical block cannot be extracted, fall back to the version-only check and note:
ℹ Could not extract canonical provision-agentic-config block; checked version comment only
- If none of the canonical skill files exists, skip this check silently.
- 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
- Agent config drift — provisioning version and canonical block match/drift status for
CLAUDE.md and AGENTS.md, if checked
- 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-43description: 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. Check provisioned agent config:
29 - If `CLAUDE.md` or `AGENTS.md` contains `<!-- provision-agentic-config vX.Y -->`, extract the version.
30 - Read the canonical `provision-agentic-config` skill from the first existing path in this order:
31 1. `~/.codex/skills/provision-agentic-config/SKILL.md`
32 2. `~/.claude/skills/provision-agentic-config/SKILL.md`
33 3. `global/codex/provision-agentic-config/SKILL.md` in the current repo, when present
34 4. `global/claude/provision-agentic-config/SKILL.md` in the current repo, when present
35 - Extract the `version:` field from the canonical skill's YAML frontmatter.
36 - Extract the canonical provisioned blocks from the same skill:
37 - `CLAUDE.md`: the fenced block under `Required Claude Block` or the section that says "The Claude block to insert into `./CLAUDE.md`".
38 - `AGENTS.md`: the fenced block under `Required AGENTS Block` or the section that says "The AGENTS block to insert into `./AGENTS.md`".
39 - Compare each existing project file against its corresponding canonical block after normalizing line endings and trimming only leading/trailing whitespace around the block. Do not ignore changed bullets, headings, command examples, or policy text.
40 - If the installed skill version is newer than the provisioned version in either file, warn: `⚠ CLAUDE.md provisioned with vX.Y but provision-agentic-config is at vX.Y — consider re-running $provision-agentic-config`
41 - If the version comment is missing from `CLAUDE.md` or `AGENTS.md`, note: `ℹ No provision version found in CLAUDE.md/AGENTS.md — run $provision-agentic-config to add version tracking`
42 - If a project file has the current version comment but the provisioned block content differs from the canonical block, warn: `⚠ CLAUDE.md provisioned block differs from the canonical provision-agentic-config vX.Y block — re-run $provision-agentic-config`
43 - If a canonical block cannot be extracted, fall back to the version-only check and note: `ℹ Could not extract canonical provision-agentic-config block; checked version comment only`
44 - If none of the canonical skill files exists, skip this check silently.
455. Report status:
46 - Branch name
47 - Commits pulled (if any) — show short log of new commits
48 - Whether stashed changes were re-applied
49 - Any conflicts that need manual resolution
50 - Current `git status`
51 - **Agent config drift** — provisioning version and canonical block match/drift status for `CLAUDE.md` and `AGENTS.md`, if checked
52 - **Outstanding work** — summary from step 3 (next step, current phase, remaining work, pending manual tasks) or "No active plan"
53 - **Advisory tasks** — pending record/recurring counts, if those files exist
546. Post-sync actions:
55 a) Check if `sync.md` exists at the project root.
56 b) **If `sync.md` exists** — parse and execute it:
57 - Read `sync.md` and identify sections by H2 headings.
58 - **Dependencies** (aliases: "Deps", "Dependency Management"): Execute shell commands in fenced code blocks. Report output briefly.
59 - **Conflict Resolution** (aliases: "Conflicts"): If the pull introduced merge conflicts (from step 2), apply the guidance in this section. If no conflicts, skip silently.
60 - **Custom** (aliases: "Project-Specific", "Scripts", "Setup"): Execute shell commands in fenced code blocks in order. Report output briefly.
61 - **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.
62 - Unrecognised headings: skip with a note.
63 - Report a summary of all post-sync actions taken.
64 c) **If `sync.md` does not exist** — suggest creating one:
65 - Analyse the project to detect: package manager (look for lockfiles), common scripts (package.json, Makefile, Justfile), config templates (.env.example, docker-compose.yml).
66 - Present a suggested `sync.md` following the format below.
67 - Ask: "Would you like me to create this `sync.md`?"
68 - **Only create the file if the user approves.**
69
70## sync.md format
71
72The `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.
73
74```markdown
75# Post-Sync Actions
76
77## Dependencies
78
79```sh
80npm install
81```
82
83## Conflict Resolution
84
85- Always accept theirs for `package-lock.json`
86
87## Custom
88
89```sh
90npm run codegen
91```
92
93## Notifications
94
95- `.env.example` — check for new environment variables
96- `CLAUDE.md` — review if project conventions were updated
97```
98
99## Constraints
100
101- Do not force-push or rewrite history.
102- 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.
103- If stash pop fails due to conflicts, leave the stash intact and report it.
104- Post-sync commands from `sync.md` run in the project root directory.
105- If any post-sync command fails, report the error and continue with remaining actions.
106- Never auto-create `sync.md` without explicit user approval.
107- Do not execute commented-out sections (`<!-- ... -->`).
108
109
110## Default Shipping Contract
111
112Follow the shared shipping contract convention in CLAUDE.md.