Getting set for release

This commit is contained in:
Dave
2026-03-13 12:52:56 +00:00
parent 27d9d3a3a9
commit 3035dc2a7d
10 changed files with 134 additions and 26 deletions

View File

@@ -13,7 +13,7 @@ Additionally, there is no way for the user to trigger scaffolding from the CLI
## How to Reproduce
1. Create an empty directory or navigate to a project without `.story_kit/`
2. Run `story-kit-server`
2. Run `story-kit`
3. Open the project via the UI file chooser
4. Try to chat using the claude-code provider

View File

@@ -6,13 +6,13 @@ name: "Accept optional positional path argument on startup"
## User Story
As a user, I want to run `story-kit-server .` or `story-kit-server /path/to/project` to start the server with that directory as the project, so that I don't have to use the UI file chooser.
As a user, I want to run `story-kit .` or `story-kit /path/to/project` to start the server with that directory as the project, so that I don't have to use the UI file chooser.
## Acceptance Criteria
- [ ] Running `story-kit-server` with no args behaves as today (auto-detect from cwd)
- [ ] Running `story-kit-server .` opens the current directory as the project
- [ ] Running `story-kit-server /some/path` opens that path as the project
- [ ] Running `story-kit` with no args behaves as today (auto-detect from cwd)
- [ ] Running `story-kit .` opens the current directory as the project
- [ ] Running `story-kit /some/path` opens that path as the project
- [ ] If the path has no .story_kit/, it is scaffolded automatically
- [ ] Invalid paths produce a clear error message

View File

@@ -6,7 +6,7 @@ name: "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.
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 .`), so that I don't have to click through the selection screen for a project the server already opened.
## Acceptance Criteria