story-kit: merge 156_bug_onboarding_welcome_screen_triggers_on_already_configured_projects

This commit is contained in:
Dave
2026-02-24 16:13:39 +00:00
parent 125b77a592
commit b621727f48
2 changed files with 42 additions and 18 deletions

View File

@@ -230,7 +230,8 @@ This folder contains the "Living Specification" for the project. It serves as th
3. If a Story changes behavior, update the spec *first*, get approval, then write code.
"#;
const STORY_KIT_CONTEXT: &str = r#"# Project Context
const STORY_KIT_CONTEXT: &str = r#"<!-- story-kit:scaffold-template -->
# Project Context
## High-Level Goal
To build a standalone **Agentic AI Code Assistant** application as a single Rust binary that serves a Vite/React web UI and exposes a WebSocket API. The assistant will facilitate a "Story-Driven Spec Workflow" (SDSW) for software development. Unlike a passive chat interface, this assistant acts as an **Agent**, capable of using tools to read the filesystem, execute shell commands, manage git repositories, and modify code directly to implement features.
@@ -265,7 +266,8 @@ To build a standalone **Agentic AI Code Assistant** application as a single Rust
* **Tool Call:** A structured request from the LLM to execute a specific native function.
"#;
const STORY_KIT_STACK: &str = r#"# Tech Stack & Constraints
const STORY_KIT_STACK: &str = r#"<!-- story-kit:scaffold-template -->
# Tech Stack & Constraints
## Overview
This project is a standalone Rust **web server binary** that serves a Vite/React frontend and exposes a **WebSocket API**. The built frontend assets are packaged with the binary (in a `frontend` directory) and served as static files. It functions as an **Agentic Code Assistant** capable of safely executing tools on the host system.