Files
pxpipe/.gitignore
T
Steven Chong f14cbde8f6 chore: gitignore agent-collaboration scratch (CLAUDE.md, HANDOFF.md, etc.)
Per-session AI-assistant memory is local-only — useful for context
continuity across sessions but never appropriate to ship to the public
repo. CLAUDE.md and HANDOFF.md (which were previously tracked) have
been purged from git history via filter-repo in the same operation
that introduced this gitignore rule.

If you cloned before this commit, your existing CLAUDE.md / HANDOFF.md
will continue to live in your working tree but won't show in git
status, which is the intended steady state.
2026-05-21 12:52:19 -04:00

43 lines
1.0 KiB
Plaintext

# Node / TS
node_modules/
dist/
build/
*.log
# pnpm is the package manager — npm's lockfile is not the source of truth
package-lock.json
# Un-ignore pnpm-lock.yaml (global gitignore excludes it; this repo tracks it
# as the source of truth for reproducible installs + supply-chain provenance)
!pnpm-lock.yaml
# Cloudflare Workers
.wrangler/
.dev.vars
# OS
.DS_Store
# Python (defensive — no Python in this repo, but guard against stray scratch files)
__pycache__/
*.pyc
*.pyo
# Scratch diagrams from drawmode MCP — exploration artifacts, not part of the repo
*.drawmode.ts
*.excalidraw
# Agent collaboration scratch — private session memory, never in git.
# Includes long-form project memory for AI assistants (CLAUDE.md, AGENTS.md,
# etc.) and per-tool workspace folders. These persist locally so successive
# AI sessions retain context, but they should never ship to GitHub —
# treat them like ~/.ssh: useful, local-only, never shared.
CLAUDE.md
AGENTS.md
HANDOFF.md
SESSION_PLAYBOOK.md
.claude/
.codex/
.cursor/
.aider*
.continue/