From 36394f1b5c34bf4741898ae9e400a04fd0ea7cc8 Mon Sep 17 00:00:00 2001 From: Dave Date: Wed, 25 Feb 2026 17:27:57 +0000 Subject: [PATCH] story-kit: create 193_story_clickable_code_references_in_frontend --- ...y_clickable_code_references_in_frontend.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .story_kit/work/1_upcoming/193_story_clickable_code_references_in_frontend.md diff --git a/.story_kit/work/1_upcoming/193_story_clickable_code_references_in_frontend.md b/.story_kit/work/1_upcoming/193_story_clickable_code_references_in_frontend.md new file mode 100644 index 0000000..dd604de --- /dev/null +++ b/.story_kit/work/1_upcoming/193_story_clickable_code_references_in_frontend.md @@ -0,0 +1,20 @@ +--- +name: "Clickable code references in frontend" +--- + +# Story 193: Clickable code references in frontend + +## User Story + +As a developer using the Story Kit web UI, I want code references (e.g. `file_path:line_number`) to be rendered as clickable links that open the file in my local editor, so that I can quickly navigate to the relevant source code. + +## Acceptance Criteria + +- [ ] Code references in the format `path/to/file.rs:123` are detected and rendered as clickable links in the frontend +- [ ] Clicking a code reference link opens the file at the correct line in the user's configured editor (via custom URI scheme e.g. vscode://, zed://) +- [ ] Editor preference is configurable (VS Code, Zed, Sublime, IntelliJ) +- [ ] Works for code references in bot responses displayed in the web UI + +## Out of Scope + +- TBD