-
Notifications
You must be signed in to change notification settings - Fork 16
feat: onboarding fixes #272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
felarof99
commented
Jan 22, 2026
- fix: use source files for agent-sdk during development
- feat: improve onboarding page
580abda to
e579d05
Compare
Greptile SummaryThis PR simplifies the onboarding features page UI and updates feature content. The Major changes:
Issue found:
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant SettingsSidebar
participant FeaturesPage
participant BentoCard
participant Dialog
participant VideoFrame
User->>SettingsSidebar: Click "Explore Features"
SettingsSidebar->>FeaturesPage: Navigate to /onboarding/features
FeaturesPage->>FeaturesPage: Load features array (6 items)
FeaturesPage->>User: Display hero section with intro video
User->>User: Scroll to features section
loop For each feature
FeaturesPage->>BentoCard: Render feature card
BentoCard->>User: Display simplified card (title, tag, description)
end
User->>BentoCard: Click feature card
BentoCard->>Dialog: Open dialog
Dialog->>VideoFrame: Load feature video/gif
VideoFrame->>User: Autoplay video with controls
Dialog->>User: Display detailedDescription
Dialog->>User: Render highlights as bullet list with checkmarks
User->>Dialog: Click close or backdrop
Dialog->>FeaturesPage: Return to features grid
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
4 files reviewed, 1 comment
| export const AGENTIC_CODING_DEMO_URL = | ||
| 'https://pub-80f8a01e6e8b4239ae53a7652ef85877.r2.dev/resources/cowork-hn-extract-demo.mp4' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: The URL for AGENTIC_CODING_DEMO_URL appears to be incorrectly mapped — it points to cowork-hn-extract-demo.mp4, which sounds like a Cowork demo, not an Agentic Coding demo.
Prompt To Fix With AI
This is a comment left during a code review.
Path: apps/agent/lib/constants/mediaUrls.ts
Line: 49:50
Comment:
**logic:** The URL for `AGENTIC_CODING_DEMO_URL` appears to be incorrectly mapped — it points to `cowork-hn-extract-demo.mp4`, which sounds like a Cowork demo, not an Agentic Coding demo.
How can I resolve this? If you propose a fix, please make it concise.
Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. |
ecef7d5 to
191ef2f
Compare