diff --git a/Taskfile.yml b/Taskfile.yml index 7caf336..02e161d 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -17,8 +17,6 @@ tasks: cmds: [bash scripts/context-sync.sh claude] context:sync:agents: cmds: [bash scripts/context-sync.sh agents] - context:sync:cursor: - cmds: [bash scripts/context-sync.sh cursor] # ── Development ──────────────────────────────────────────────────────────── @@ -90,12 +88,12 @@ tasks: cmds: - task: context:sync - cmd: | - drift=$(git status --porcelain -- AGENTS.md CLAUDE.md .cursorrules .aider.conventions.md .context/system-prompt.txt 2>/dev/null) + drift=$(git status --porcelain -- AGENTS.md CLAUDE.md .context/system-prompt.txt 2>/dev/null) if [ -n "$drift" ]; then echo "ERROR: derived adapters drifted from canonical context." >&2 echo "$drift" >&2 echo "" >&2 - echo "Run: git add AGENTS.md CLAUDE.md .cursorrules .aider.conventions.md .context/system-prompt.txt" >&2 + echo "Run: git add AGENTS.md CLAUDE.md .context/system-prompt.txt" >&2 echo " git commit -m 'chore: re-sync context adapters'" >&2 exit 1 fi