mirror of
https://github.com/teamchong/pxpipe.git
synced 2026-07-22 02:02:51 +02:00
d2d410ffc8
- Remove eval/corpus/{sessions,text-blocks}.json from the repo — they are real captured transcripts (file paths, project names, message content). gitignore eval/corpus/; local copies kept for the eval scripts.
- gen_sweep.mjs: replace a hardcoded /Users/<name> absolute import with a relative path.
- README: 'holds ~92k readable chars' -> 'up to ~92k chars' (don't overclaim legibility at the new page density).
- CHANGELOG: note OCR legibility at the larger page size is not independently re-eval'd.
48 lines
1.2 KiB
Plaintext
48 lines
1.2 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/
|
|
eval/gsm8k/novel_imgs/
|
|
eval/gist-recall/work*/*.png
|
|
# Eval corpus = real captured transcripts (PII: file paths, project names, and
|
|
# message content). Keep a local copy for eval scripts, but never commit it.
|
|
eval/corpus/
|