Is your feature request related to a problem?
Instead of telling the user to add a resume function to .$SHELLrc it would be far better and simpler to make one wrapper shell script. It could just work instead of requiring additional setup per user and/or system. It would also simplify the documentation, and not be per shell. It could also auto update with an upgrade instead of manual tweaking by the user assuming they read the documentation again.
resume() {
local cmd
cmd=$(FORCE_COLOR=3 npx -y ai-resume-cli@latest)
[ $? -eq 0 ] && [ -n "$cmd" ] && eval "$cmd"
}
Is your feature request related to a problem?
Instead of telling the user to add a
resumefunction to.$SHELLrcit would be far better and simpler to make one wrapper shell script. It could just work instead of requiring additional setup per user and/or system. It would also simplify the documentation, and not be per shell. It could also auto update with an upgrade instead of manual tweaking by the user assuming they read the documentation again.