this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add .gitignore to exclude auto-generated plan files

Prevents accidental commits of plans saved by the daemon.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice c816a913 33332954

+17
.claude/plans/.gitkeep

This is a binary file and will not be displayed.

+17
.gitignore
··· 1 + # Plan files (auto-generated by plan-saver daemon) 2 + .claude/plans/*.md 3 + 4 + # Keep the directory structure 5 + !.claude/plans/.gitkeep 6 + 7 + # Node 8 + node_modules/ 9 + 10 + # Python 11 + __pycache__/ 12 + *.pyc 13 + .venv/ 14 + venv/ 15 + 16 + # OS 17 + .DS_Store