Skip to content

feat: add /observe /manage /run tips to splash banner - #1

Closed
Ayush7614 wants to merge 1 commit into
mainfrom
fix/splash-banner-commands
Closed

feat: add /observe /manage /run tips to splash banner#1
Ayush7614 wants to merge 1 commit into
mainfrom
fix/splash-banner-commands

Conversation

@Ayush7614

@Ayush7614 Ayush7614 commented Aug 14, 2026

Copy link
Copy Markdown
Owner

CodeAnt-AI Description

Add tips for observing, managing, and starting runs from the splash banner

What Changed

  • The splash banner now explains that /observe shows diagnostics and world state
  • Users can discover /manage for jumping to the Manage tab
  • Users can discover /run for starting a new run

Impact

✅ Clearer command discovery
✅ Easier access to diagnostics and world state
✅ Faster access to run management

💡 Usage Guide

Checking Your Pull Request

Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.

Talking to CodeAnt AI

Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:

@codeant-ai ask: Your question here

This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.

Example

@codeant-ai ask: Can you suggest a safer alternative to storing this secret?

Preserve Org Learnings with CodeAnt

You can record team preferences so CodeAnt AI applies them in future reviews. Reply directly to the specific CodeAnt AI suggestion (in the same thread) and replace "Your feedback here" with your input:

@codeant-ai: Your feedback here

This helps CodeAnt AI learn and adapt to your team's coding style and standards.

Example

@codeant-ai: Do not flag unused imports.

Retrigger review

Ask CodeAnt AI to review the PR again, by typing:

@codeant-ai: review

Check Your Repository Health

To analyze the health of your code repository, visit our dashboard at https://app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.

Summary by CodeRabbit

  • New Features
    • Added helpful tips for using the /observe, /manage, and /run commands on the splash screen.

@codeant-ai

codeant-ai Bot commented Aug 14, 2026

Copy link
Copy Markdown

🤖 CodeAnt AI — Review Status

Status Commit Started (UTC) Finished (UTC)
✅ Reviewed your PR 7d209dd Aug 14, 2026 · 06:34 06:36

@codeant-ai

codeant-ai Bot commented Aug 14, 2026

Copy link
Copy Markdown

Thanks for using CodeAnt! 🎉

We're free for open-source projects. if you're enjoying it, help us grow by sharing.

Share on X ·
Reddit ·
LinkedIn

@codeant-ai codeant-ai Bot added the size:XS This PR changes 0-9 lines, ignoring generated files label Aug 14, 2026
@coderabbitai

coderabbitai Bot commented Aug 14, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: c0e8b47c-166d-497a-82e2-28b338f3e9aa

📥 Commits

Reviewing files that changed from the base of the PR and between fc2a906 and 7d209dd.

📒 Files selected for processing (1)
  • src/tui/components/splash-banner.tsx

📝 Walkthrough

Walkthrough

The splash banner now includes tips for /observe, /manage, and /run.

Changes

Splash Banner

Layer / File(s) Summary
Add action tips
src/tui/components/splash-banner.tsx
Adds tips for viewing diagnostics and world state, opening the Manage tab, and starting a new run.

Estimated code review effort: 1 (Trivial) | ~2 minutes

Merge Risk: ⚪ Minimal · up to 7d209

This localized change adds command tips to the splash banner without introducing an actionable merge-blocking risk; it is merge-ready after normal checks and review.

Suggested reviewers: ooooze, sosidudku1

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes adding /observe, /manage, and /run tips to the splash banner.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/splash-banner-commands

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Comment on lines +25 to +31
<Tip left="/observe" right="view diagnostics and world state" />
<Tip left="/manage" right="jump to the Manage tab" />
<Tip left="/new" right="start a fresh session" />
<Tip left="/model" right="change the chat model" />
<Tip left="/tasks" right="jump to the Tasks tab (Option 4 cron + ingress UI)" />
<Tip left="/import" right="open the Import tab (one-shot Hermes -> atomic-agent migration)" />
<Tip left="/run" right="start a new run" />

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: These additional fixed-height rows increase the splash banner height without any overflow or terminal-size handling. On short terminals, the vertically centered banner can be clipped or overlap the available chat area; constrain, condense, or otherwise adapt the tips for small terminal heights. [css layout issue]

Severity Level: Major ⚠️
- ⚠️ Empty-chat splash content clips on short terminals.
- ⚠️ Added command tips may be invisible or partially displayed.

Fix in Cursor Fix in VSCode Claude

Prompt for AI Agent 🤖
This is a comment left during a code review.

**Path:** src/tui/components/splash-banner.tsx
**Line:** 25:31
**Comment:**
	*Css Layout Issue: These additional fixed-height rows increase the splash banner height without any overflow or terminal-size handling. On short terminals, the vertically centered banner can be clipped or overlap the available chat area; constrain, condense, or otherwise adapt the tips for small terminal heights.

Validate the correctness of the flagged issue. If correct, How can I resolve this? If you propose a fix, implement it and please make it concise.
Once fix is implemented, also check other comments on the same PR, and ask user if the user wants to fix the rest of the comments as well. if said yes, then fetch all the comments validate the correctness and implement a minimal fix
👍 | 👎

@Ayush7614

Copy link
Copy Markdown
Owner Author

Closed: reopened against AtomicBot-ai/atomic-agent as AtomicBot-ai#124

@Ayush7614 Ayush7614 closed this Aug 14, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:XS This PR changes 0-9 lines, ignoring generated files

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant