Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"sandbox": {
"autoAllowBashIfSandboxed": true,
"enabled": true
},
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For boolean flags in JSON configuration, it's more idiomatic and clearer to use the boolean literal true instead of the string "1". This improves readability and maintainability for anyone else who might need to modify this setting. While environment variables are strings, many systems correctly parse boolean literals from JSON.

Suggested change
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": true
References
  1. In JSON, it is best practice to use the native boolean types (true and false) for boolean values. This improves clarity, type safety, and interoperability, as opposed to using string representations like "1" or "true". (link)

}
}
Loading