Renamed living spec to Story Kit

This commit is contained in:
Dave
2026-02-16 15:44:20 +00:00
parent 0876c53e17
commit 3865883998
35 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
# The Story-Driven Spec Workflow (SDSW) # Story Kit: The Story-Driven Spec Workflow (SDSW)
**Target Audience:** Large Language Models (LLMs) acting as Senior Engineers. **Target Audience:** Large Language Models (LLMs) acting as Senior Engineers.
**Goal:** To maintain long-term project coherence, prevent context window exhaustion, and ensure high-quality, testable code generation in large software projects. **Goal:** To maintain long-term project coherence, prevent context window exhaustion, and ensure high-quality, testable code generation in large software projects.
@@ -7,7 +7,7 @@
## 1. The Philosophy ## 1. The Philosophy
We treat the codebase as the implementation of a **"Living Specification."** We treat the codebase as the implementation of a **"Living Specification."** driven by **User Stories**
Instead of ephemeral chat prompts ("Fix this", "Add that"), we work through persistent artifacts. Instead of ephemeral chat prompts ("Fix this", "Add that"), we work through persistent artifacts.
* **Stories** define the *Change*. * **Stories** define the *Change*.
* **Specs** define the *Truth*. * **Specs** define the *Truth*.
@@ -23,7 +23,7 @@ When initializing a new project under this workflow, create the following struct
```text ```text
project_root/ project_root/
.living_spec .story_kit
|-- README.md # This document |-- README.md # This document
├── stories/ # The "Inbox" of feature requests. ├── stories/ # The "Inbox" of feature requests.
├── specs/ # The "Brain" of the project. ├── specs/ # The "Brain" of the project.