docs(work): close walking-skeleton story 01 (fixture + git helpers)

This commit is contained in:
2026-07-12 21:44:13 +02:00
parent 2bd882e0b0
commit 240075d95b
2 changed files with 9 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
{ {
"updated_at": "2026-07-12T19:17:36.659Z", "updated_at": "2026-07-12T19:44:14.864Z",
"epics": { "epics": {
"platform-retrofit": { "platform-retrofit": {
"status": "done", "status": "done",
@@ -110,10 +110,10 @@
"prd": "docs/work/prds/walking-skeleton.prd.md", "prd": "docs/work/prds/walking-skeleton.prd.md",
"stories": { "stories": {
"01-vite-kitchen-fixture": { "01-vite-kitchen-fixture": {
"status": "in-progress", "status": "done",
"title": "vite-kitchen fixture + git-serving test helpers", "title": "vite-kitchen fixture + git-serving test helpers",
"ac_total": 2, "ac_total": 2,
"ac_completed": 0, "ac_completed": 2,
"depends_on": [], "depends_on": [],
"blocks": [ "blocks": [
"04-runner-app-protocol-clone-install" "04-runner-app-protocol-clone-install"
@@ -236,11 +236,6 @@
} }
}, },
"ready": [ "ready": [
{
"epic": "walking-skeleton",
"story": "01-vite-kitchen-fixture",
"title": "vite-kitchen fixture + git-serving test helpers"
},
{ {
"epic": "walking-skeleton", "epic": "walking-skeleton",
"story": "02-core-runner-protocol", "story": "02-core-runner-protocol",
@@ -268,7 +263,6 @@
"story": "04-runner-app-protocol-clone-install", "story": "04-runner-app-protocol-clone-install",
"title": "runner app — protocol server, clone stage, install stage", "title": "runner app — protocol server, clone stage, install stage",
"waiting_on": [ "waiting_on": [
"walking-skeleton/01-vite-kitchen-fixture",
"walking-skeleton/02-core-runner-protocol" "walking-skeleton/02-core-runner-protocol"
] ]
}, },

View File

@@ -3,11 +3,12 @@ id: 01-vite-kitchen-fixture
epic: walking-skeleton epic: walking-skeleton
title: vite-kitchen fixture + git-serving test helpers title: vite-kitchen fixture + git-serving test helpers
type: technical-story type: technical-story
status: in-progress status: done
feature: core-testing feature: core-testing
depends-on: [] depends-on: []
blocks: [04-runner-app-protocol-clone-install] blocks: [04-runner-app-protocol-clone-install]
created: 2026-07-12T10:24:14Z created: 2026-07-12T10:24:14Z
updated: 2026-07-12T19:44:14.557Z
--- ---
## Goal ## Goal
@@ -40,5 +41,7 @@ The protocol integration suite (the load-bearing test tier of this epic) spawns
## Tasks ## Tasks
- [ ] Create `fixtures/vite-kitchen` at the repo root — minimal Vite + React + TS + Tailwind app with a `Button` component (typed props) — outside the pnpm workspace and turbo graph; confirm `pnpm install` and turbo ignore it and all gates stay green. - [x] Create `fixtures/vite-kitchen` at the repo root — minimal Vite + React + TS + Tailwind app with a `Button` component (typed props) — outside the pnpm workspace and turbo graph; confirm `pnpm install` and turbo ignore it and all gates stay green.
- [ ] Add `core-testing` helpers that serve a fixture directory as a local bare repo / `git daemon` remote (setup/teardown, clone URL) with tests exercising a real `git clone` of `vite-kitchen`. - [x] Add `core-testing` helpers that serve a fixture directory as a local bare repo / `git daemon` remote (setup/teardown, clone URL) with tests exercising a real `git clone` of `vite-kitchen`.
_Landed: 1ae4a23 (fixture) + 2bd882e (git-serving helpers), reviewer-approved — real git-daemon clones over git:// and file://, all four ignore surfaces + allowlist test, zero lockfile diff._