Skip to content

Commit 46f6098

Browse files
committed
Add a Claude Code file
Generated with claude-code `/init`
1 parent e9a1965 commit 46f6098

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

CLAUDE.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# setup-macos Guidelines
2+
3+
## Repository Purpose
4+
Automated setup scripts for configuring macOS with common tools, languages, and settings.
5+
6+
## Commands
7+
- Run main setup: `./setup.sh`
8+
- Run individual components: `source ./languages/ruby` or `bash ./languages/node`
9+
- Check script syntax: `shellcheck setup.sh utils.sh languages/* package-managers/* settings/*`
10+
11+
## Style Guidelines
12+
- **Shell**: Bash-compatible shell scripts
13+
- **Error Handling**: Use `trap` for cleanup and error reporting
14+
- **Functions**: Source common utilities from `utils.sh`
15+
- **Formatting**: 2-space indentation, no trailing whitespace
16+
- **Naming**: Use lowercase with hyphens for files, lowercase with underscores for functions/variables
17+
- **Documentation**: Include comments for non-obvious operations
18+
- **Idempotence**: Scripts should be safe to run multiple times
19+
- **Security**: Validate user input, avoid eval, use quotes around variables
20+
21+
## Testing
22+
Test changes manually by running the affected script and verifying the expected outcome.

0 commit comments

Comments
 (0)