From 93877fb6f2380dcaefb82e4c1177b0252a7faf5c Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 26 Feb 2026 15:29:22 +0000 Subject: [PATCH] story-kit: create 211_story_skip_selection_screen_when_cli_path_argument_provided --- ..._screen_when_cli_path_argument_provided.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .story_kit/work/1_upcoming/211_story_skip_selection_screen_when_cli_path_argument_provided.md diff --git a/.story_kit/work/1_upcoming/211_story_skip_selection_screen_when_cli_path_argument_provided.md b/.story_kit/work/1_upcoming/211_story_skip_selection_screen_when_cli_path_argument_provided.md new file mode 100644 index 0000000..3e63686 --- /dev/null +++ b/.story_kit/work/1_upcoming/211_story_skip_selection_screen_when_cli_path_argument_provided.md @@ -0,0 +1,19 @@ +--- +name: "Skip selection screen when CLI path argument provided" +--- + +# Story 211: Skip selection screen when CLI path argument provided + +## User Story + +As a user, I want the frontend to go straight to the project workspace when I start the server with an explicit path argument (e.g. `story-kit-server .`), so that I don't have to click through the selection screen for a project the server already opened. + +## Acceptance Criteria + +- [ ] When the server is started with a positional path argument, the frontend loads directly into the project workspace without showing the selection screen +- [ ] When the server is started without a path argument and no project was previously open, the selection screen is shown as before +- [ ] The getCurrentProject() API is called on frontend mount to check if a project is already open server-side + +## Out of Scope + +- TBD