docs(formatting-commits): add no-edit amend option

Amolith created

When amending to add more changes without altering the message, git
commit --amend --no-edit is cleaner than reconstructing the entire
message from reflog via formatted-commit --amend.

Assisted-by: Claude Opus 4.5 via Amp

Change summary

skills/formatting-commits/SKILL.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

Detailed changes

skills/formatting-commits/SKILL.md 🔗

@@ -7,7 +7,12 @@ metadata:
   author: Amolith <amolith@secluded.site>
 ---
 
-Create/amend commits exclusively using `formatted-commit`. It has no sub-commands and the following options:
+Create commits using `formatted-commit`. For amends, choose the appropriate approach:
+
+- **Message stays accurate** → `git commit --amend --no-edit` (or `-a --amend --no-edit` to stage all)
+- **Message needs updating** → `formatted-commit --amend` to reconstruct with new type/scope/body
+
+`formatted-commit` has no sub-commands and the following options:
 
 <formatted-commit_flags>
 -t --type Commit type (required)