Implement an SPF use case
Read references/workflow.md completely before acting; it contains the detailed composition, prerequisite, implementation, testing, and cascade workflow.
Treat the use-case entry as planning input. Read it, its constituent features, current compositions/adapters, tests, and applicable conventions.
- Verify each required feature is implemented for the requested scope; expose missing prerequisites instead of hiding them in wiring.
- Reconcile documented assumptions with code and identify material open decisions.
- Define the smallest observable composition increment and split it into independently testable prerequisite, behavior, composition, adapter, and documentation chunks.
- Implement each chunk test-first at the correct feature, behavior, composition, or adapter boundary.
- Run cumulative SPF tests, build, and size checks proportional to impact.
- Collapse the use-case record to composition decisions, remaining scope, source pointers, and directly affected relationships.
Report implemented and deferred scope, evidence, record updates, and remaining risks. Do not claim the use case complete while constituents remain partial.
Example
Input: “Implement the smallest playable low-latency live composition.”
Output: A verified minimal composition, exposed prerequisites, cumulative checks, updated use-case evidence, and explicit deferred work.
1---2name: implement-spf-use-case3description: Implement an SPF use-case composition. Use when a delivery scenario combines feature variants and requires composition, tests, and status updates.4---56# Implement an SPF use case78Read `references/workflow.md` completely before acting; it contains the detailed composition, prerequisite, implementation, testing, and cascade workflow.910Treat the use-case entry as planning input. Read it, its constituent features, current compositions/adapters, tests, and applicable conventions.11121. Verify each required feature is implemented for the requested scope; expose missing prerequisites instead of hiding them in wiring.132. Reconcile documented assumptions with code and identify material open decisions.143. Define the smallest observable composition increment and split it into independently testable prerequisite, behavior, composition, adapter, and documentation chunks.154. Implement each chunk test-first at the correct feature, behavior, composition, or adapter boundary.165. Run cumulative SPF tests, build, and size checks proportional to impact.176. Collapse the use-case record to composition decisions, remaining scope, source pointers, and directly affected relationships.1819Report implemented and deferred scope, evidence, record updates, and remaining risks. Do not claim the use case complete while constituents remain partial.2021## Example2223Input: “Implement the smallest playable low-latency live composition.”2425Output: A verified minimal composition, exposed prerequisites, cumulative checks, updated use-case evidence, and explicit deferred work.