cursor-helper 0.2.0

CLI helper for Cursor IDE operations not exposed in the UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Use PowerShell on Windows
set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]

[unix]
pre-commit:
    @if command -v prek > /dev/null 2>&1; then prek run --all-files; else pre-commit run --all-files; fi

[windows]
pre-commit:
    if (Get-Command prek -ErrorAction SilentlyContinue) { prek run --all-files } else { pre-commit run --all-files }

claude args="":
    dotenvx run -- claude {{args}}