branch: externals/ellama
commit 5286940c04b37e4d870c8023c2752da120045639
Author: Sergey Kostyaev <[email protected]>
Commit: Sergey Kostyaev <[email protected]>
Add --no-pager to git commands
Added --no-pager flag to git log and git tag commands in the changelog
skill to
prevent output paging and ensure clean command output.
---
skills/changelog/SKILL.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/skills/changelog/SKILL.md b/skills/changelog/SKILL.md
index 3bd4e4215b..8642cae6ce 100644
--- a/skills/changelog/SKILL.md
+++ b/skills/changelog/SKILL.md
@@ -5,14 +5,14 @@ description: Use this skill to generate changelog.
# Generating changelog
-Call shell_command tool with "git log --reverse main..HEAD" argument. Based on
+Call shell_command tool with "git --no-pager log --reverse main..HEAD"
argument. Based on
the output write changelog in org-mode list format. Use org quoting
(~quoted-text~) instead of markdown quoting (`quoted-text`). Every changelog
element should be ended with full stop. Changelog shouldn't be too short or too
long, use detailed description for major changes and concise description for
minor changes.
-Call shell_command tools with "git tag -l --points-at=main" argument to see
+Call shell_command tools with "git --no-pager tag -l --points-at=main"
argument to see
previously released version. Based on this information and minority/majority of
the changes you can fill version variable. If you are not sure, ask the user
using ask_user tool with your variants of the version.