- memory/ now lives in the repo and is git-tracked; the harness memory path (~/.claude/.../memory) is a symlink to it so writes still land here - AGENTS.md: document memory-in-repo, always-commit-and-push, operator-driven (no sweep), and the one-directional rule Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
881 B
Markdown
15 lines
881 B
Markdown
---
|
|
name: always-commit-and-push
|
|
description: Operator wants every change to the PO repo committed and pushed automatically
|
|
metadata:
|
|
node_type: memory
|
|
type: feedback
|
|
originSessionId: 7ed8744a-1e31-4832-8cdc-3b726ab41f9a
|
|
---
|
|
|
|
Whenever I make changes in the project-orchestrator repo, always commit AND push them (to `origin main`) without waiting to be asked.
|
|
|
|
**Why:** the operator stated this as a standing rule on 2026-06-14; they don't want to prompt for it each time.
|
|
|
|
**How to apply:** after any edit to this repo, `git add -A && git commit && git push origin main`. Git identity was not configured globally — set locally if needed: `user.email "mfowler.email@protonmail.com"`, `user.name "mfowler"`. Commit messages end with the Co-Authored-By trailer. This applies to the PO's own repo; project repos are driven per their own runbooks. See [[git-identity-local]].
|