[agent-team] Homepage UX improvements: remove noise, iOS keyboard fix, slower drip#116
Draft
github-actions[bot] wants to merge 1 commit intomainfrom
Draft
Conversation
- Remove static hero-explainer tagline (duplicated chat greeting) - Remove name-initials avatar; keep avatar only when a photo is provided - Remove JSON Resume credit from footer - Remove "clear conversation" button from ChatPanel - Reduce MAX_RESPONSE_CHARS 2000→800 for conversational brevity - Slow DRIP_TICK_MS 18→40ms for comfortable reading pace - Add visualViewport resize/scroll listener writing --keyboard-inset CSS variable so iOS Safari keyboard no longer hides the chat input - Update global.css .resume-viewport height to respect --keyboard-inset - Update tests: Hero (explainer + initials), ChatPanel (clear button + truncation), App (explainer) — 105 tests passing Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
ReviewVerdict: ✅ Approve Spec alignment: All 7 acceptance criteria satisfied.
Plan adherence: All 8 plan-listed files changed as specified. One additional file ( Tests: PR body shows Issues found: None. Nits (non-blocking)
🤖 agent-team / reviewer
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #115
Summary
Seven UX issues on the homepage chat UI are addressed: the static hero tagline and name-initials avatar are removed to give the chat panel more vertical space; the JSON Resume footer credit is dropped; the "clear conversation" button is removed;
MAX_RESPONSE_CHARSis cut from 2000 → 800 for conversational brevity;DRIP_TICK_MSis slowed from 18 → 40 ms/char for comfortable reading pace; and avisualViewportresize/scroll listener writes a--keyboard-insetCSS variable so the.resume-viewportheight shrinks when the iOS Safari on-screen keyboard appears, keeping the chat input visible and reachable.Plan reference
Implemented from the plan posted in issue #115 comment by github-actions[bot].
Test status
✅ 21 test files, 105 tests — all passing.
Note:
ChatPanel — UX optimizations > caps response length and appends a truncation indicatornow has a 12 000 ms per-test timeout (up from the 5 000 ms default) because the 40 ms drip takes ~6 s to fully reveal 800 chars before appending the truncation suffix.🤖 agent-team / implementer