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
52 changes: 0 additions & 52 deletions README-nix.md

This file was deleted.

4 changes: 4 additions & 0 deletions config/claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"Bash(gh auth:*)",
"Bash(gh issue:*)",
"Bash(gh pr checkout:*)",
"Bash(gh pr checks:*)",
"Bash(gh pr create:*)",
"Bash(gh pr edit:*)",
"Bash(gh pr list:*)",
Expand All @@ -32,6 +33,9 @@
"Bash(gh pr view:*)",
"Bash(gh release:*)",
"Bash(gh repo:*)",
"Bash(gh run list:*)",
"Bash(gh run view:*)",
"Bash(gh run watch:*)",
"Bash(git add:*)",
"Bash(git branch:*)",
"Bash(git checkout:*)",
Expand Down
4 changes: 2 additions & 2 deletions home-manager/programs/fish/functions/_clxe_function.fish
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ function _clxe_function --description "Run Claude Code with a free-form prompt w
# Usage: clxe [<prompt words...>]

if test (count $argv) -eq 0
claude code --dangerously-skip-permissions
claude --dangerously-skip-permissions

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

This change from claude code to claude may be a breaking change if these commands have different behaviors. The code subcommand might provide specific context or features tailored for code-related tasks. Before merging, please verify: 1) Does claude (without subcommand) provide identical functionality to claude code? 2) Have existing workflows using clxe been tested with this change? 3) Is this change documented anywhere for users who might be affected? Consider testing this in isolation or documenting the behavioral differences if any exist.

Agent: 🏛 Architecture • Fix in Cursor • Fix in Claude

Prompt for Agent
Task: Address review feedback left on GitHub.
Repository: shunkakinoki/dotfiles#511
File: home-manager/programs/fish/functions/_clxe_function.fish#L6
Action: Open this file location in your editor, inspect the highlighted code, and resolve the issue described below.

Feedback:
This change from `claude code` to `claude` may be a breaking change if these commands have different behaviors. The `code` subcommand might provide specific context or features tailored for code-related tasks. Before merging, please verify: 1) Does `claude` (without subcommand) provide identical functionality to `claude code`? 2) Have existing workflows using `clxe` been tested with this change? 3) Is this change documented anywhere for users who might be affected? Consider testing this in isolation or documenting the behavioral differences if any exist.

else
set -l prompt (string join " " -- $argv)
claude code --dangerously-skip-permissions --print -- "$prompt"
claude --dangerously-skip-permissions --print -- "$prompt"
end
Comment on lines 5 to 10

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Since the command has been updated from claude code to claude, the function's description and internal comment are now slightly out of sync. To maintain consistency, I suggest updating them to remove the reference to code.

For example:

  • Line 1: ... --description "Run Claude with a free-form prompt..."
  • Line 2: # Run Claude with a free-form prompt...

end
Loading