WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)

Add directions for using git

markbennett.ca be8c8e56 350b7d50

verified
+7
+7
CLAUDE.md
··· 57 57 // Use importOriginal to preserve exported classes/errors if needed 58 58 ``` 59 59 `isAuthenticated()` is synchronous — mock as `vi.fn(() => true)`, not `vi.fn(async () => true)`. 60 + 61 + ### Version Control 62 + 63 + * Use small meaningful commits with clear messages. 64 + * Break work down into logical steps, committing each step separately. 65 + * Use feature branches when addressing issues. Include the issue number and a description of changes in the branch name (e.g., `issue-123-fix-auth`). 66 + * When work is complete push commits to remote and open a pull request for review. Include the issue number and a description of changes in the PR title (e.g., `Fix authentication flow for issue #123`).