story-kit: start 216_story_merge_quality_gates_should_use_project_toml_components_and_script_test_instead_of_hardcoded_frontend_pnpm

This commit is contained in:
Dave
2026-02-26 19:03:04 +00:00
parent 3cca36910f
commit f94b741f19
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
---
name: "Merge quality gates should use project.toml components and script/test instead of hardcoded frontend/pnpm"
---
# Story 216: Merge quality gates should use project.toml components and script/test instead of hardcoded frontend/pnpm
## User Story
As a project maintainer, I want the merge pipeline quality gates to use the dynamic component setup from project.toml and script/test, so that the pipeline works with any tech stack rather than assuming a frontend/ directory and pnpm.
## Acceptance Criteria
- [ ] run_squash_merge uses project.toml component setup commands (same as worktree creation) to prepare the merge workspace instead of hardcoded pnpm install in frontend/
- [ ] run_merge_quality_gates delegates to script/test for the full test suite instead of separately invoking cargo clippy, cargo test, pnpm build, and pnpm test
- [ ] No hardcoded references to pnpm or frontend/ in the merge pipeline code path (run_squash_merge, run_merge_quality_gates)
- [ ] Existing script/test entrypoint continues to work as the single source of truth for quality gates
## Out of Scope
- TBD

View File

@@ -0,0 +1,19 @@
---
name: "Hide thinking traces from Agents panel"
---
# Story 218: Hide thinking traces from Agents panel
## User Story
As a user, I don't want to see Claude's internal thinking traces in the Agents panel, so that the panel only shows actionable output.
## Acceptance Criteria
- [ ] AgentPanel does not render thinking traces (ThinkingBlock component removed or thinking events ignored)
- [ ] Agent output log only shows regular text output, status changes, and errors
- [ ] No regression in agent output streaming (text_delta events still display correctly)
## Out of Scope
- TBD