Conversation
Gowreesh-A-M
commented
Mar 17, 2026
- Add the paid active AI Support experience and route it from the tab shell.
- Build the greeting header, quick actions, recommendation card, weak-topic list, and recent help section.
- Refine colors, shadows, spacing, and typography to match the approved design and sync the OpenSpec docs.
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request delivers the foundational AI Support dashboard, a significant new feature for paid users. It integrates personalized learning tools directly into the main application flow, offering quick access to AI-driven doubt resolution, practice exams, and tailored topic recommendations. The implementation adheres to established design principles and sets the stage for future AI enhancements by introducing a dedicated, modular package. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a new AI Support dashboard, replacing the Explore tab for certain users. The changes include creating a new ai_assistant package with all the necessary widgets, models, and mock data for the dashboard UI. The routing, design tokens, and localization files have been updated accordingly. My review focuses on improving maintainability by using design system tokens instead of hardcoded values and fixing a few minor issues in documentation and widget implementation.
…n card Replace the greeting header with a new AIDoubtHero widget that makes "Ask a Doubt" the primary focal point of the AI assistant page. Tone down AIRecommendationCard by swapping the thick-bordered container for AppCard, removing the full-width CTA button, and reducing sizes across icon, text, and progress bar.
…dgets Refactored AIDoubtHero to follow clean code principles and maintain a single level of abstraction. - Extracted _HeroGreeting, _SubtitleTicker, _HeroSearchBar, _SuggestionPills, and _ModuleSolutionsButton. - Encapsulated timer and page controller logic within the _SubtitleTicker widget.
Replaced all hardcoded strings in AiDoubtHero with l10n keys — greetings, subtitles, search hint, suggestion pills, divider, and module solutions button. Added corresponding ARB entries for EN, AR, and ML with generated localizations updated.