Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,46 +141,6 @@ The Package.swift heavily uses environment variables for conditional compilation
- Library evolution mode generates .swiftinterface files
- Various private framework integrations can be toggled

## Git and GitHub Workflow

**IMPORTANT: This project uses GitBulter for version control management**

### Critical Git Rules
- **NEVER change branches** - The user manages branches through GitBulter
- **NEVER run git commit commands** - The user commits through GitBulter GUI
- **ALWAYS create pull requests** using `gh pr create` with the exact branch specified by the user
- **DO NOT switch branches** when creating pull requests

### Commit Workflow
When asked to commit changes:
1. **Generate a commit message** and provide it to the user (formatted without extra spaces)
2. **Save the commit message** to `.claude/tmp/commit-message.md` for easy copying
3. **List the files to be committed** (specify if not all files)
4. **Let the user commit through GitBulter GUI** - do not run git commit commands
5. Wait for user confirmation before proceeding with any PR creation

Example response when asked to commit:
```
Here's the commit message for you to use in GitBulter:

"Add feature X to improve Y

- Implemented new functionality
- Updated tests
- Fixed related issues"

Files to commit:
- src/feature.swift
- tests/feature_test.swift

(Saved to .claude/tmp/commit-message.md)
```

### Pull Request Workflow
1. Only create PR after user confirms the commit is done
2. Use `gh pr create` from the specified branch
3. Do not change HEAD or switch branches during PR creation

## Important Notes

- This project uses private Apple APIs and frameworks - NOT for App Store distribution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ struct AnimatedColorTimelineView: View {
saturation: 0.8,
brightness: 0.9
)
// .ignoresSafeArea()
.ignoresSafeArea()

VStack(spacing: 30) {
// Text("Animated Colors")
// .font(.largeTitle)
// .fontWeight(.bold)
// .foregroundColor(.white)

// Pulsing circle that changes color
// Circle()
// .fill(
Expand All @@ -47,7 +47,7 @@ struct AnimatedColorTimelineView: View {
width: 100 + sin(time * 3) * 20,
height: 100 + sin(time * 3) * 20
)

// Display current color values
let currentHue = (sin(time * 0.5) + 1) / 2
let _ = print(currentHue)
Expand Down
Loading
Loading