mirror of
https://github.com/ultraworkers/claw-code.git
synced 2026-04-25 13:44:06 +08:00
Every 'claw flush-transcript' call without --directory writes to .port_sessions/<uuid>.json in CWD. Without a gitignore entry, every dogfood run leaves dozens of untracked files in the repo, masking real changes in 'git status' output. Now that #160/#166 ship structured session lifecycle commands and deterministic --session-id, this directory is purely transient by default — belongs in .gitignore.
16 lines
376 B
Plaintext
16 lines
376 B
Plaintext
__pycache__/
|
|
archive/
|
|
.omx/
|
|
.clawd-agents/
|
|
# Claude Code local artifacts
|
|
.claude/settings.local.json
|
|
.claude/sessions/
|
|
# Claw Code local artifacts
|
|
.claw/settings.local.json
|
|
.claw/sessions/
|
|
# #160/#166: default session storage directory (flush-transcript output,
|
|
# dogfood runs, etc.). Claws specifying --directory elsewhere are fine.
|
|
.port_sessions/
|
|
.clawhip/
|
|
status-help.txt
|