Open
Conversation
…g [skill_name] segment
Collaborator
Author
|
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.
Added more granular copy options: Every H1 and H2 tag has a copy option now. Every H3 or smaller heading has a copy option if the prose text is more than 150 characters. Every code block has a copy option now.
Show written file content in Write tool modal - The Write tool's timeline card now shows the full content of the file that was written, with a scrollable container and a line count label. Previously it only showed the file path.
Show task subject in TaskUpdate modal - TaskUpdate timeline events now display the task's description text as a subtitle (e.g. "Fix the login bug") instead of just "Task #N". Required a pre-scan pass to parse TaskCreate result content to build a task ID → subject map.
Scroll position restore on back navigation - When you scroll down on the /sessions or /projects/[slug] route, click into a session, then press back — the page returns to exactly where you were. Uses beforeNavigate + sessionStorage + onMount + requestAnimationFrame, matching the existing pattern from /skills.
Last-opened session highlight - After pressing back from a session, the card you previously clicked glows with a 2px accent-colored ring that fades out over 1.8s. Lets you immediately see which session you were looking at.
Pagination state restore on back navigation - Going to page 3, clicking a session, and pressing back now returns you to page 3. For the sessions page (which uses client-side data fetching), the page number is saved to sessionStorage and restored via reloadSessions() on mount. Scroll restore is deferred until after the page data loads so it lands on the right content. For the project page (uses goto()), the URL sync effect now preserves ?page=n so SvelteKit's history state works correctly.