Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Agent Instructions

## CLI Output Style

Use compact Unicode symbols for terminal output, not emoji. This keeps new and
updated terminal output consistent and avoids rendering issues across terminals.

**Preferred symbols:**
- `✓` success, approved, merged
- `✗` failure, conflict, changes requested
- `●` active, pending, in progress
- `○` inactive, skipped, none
- `—` unknown, not applicable

**Avoid in terminal output:** `✅`, `❌`, `🟢`, `🔴`, `📝`, `⚠️`, `🔄`, `📦`, `🤖`, `🔗`
and other emoji. They can render at inconsistent widths across terminals and
break column alignment.

**Exception:** Emoji are acceptable in markdown output destined for GitHub
(PR comments, CI summaries) where they render consistently.
2 changes: 1 addition & 1 deletion mergify_cli/stack/hooks/scripts/pre-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if test "$has_change_id" -eq 0; then
fi

echo ""
echo "This branch is managed by Mergify stacks."
echo "This branch is managed by Mergify stacks."
echo " Use 'mergify stack push' instead of 'git push'."
echo ""
echo " 'mergify stack push' will:"
Expand Down
Loading