BREAKING: switch all multi-char commands to POSIX --double-dash

Rename every multi-character option/command from single-dash to double-dash (--likes, --collect, --force, etc.) to follow the POSIX long-option convention. Single-character short options (-h, -V, -?) keep their single dash, as POSIX prescribes.

Breaking: existing invocations/scripts using single-dash forms now report Unknown Command and must be updated. Run profile (launchSettings.json) and CLI docs (copilot-instructions.md) updated to match.

Co-Authored-By: Claude Opus 4.8 <[email protected]>
This commit is contained in:
jim
2026-06-09 15:26:38 -05:00
co-authored by Claude Opus 4.8
parent a437fa87d3
commit 4df73367fb
3 changed files with 62 additions and 67 deletions
@@ -2,7 +2,7 @@
"profiles": {
"URLNotesGrabberCORE": {
"commandName": "Project",
"commandLineArgs": "-collect 1 -api4"
"commandLineArgs": "--collect 1 --api4"
}
}
}