Select the types of activity you want to include in your feed.
update CLAUDE.md: include decision graph in code commits
Added guidance to run deciduous sync before commits and stage graph updates together with code changes. Decision graph is part of code history and should not be committed separately.
···141141142142### Git History & Deployment
143143144144+**CRITICAL: Include decision graph in code commits**
145145+146146+Always run `deciduous sync` BEFORE committing code changes, then include the graph updates in the same commit:
147147+148148+```bash
149149+# After making code changes and adding decision nodes:
150150+deciduous sync # Export graph
151151+git add src/your-file.ts docs/ # Stage code + graph
152152+git commit -m "your change" # Single commit with both
153153+```
154154+155155+**DO NOT create separate commits for graph updates.** The decision graph is part of the code history and should be committed together.
156156+144157```bash
145158# Export graph AND git history for web viewer
146159deciduous sync
+4-4
docs/git-history.json
···1616 "files_changed": 1
1717 },
1818 {
1919- "hash": "6f618f32c42d1e2cfa13c480b2d396c82496eb6c",
2020- "short_hash": "6f618f3",
1919+ "hash": "0411d34fc6418f1b887bbec2470cee9fe7e2d98b",
2020+ "short_hash": "0411d34",
2121 "author": "Ariel M. Lighty",
2222- "date": "2025-12-24T16:38:37-05:00",
2323- "message": "add @ symbol and profile pic to login input\n\nCreated HandleInput component:\n- Shows @ symbol by default\n- Replaces @ with profile pic when handle selected from typeahead\n- Extracts avatar from typeahead data-avatar or actor-select event\n- Clears avatar when input is cleared",
2222+ "date": "2025-12-24T16:53:27-05:00",
2323+ "message": "add rotating platform-agnostic placeholder examples\n\nCreated useRotatingPlaceholder hook:\n- Rotates through 4 platform examples every 3 seconds\n- .bsky.social, .blacksky.app, .tgnl.sh, .com\n- Demonstrates platform flexibility without overwhelming users",
2424 "files_changed": 2
2525 },
2626 {