What problem does it solve?
Inefficient or inconsistent command-line usage, such as unnecessary cd commands or short flag names, can slow down development workflows and make scripts harder to read. This Skill streamlines your terminal interactions.
Core Features & Use Cases
- Efficient Navigation: Advises against unnecessary
cd commands, preferring git -C <dir> <subcommand> for directory-specific operations.
zoxide Integration: Notes the replacement of cd with zoxide and the need to prefix cd with command when explicitly required.
- Long Flag Names: Promotes the use of long flag names (e.g.,
--message instead of -m) for improved readability and clarity in commands.
- Use Case: When interacting with the terminal, let the AI automatically refactor your commands to adhere to these best practices, ensuring efficient, clear, and consistent command execution, especially for Git operations.
Quick Start
Refactor the following command to use best practices: cd my-project && git commit -m 'feat: add new feature'