origin is a public mirror, and the operator decided on 2026-09-15 that PLAN.md follows the same remote rule as STATE.md: public remote -> local-only. Before this change `git check-ignore -v PLAN.md` exited 1 in voyage, so a PLAN.md written here would have been one `git add` away from the mirror - the exact trap the global rule warns about, in the repo the rule was written about. The pattern is anchored (`/PLAN.md`) because core.ignorecase is true here: a bare `PLAN.md` was measured to also ignore a new `examples/02-new/plan.md` (exit 0), which would silently drop the pipeline's own lowercase plan files. Measured after the change with `git check-ignore -v --no-index`: PLAN.md -> 0, examples/02-new/plan.md -> 1, docs/PLAN.md -> 1; STATE.md still ignored (0). No PLAN.md is created: the destination is the operator's to choose. Suite unchanged at 1041 (1039/0/2). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
59 lines
1.8 KiB
Text
59 lines
1.8 KiB
Text
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Node / test artifacts
|
|
node_modules/
|
|
test-results/
|
|
playwright-report/
|
|
blob-report/
|
|
|
|
# Editor files
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Local configuration / session files
|
|
*.local.*
|
|
|
|
# STATE.md — current state-of-play. LOCAL-ONLY per ~/.claude/CLAUDE.md:
|
|
# origin is open/ (an OFFENTLIG/public mirror) → STATE must NEVER be pushed there.
|
|
# Kept local for continuity only. History scrubbed 2026-06-26 (was wrongly tracked 23 commits).
|
|
STATE.md
|
|
|
|
# PLAN.md — the repo's destination layer. LOCAL-ONLY under the same remote rule as STATE.md
|
|
# (operator decision 2026-09-15): it carries destination, open questions and what NOT to build.
|
|
# Anchored to the root: core.ignorecase=true here, so a bare pattern would also swallow the
|
|
# pipeline's lowercase plan.md files (e.g. a new examples/*/plan.md) without a word.
|
|
/PLAN.md
|
|
|
|
# Local planning docs (briefs, design notes, observations) — never committed.
|
|
# Existing tracked files in docs/ predate this rule; new planning docs stay local.
|
|
docs/ultracontinue-brief.md
|
|
docs/ultracontinue-design-notes.md
|
|
|
|
# Ultraplan project directories — briefs, research, plans, progress all local.
|
|
.claude/projects/
|
|
|
|
# --- session/local state (gitignored) — STATE.md is LOCAL-ONLY (open/ = public), se ~/.claude/CLAUDE.md ---
|
|
REMEMBER.md
|
|
ROADMAP.md
|
|
TODO.md
|
|
NEXT-SESSION-PROMPT*.local.md
|
|
*.local.md
|
|
*.local.json
|
|
*.local.sh
|
|
.DS_Store
|
|
.claude/
|
|
|
|
# Operator working documents dropped into docs/ — never part of the published
|
|
# plugin. `origin` is a PUBLIC mirror, and S83 committed one of these with a
|
|
# broad `git add -A docs`, which needed a history rewrite to undo. Ignoring the
|
|
# type is cheaper than remembering not to stage it.
|
|
docs/*.pdf
|
|
# Page renders of those same documents (SLDC-AI-1_1.png etc). Narrow on purpose:
|
|
# legitimate plugin assets may still be .png under docs/.
|
|
docs/SLDC-AI*.png
|