Skip to content
Open
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
1 change: 1 addition & 0 deletions .Jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
## 2026-06-30 - Added Emojis to CLI Output Messages
**Learning:** Adding subtle emojis to informative CLI output headers (like "Created/updated files" and "Next steps") provides clearer visual cues for developers scanning long CLI output.
**Action:** Always include relevant emojis in summary output text to make success and informational messages more visually distinguishable from routine command logs.
## 2026-07-06 - Added Emojis to CLI Warning Messages\n**Learning:** Just like errors, warnings in CLIs benefit from visual cues like emojis to draw attention without being as harsh as an error.\n**Action:** When adding or modifying warning messages in the CLI, use 'โš ๏ธ Warning: [Message]' format.
2 changes: 1 addition & 1 deletion appguardrail_core/org_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def gh_pr_list(
except subprocess.CalledProcessError as exc:
warning = f"Skipped PR collection for {full_name}: {gh_error_message(exc)}"
warnings.append(warning)
print(f"warning: {warning}", file=sys.stderr)
print(f"โš ๏ธ Warning: {warning}", file=sys.stderr)
continue
for pull in repo_pulls:
pull["repository"] = {"nameWithOwner": full_name}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_org_readiness_report_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ def fake_gh_json(args):
"Skipped PR collection for ContextualWisdomLab/bad: HTTP 502: Bad Gateway"
]
assert (
"warning: Skipped PR collection for ContextualWisdomLab/bad"
"โš ๏ธ Warning: Skipped PR collection for ContextualWisdomLab/bad"
in capsys.readouterr().err
)