text stringlengths 3 8.33k | repo stringclasses 52
values | path stringlengths 6 141 | language stringclasses 35
values | sha stringlengths 64 64 | chunk_index int32 0 273 | n_tokens int32 1 896 |
|---|---|---|---|---|---|---|
---
title: Avoid Barrel File Imports
impact: CRITICAL
impactDescription: 200-800ms import cost, slow builds
tags: bundle, imports, tree-shaking, barrel-files, performance
---
## Avoid Barrel File Imports
Import directly from source files instead of barrel files to avoid loading thousands of unused modules. **Barrel f... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md | Markdown | e648f6d54525f07a691357040ca5bff6ea3424788a91ff63812adb29622a671b | 0 | 723 |
---
title: Conditional Module Loading
impact: HIGH
impactDescription: loads large data only when needed
tags: bundle, conditional-loading, lazy-loading
---
## Conditional Module Loading
Load large data or modules only when a feature is activated.
**Example (lazy-load animation frames):**
```tsx
function AnimationPl... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/bundle-conditional.md | Markdown | 09c8259c3efb04fc0abb8e412ccbda217c222ae8118516283e571c995fe3a7d4 | 0 | 240 |
---
title: Defer Non-Critical Third-Party Libraries
impact: MEDIUM
impactDescription: loads after hydration
tags: bundle, third-party, analytics, defer
---
## Defer Non-Critical Third-Party Libraries
Analytics, logging, and error tracking don't block user interaction. Load them after hydration.
**Incorrect (blocks i... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md | Markdown | 3719fb47b191e8db4fe22686ec88448ad5af9e6838585425abbe103d0b642e37 | 0 | 228 |
---
title: Dynamic Imports for Heavy Components
impact: CRITICAL
impactDescription: directly affects TTI and LCP
tags: bundle, dynamic-import, code-splitting, next-dynamic
---
## Dynamic Imports for Heavy Components
Use `next/dynamic` to lazy-load large components not needed on initial render.
**Incorrect (Monaco bu... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md | Markdown | 401817a7369f315fc5a68a1095742ff7d53d0461906880dc9d64a41495ee1986 | 0 | 211 |
---
title: Preload Based on User Intent
impact: MEDIUM
impactDescription: reduces perceived latency
tags: bundle, preload, user-intent, hover
---
## Preload Based on User Intent
Preload heavy bundles before they're needed to reduce perceived latency.
**Example (preload on hover/focus):**
```tsx
function EditorButto... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/bundle-preload.md | Markdown | d1f7cc28da7cd5ab249acd287edc5b761afcfb194e9cb62cd44c5f3543db2de2 | 0 | 288 |
---
title: Deduplicate Global Event Listeners
impact: LOW
impactDescription: single listener for N components
tags: client, swr, event-listeners, subscription
---
## Deduplicate Global Event Listeners
Use `useSWRSubscription()` to share global event listeners across component instances.
**Incorrect (N instances = N ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/client-event-listeners.md | Markdown | 242a873349febc1ce685e85617994784dbab92c2eaa68aed7fed5a83e7680e93 | 0 | 509 |
---
title: Version and Minimize localStorage Data
impact: MEDIUM
impactDescription: prevents schema conflicts, reduces storage size
tags: client, localStorage, storage, versioning, data-minimization
---
## Version and Minimize localStorage Data
Add version prefix to keys and store only needed fields. Prevents schema ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/client-localstorage-schema.md | Markdown | 0fb7cdf9dc93fdf22f87e3669f953fb9d4ac9b0be42eec4a29fe9a2560610b88 | 0 | 460 |
---
title: Use Passive Event Listeners for Scrolling Performance
impact: MEDIUM
impactDescription: eliminates scroll delay caused by event listeners
tags: client, event-listeners, scrolling, performance, touch, wheel
---
## Use Passive Event Listeners for Scrolling Performance
Add `{ passive: true }` to touch and whe... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md | Markdown | 1f35016f9053de69e884ee9be00654e37979c2ca85f5e57764dc2626ff7acb4b | 0 | 388 |
---
title: Use SWR for Automatic Deduplication
impact: MEDIUM-HIGH
impactDescription: automatic deduplication
tags: client, swr, deduplication, data-fetching
---
## Use SWR for Automatic Deduplication
SWR enables request deduplication, caching, and revalidation across component instances.
**Incorrect (no deduplicati... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/client-swr-dedup.md | Markdown | 644652c39c6cc00de8d1c77a7273612e868dc3f7edda30764164c12ec0f764a3 | 0 | 319 |
---
title: Avoid Layout Thrashing
impact: MEDIUM
impactDescription: prevents forced synchronous layouts and reduces performance bottlenecks
tags: javascript, dom, css, performance, reflow, layout-thrashing
---
## Avoid Layout Thrashing
Avoid interleaving style writes with layout reads. When you read a layout property... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-batch-dom-css.md | Markdown | 480b891b9eaf96e929dc1e964274a4828e3a78009b7d00ccd965a0d425215959 | 0 | 762 |
---
title: Cache Repeated Function Calls
impact: MEDIUM
impactDescription: avoid redundant computation
tags: javascript, cache, memoization, performance
---
## Cache Repeated Function Calls
Use a module-level Map to cache function results when the same function is called repeatedly with the same inputs during render.... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-cache-function-results.md | Markdown | 3daaa11d24f4295cb6be8bc6f407f2ce83cc7b5bd1f0e68891ea8ab835721dc7 | 0 | 453 |
---
title: Cache Property Access in Loops
impact: LOW-MEDIUM
impactDescription: reduces lookups
tags: javascript, loops, optimization, caching
---
## Cache Property Access in Loops
Cache object property lookups in hot paths.
**Incorrect (3 lookups × N iterations):**
```typescript
for (let i = 0; i < arr.length; i++... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-cache-property-access.md | Markdown | 73e47431e74878a927061bf0ddc7cd91a7556cb35d2573f3421e82300d9ae311 | 0 | 150 |
---
title: Cache Storage API Calls
impact: LOW-MEDIUM
impactDescription: reduces expensive I/O
tags: javascript, localStorage, storage, caching, performance
---
## Cache Storage API Calls
`localStorage`, `sessionStorage`, and `document.cookie` are synchronous and expensive. Cache reads in memory.
**Incorrect (reads ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-cache-storage.md | Markdown | 11b826b0433898c1ece2d3547010d8e77db9fb240185748c45db91493de9b6cc | 0 | 425 |
---
title: Combine Multiple Array Iterations
impact: LOW-MEDIUM
impactDescription: reduces iterations
tags: javascript, arrays, loops, performance
---
## Combine Multiple Array Iterations
Multiple `.filter()` or `.map()` calls iterate the array multiple times. Combine into one loop.
**Incorrect (3 iterations):**
``... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-combine-iterations.md | Markdown | 71add08aeeb43091d4ff4c0b2842cce8b4bdef8ad3e732cc034bb5a84827e746 | 0 | 212 |
---
title: Early Return from Functions
impact: LOW-MEDIUM
impactDescription: avoids unnecessary computation
tags: javascript, functions, optimization, early-return
---
## Early Return from Functions
Return early when result is determined to skip unnecessary processing.
**Incorrect (processes all items even after fin... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-early-exit.md | Markdown | 925ce5ce87f3347186ca62212f29cc6baa2b8c85a96d2720ad07c3d0abf781c0 | 0 | 255 |
---
title: Use flatMap to Map and Filter in One Pass
impact: LOW-MEDIUM
impactDescription: eliminates intermediate array
tags: javascript, arrays, flatMap, filter, performance
---
## Use flatMap to Map and Filter in One Pass
**Impact: LOW-MEDIUM (eliminates intermediate array)**
Chaining `.map().filter(Boolean)` cre... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-flatmap-filter.md | Markdown | 9e5b166a41914d975bef7635467f8fb32cd98b5c3126c0bc6f163490812fb5f0 | 0 | 377 |
---
title: Hoist RegExp Creation
impact: LOW-MEDIUM
impactDescription: avoids recreation
tags: javascript, regexp, optimization, memoization
---
## Hoist RegExp Creation
Don't create RegExp inside render. Hoist to module scope or memoize with `useMemo()`.
**Incorrect (new RegExp every render):**
```tsx
function Hig... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-hoist-regexp.md | Markdown | f9e9aef2f7c2307dd7310f283df85dcada45fc43e9bb941b0c3aa414dec21ec4 | 0 | 337 |
---
title: Build Index Maps for Repeated Lookups
impact: LOW-MEDIUM
impactDescription: 1M ops to 2K ops
tags: javascript, map, indexing, optimization, performance
---
## Build Index Maps for Repeated Lookups
Multiple `.find()` calls by the same key should use a Map.
**Incorrect (O(n) per lookup):**
```typescript
fu... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-index-maps.md | Markdown | 5df1bdc2cfabb2c98abd55d26762e5c18189535c2e686184f426082e62920391 | 0 | 261 |
---
title: Early Length Check for Array Comparisons
impact: MEDIUM-HIGH
impactDescription: avoids expensive operations when lengths differ
tags: javascript, arrays, performance, optimization, comparison
---
## Early Length Check for Array Comparisons
When comparing arrays with expensive operations (sorting, deep equa... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-length-check-first.md | Markdown | 8b54a311c826b299272f29187fc58bc55772a04c4a72eeb29456ee96dc9fc624 | 0 | 388 |
---
title: Use Loop for Min/Max Instead of Sort
impact: LOW
impactDescription: O(n) instead of O(n log n)
tags: javascript, arrays, performance, sorting, algorithms
---
## Use Loop for Min/Max Instead of Sort
Finding the smallest or largest element only requires a single pass through the array. Sorting is wasteful an... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-min-max-loop.md | Markdown | 87dfb67e2f39df6ad8bcfb5b78c5fb364d3c07554ad188a202408d99f3763421 | 0 | 615 |
---
title: Defer Non-Critical Work with requestIdleCallback
impact: MEDIUM
impactDescription: keeps UI responsive during background tasks
tags: javascript, performance, idle, scheduling, analytics
---
## Defer Non-Critical Work with requestIdleCallback
**Impact: MEDIUM (keeps UI responsive during background tasks)**
... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-request-idle-callback.md | Markdown | ee08f83905b4011abbc33d594033157d77561b5bbd9b36b04f0f409581ffec32 | 0 | 582 |
---
title: Use Set/Map for O(1) Lookups
impact: LOW-MEDIUM
impactDescription: O(n) to O(1)
tags: javascript, set, map, data-structures, performance
---
## Use Set/Map for O(1) Lookups
Convert arrays to Set/Map for repeated membership checks.
**Incorrect (O(n) per check):**
```typescript
const allowedIds = ['a', 'b'... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-set-map-lookups.md | Markdown | a7fd781a6ba9ad49065961b6f9a90ef486bf6b648390e1a08704025f98e1642b | 0 | 188 |
---
title: Use toSorted() Instead of sort() for Immutability
impact: MEDIUM-HIGH
impactDescription: prevents mutation bugs in React state
tags: javascript, arrays, immutability, react, state, mutation
---
## Use toSorted() Instead of sort() for Immutability
`.sort()` mutates the array in place, which can cause bugs w... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md | Markdown | d0a5e1b0fec48a0a81397957e2f068e224329f7c42cb5feeed8aae6fa64025e8 | 0 | 486 |
---
title: Use Activity Component for Show/Hide
impact: MEDIUM
impactDescription: preserves state/DOM
tags: rendering, activity, visibility, state-preservation
---
## Use Activity Component for Show/Hide
Use React's `<Activity>` to preserve state/DOM for expensive components that frequently toggle visibility.
**Usag... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-activity.md | Markdown | 1e5e7eaf3555e61d6a2e900089c676527d26259501db5594f59544b6c664f85a | 0 | 134 |
---
title: Animate SVG Wrapper Instead of SVG Element
impact: LOW
impactDescription: enables hardware acceleration
tags: rendering, svg, css, animation, performance
---
## Animate SVG Wrapper Instead of SVG Element
Many browsers don't have hardware acceleration for CSS3 animations on SVG elements. Wrap SVG in a `<div... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md | Markdown | 9c6ae0ca7a51434e803887c64cded760956579a1452ccb80a461a03f9c937c77 | 0 | 296 |
---
title: Use Explicit Conditional Rendering
impact: LOW
impactDescription: prevents rendering 0 or NaN
tags: rendering, conditional, jsx, falsy-values
---
## Use Explicit Conditional Rendering
Use explicit ternary operators (`? :`) instead of `&&` for conditional rendering when the condition can be `0`, `NaN`, or o... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-conditional-render.md | Markdown | 2ec2fa23c4148285144687050c52369adba3da2fbe3d486f8d3e0aad8f06f2bc | 0 | 306 |
---
title: CSS content-visibility for Long Lists
impact: HIGH
impactDescription: faster initial render
tags: rendering, css, content-visibility, long-lists
---
## CSS content-visibility for Long Lists
Apply `content-visibility: auto` to defer off-screen rendering.
**CSS:**
```css
.message-item {
content-visibilit... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-content-visibility.md | Markdown | 64eee6d5b916fe74df33363994b27fc7f71bea3bcedc7ee04bda23107ca3e6e4 | 0 | 227 |
---
title: Hoist Static JSX Elements
impact: LOW
impactDescription: avoids re-creation
tags: rendering, jsx, static, optimization
---
## Hoist Static JSX Elements
Extract static JSX outside components to avoid re-creation.
**Incorrect (recreates element every render):**
```tsx
function LoadingSkeleton() {
return ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md | Markdown | 93b229560fae92005ed9a2a829064607b39b2e984e92d221d05b2d41df2b7c0e | 0 | 252 |
---
title: Prevent Hydration Mismatch Without Flickering
impact: MEDIUM
impactDescription: avoids visual flicker and hydration errors
tags: rendering, ssr, hydration, localStorage, flicker
---
## Prevent Hydration Mismatch Without Flickering
When rendering content that depends on client-side storage (localStorage, co... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md | Markdown | dc7ab358c67c177bca6e6f360fbc935ebe4efa928c0ba3ebd3f9f3d9e2000ca3 | 0 | 492 |
---
title: Suppress Expected Hydration Mismatches
impact: LOW-MEDIUM
impactDescription: avoids noisy hydration warnings for known differences
tags: rendering, hydration, ssr, nextjs
---
## Suppress Expected Hydration Mismatches
In SSR frameworks (e.g., Next.js), some values are intentionally different on server vs cl... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md | Markdown | 915bacb934e2927d84b37a3f3d225a47b309ac8f9e494ed2bcb66ce07c5676a2 | 0 | 202 |
---
title: Use React DOM Resource Hints
impact: HIGH
impactDescription: reduces load time for critical resources
tags: rendering, preload, preconnect, prefetch, resource-hints
---
## Use React DOM Resource Hints
**Impact: HIGH (reduces load time for critical resources)**
React DOM provides APIs to hint the browser a... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-resource-hints.md | Markdown | 351b1095d641717b930f1b2253282b7120af3023bc74e06c17675168d4286864 | 0 | 679 |
---
title: Use defer or async on Script Tags
impact: HIGH
impactDescription: eliminates render-blocking
tags: rendering, script, defer, async, performance
---
## Use defer or async on Script Tags
**Impact: HIGH (eliminates render-blocking)**
Script tags without `defer` or `async` block HTML parsing while the script ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-script-defer-async.md | Markdown | 4cea07b7875ba7fc2c7465ff23b63a2bb334f90aaf2d9293d38d67b05fdb32ab | 0 | 498 |
---
title: Optimize SVG Precision
impact: LOW
impactDescription: reduces file size
tags: rendering, svg, optimization, svgo
---
## Optimize SVG Precision
Reduce SVG coordinate precision to decrease file size. The optimal precision depends on the viewBox size, but in general reducing precision should be considered.
*... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-svg-precision.md | Markdown | ed468533f6e95f622859c884b122cf21f9f593ed6bb3d500a54de4b9f9bcb9fb | 0 | 151 |
---
title: Use useTransition Over Manual Loading States
impact: LOW
impactDescription: reduces re-renders and improves code clarity
tags: rendering, transitions, useTransition, loading, state
---
## Use useTransition Over Manual Loading States
Use `useTransition` instead of manual `useState` for loading states. This ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md | Markdown | 3a1249c3f13026b6f54ab5712c388df219d6af01b12aa542749acd99a46f4bc1 | 0 | 478 |
---
title: Defer State Reads to Usage Point
impact: MEDIUM
impactDescription: avoids unnecessary subscriptions
tags: rerender, searchParams, localStorage, optimization
---
## Defer State Reads to Usage Point
Don't subscribe to dynamic state (searchParams, localStorage) if you only read it inside callbacks.
**Incorre... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-defer-reads.md | Markdown | 234050a77faf50cb306be10a9e15bd4421134ab5907e75f13e6d78e2bd262dc9 | 0 | 232 |
---
title: Narrow Effect Dependencies
impact: LOW
impactDescription: minimizes effect re-runs
tags: rerender, useEffect, dependencies, optimization
---
## Narrow Effect Dependencies
Specify primitive dependencies instead of objects to minimize effect re-runs.
**Incorrect (re-runs on any user field change):**
```tsx... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-dependencies.md | Markdown | 17eb5830956fb56486fd3cfc7431f5849d39751730c05ad9e77dd4f0c27169c5 | 0 | 233 |
---
title: Calculate Derived State During Rendering
impact: MEDIUM
impactDescription: avoids redundant renders and state drift
tags: rerender, derived-state, useEffect, state
---
## Calculate Derived State During Rendering
If a value can be computed from current props/state, do not store it in state or update it in a... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md | Markdown | cb11ec76f50aa7b6847269f02d79b120c889a30d9ecd2c1d578f75144419c77a | 0 | 301 |
---
title: Subscribe to Derived State
impact: MEDIUM
impactDescription: reduces re-render frequency
tags: rerender, derived-state, media-query, optimization
---
## Subscribe to Derived State
Subscribe to derived boolean state instead of continuous values to reduce re-render frequency.
**Incorrect (re-renders on ever... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-derived-state.md | Markdown | 1c326bb67b01fb084eb00c8911b0a7cff54681c2315b629f88e49b64eaa6481d | 0 | 181 |
---
title: Use Functional setState Updates
impact: MEDIUM
impactDescription: prevents stale closures and unnecessary callback recreations
tags: react, hooks, useState, useCallback, callbacks, closures
---
## Use Functional setState Updates
When updating state based on the current state value, use the functional updat... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md | Markdown | 5e68df6b2ae8058e67f476ff1ac67bde159f5a9d18df439e46eabcdeb7b52e58 | 0 | 680 |
---
title: Use Lazy State Initialization
impact: MEDIUM
impactDescription: wasted computation on every render
tags: react, hooks, useState, performance, initialization
---
## Use Lazy State Initialization
Pass a function to `useState` for expensive initial values. Without the function form, the initializer runs on ev... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md | Markdown | 4ae844740f266fc8cbf050701230286624a2440ec5be67b9a63d9edc3c580573 | 0 | 465 |
---
title: Extract Default Non-primitive Parameter Value from Memoized Component to Constant
impact: MEDIUM
impactDescription: restores memoization by using a constant for default value
tags: rerender, memo, optimization
---
## Extract Default Non-primitive Parameter Value from Memoized Component to Constant
When m... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md | Markdown | 81c47476564ad8a79fc68fc442734255ca7d6829424359464503fda0a9f9a0dd | 0 | 274 |
---
title: Extract to Memoized Components
impact: MEDIUM
impactDescription: enables early returns
tags: rerender, memo, useMemo, optimization
---
## Extract to Memoized Components
Extract expensive work into memoized components to enable early returns before computation.
**Incorrect (computes avatar even when loadin... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-memo.md | Markdown | 1f258990c2f27ff6256b3cc5c43300631bb3f0d81f749aed08d07fcdcc131dd1 | 0 | 300 |
---
title: Put Interaction Logic in Event Handlers
impact: MEDIUM
impactDescription: avoids effect re-runs and duplicate side effects
tags: rerender, useEffect, events, side-effects, dependencies
---
## Put Interaction Logic in Event Handlers
If a side effect is triggered by a specific user action (submit, click, dra... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md | Markdown | abc2cbf167bee056743023351e96806a411d3398da8802093620aecf0721f029 | 0 | 320 |
---
title: Don't Define Components Inside Components
impact: HIGH
impactDescription: prevents remount on every render
tags: rerender, components, remount, performance
---
## Don't Define Components Inside Components
**Impact: HIGH (prevents remount on every render)**
Defining a component inside another component cre... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-no-inline-components.md | Markdown | 1cc32907a770272524ba682eef9e7efdd8ad4533b6f89b718a1fcd7d1d0eb6a3 | 0 | 530 |
---
title: Do not wrap a simple expression with a primitive result type in useMemo
impact: LOW-MEDIUM
impactDescription: wasted computation on every render
tags: rerender, useMemo, optimization
---
## Do not wrap a simple expression with a primitive result type in useMemo
When an expression is simple (few logical or ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md | Markdown | 5bdcf2d1558ba5204e643c887b7b4060f89630969425651eb68e96427d97f800 | 0 | 229 |
---
title: Split Combined Hook Computations
impact: MEDIUM
impactDescription: avoids recomputing independent steps
tags: rerender, useMemo, useEffect, dependencies, optimization
---
## Split Combined Hook Computations
When a hook contains multiple independent tasks with different dependencies, split them into separat... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-split-combined-hooks.md | Markdown | 6f45d703343484ef9acef9388397f3642966ae6a5a258899a0cf1f9977cfbf6c | 0 | 465 |
---
title: Use Transitions for Non-Urgent Updates
impact: MEDIUM
impactDescription: maintains UI responsiveness
tags: rerender, transitions, startTransition, performance
---
## Use Transitions for Non-Urgent Updates
Mark frequent, non-urgent state updates as transitions to maintain UI responsiveness.
**Incorrect (bl... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-transitions.md | Markdown | 60f4033909a62df5e5b8c601494f9e50a562e2f8c1c2d81eac24f38142265f1c | 0 | 258 |
---
title: Use useDeferredValue for Expensive Derived Renders
impact: MEDIUM
impactDescription: keeps input responsive during heavy computation
tags: rerender, useDeferredValue, optimization, concurrent
---
## Use useDeferredValue for Expensive Derived Renders
When user input triggers expensive computations or render... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-use-deferred-value.md | Markdown | 8c3579576a61a949884167745dcfaf1d5426ba305cc61fd0a79602d70fda4909 | 0 | 432 |
---
title: Use useRef for Transient Values
impact: MEDIUM
impactDescription: avoids unnecessary re-renders on frequent updates
tags: rerender, useref, state, performance
---
## Use useRef for Transient Values
When a value changes frequently and you don't want a re-render on every update (e.g., mouse trackers, interva... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md | Markdown | f1a649af9d1d0b5c762f6c9c4c1c70c90d7df82aa10296ee87aadb78c1b76c54 | 0 | 428 |
---
title: Use after() for Non-Blocking Operations
impact: MEDIUM
impactDescription: faster response times
tags: server, async, logging, analytics, side-effects
---
## Use after() for Non-Blocking Operations
Use Next.js's `after()` to schedule work that should execute after a response is sent. This prevents logging, ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-after-nonblocking.md | Markdown | d0b8d24a3db9f0f65f9e2bddbf230b0e03a5f60e1229d93a4a18f5e7a991c7c2 | 0 | 505 |
---
title: Authenticate Server Actions Like API Routes
impact: CRITICAL
impactDescription: prevents unauthorized access to server mutations
tags: server, server-actions, authentication, security, authorization
---
## Authenticate Server Actions Like API Routes
**Impact: CRITICAL (prevents unauthorized access to serve... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-auth-actions.md | Markdown | a2ca8aa102839251c7971ec784560fab943c20b36fe6f80365d4110c13260c23 | 0 | 635 |
---
title: Cross-Request LRU Caching
impact: HIGH
impactDescription: caches across requests
tags: server, cache, lru, cross-request
---
## Cross-Request LRU Caching
`React.cache()` only works within one request. For data shared across sequential requests (user clicks button A then button B), use an LRU cache.
**Impl... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-cache-lru.md | Markdown | 1924b64561841923b88a657085097a0aeba3e0ba2d5470b9f5c15cc10d6ae70f | 0 | 334 |
---
title: Per-Request Deduplication with React.cache()
impact: MEDIUM
impactDescription: deduplicates within request
tags: server, cache, react-cache, deduplication
---
## Per-Request Deduplication with React.cache()
Use `React.cache()` for server-side request deduplication. Authentication and database queries benef... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-cache-react.md | Markdown | fddeea6c870bb3da4134b61d54b7d09b83d2603f929b7547cd3dc1dc269edd5c | 0 | 571 |
---
title: Avoid Duplicate Serialization in RSC Props
impact: LOW
impactDescription: reduces network payload by avoiding duplicate serialization
tags: server, rsc, serialization, props, client-components
---
## Avoid Duplicate Serialization in RSC Props
**Impact: LOW (reduces network payload by avoiding duplicate ser... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-dedup-props.md | Markdown | c2747424cdac46be62f835f245a0aa887b0090b416d28e2ac8676702645eeb37 | 0 | 596 |
---
title: Hoist Static I/O to Module Level
impact: HIGH
impactDescription: avoids repeated file/network I/O per request
tags: server, io, performance, next.js, route-handlers, og-image
---
## Hoist Static I/O to Module Level
**Impact: HIGH (avoids repeated file/network I/O per request)**
When loading static assets ... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-hoist-static-io.md | Markdown | de88d2253038c197fc73c9a7109c372de0b8849c58bff5540f14b733ddeaa8dd | 0 | 896 |
**Correct (hoists config and template to module level):**
```typescript
import fs from 'node:fs/promises'
const configPromise = fs
.readFile('./config.json', 'utf-8')
.then(JSON.parse)
const templatePromise = fs.readFile('./template.html', 'utf-8')
export async function processRequest(data: Data) {
const [conf... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-hoist-static-io.md | Markdown | 7642b7f83317e60068bd9ea8ef39f30160492938156e256e5fce1144d80848b9 | 1 | 308 |
---
title: Avoid Shared Module State for Request Data
impact: HIGH
impactDescription: prevents concurrency bugs and request data leaks
tags: server, rsc, ssr, concurrency, security, state
---
## Avoid Shared Module State for Request Data
For React Server Components and client components rendered during SSR, avoid usi... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-no-shared-module-state.md | Markdown | 4d869bf1cd2f1632e5ca4c0e64b1cf0e71c5f5a0f940bc8a22174d205e735ed7 | 0 | 397 |
---
title: Parallel Data Fetching with Component Composition
impact: CRITICAL
impactDescription: eliminates server-side waterfalls
tags: server, rsc, parallel-fetching, composition
---
## Parallel Data Fetching with Component Composition
React Server Components execute sequentially within a tree. Restructure with com... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-parallel-fetching.md | Markdown | 569a2e9fc04f9606686cd75c5894ef8781b502786a7fffe241396846c7733472 | 0 | 378 |
---
title: Parallel Nested Data Fetching
impact: CRITICAL
impactDescription: eliminates server-side waterfalls
tags: server, rsc, parallel-fetching, promise-chaining
---
## Parallel Nested Data Fetching
When fetching nested data in parallel, chain dependent fetches within each item's promise so a slow item doesn't bl... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-parallel-nested-fetching.md | Markdown | ad5d9656984d4a959997a2367bf59cc6632297b4634a1dd13a087939d83f30b3 | 0 | 251 |
---
title: Minimize Serialization at RSC Boundaries
impact: HIGH
impactDescription: reduces data transfer size
tags: server, rsc, serialization, props
---
## Minimize Serialization at RSC Boundaries
The React Server/Client boundary serializes all object properties into strings and embeds them in the HTML response and... | openai-build-week | .agents/skills/vercel-react-best-practices/rules/server-serialization.md | Markdown | f4c7d68b29c82381baad059c4a7f09e868e71ec9c3115a26ad3ae7d24c0dfe1f | 0 | 251 |
{
"runtime": "codex",
"resolve_model_ids": false,
"model_profile": "adaptive",
"model_profile_overrides": {
"codex": {
"opus": "gpt-5.6-sol",
"sonnet": "gpt-5.6-terra",
"haiku": "gpt-5.6-luna"
}
},
"effort": {
"routing_tier_defaults": {
"light": "low",
"standard": "... | openai-build-week | .planning/config.json | JSON | c9f4fd1519c527f40b59c0fb60b5007a5013dc5998866876101aa352afc6ca62 | 0 | 411 |
# ReRoom
## What This Is
ReRoom is a camera-grounded room-editing product for placing, replacing, removing, and restoring one controlled freestanding chair or small table. Mode A is a native SwiftUI iPhone experience with ARKit world authority; a separate Next.js Mode B0 client provides guaranteed capture replay, ins... | openai-build-week | .planning/PROJECT.md | Markdown | d93038c7f1181065ae3969a59f7389a819434e39e76d27902f74b11106e69615 | 0 | 896 |
chair or small table with visible floor.
- Rear-LiDAR dependence on the base iPhone 17 path - prohibited by the human lock.
- Model-owned mutation, hidden automatic merge, or renderer/provider index identity - deterministic application code and stable prefixed IDs remain authoritative.
## Runtime and Delivery Context
... | openai-build-week | .planning/PROJECT.md | Markdown | 633849560e293b8e2c5245caae66da92f95c866b5848ccd73818936d91d50a86 | 1 | 896 |
:** P0 exposes exactly `place`, `replace`, `remove`, and `restore`; undo invokes restore. Mode B0 is guaranteed. B1 and XR remain outside the P0 critical path. Removal may be unavailable in unsupported sessions, but controlled-fixture removal remains a release gate.
#### ADR-002 - Native iPhone hero and separate web c... | openai-build-week | .planning/PROJECT.md | Markdown | 74debd1ea47d08b4f01e84d063bd400fa83daf32a10719379ff0203b339e716b | 2 | 896 |
. Ordinary-video replay is supported without fabricating optional trajectory or geometry.
#### ADR-014 - Minimal service topology and hardware tiers
**Status:** Locked (Accepted)
**Decision:** Use native/web clients, a gateway that validates and durably replicates active phone branches and may own distinct B0 forks,... | openai-build-week | .planning/PROJECT.md | Markdown | 801228f976fe4b1853cd92366c0e88d17dd91a13ddd8e8121bb59d8cb9b982a9 | 3 | 896 |
poses; observed-only atlas, deterministic local fill, and the simplest license-approved fallback if already available. Pass requires p10 target coverage at least 0.95, median coverage at least 0.98, no uncovered component over 1%, no severe foreground overwrite, correct seam/surface order, and at least 4/5 of exactly f... | openai-build-week | .planning/PROJECT.md | Markdown | 039eccd5f7cbab2755f3c514524469c18aa9665ec650def659ab9011e4ffed4f | 4 | 336 |
# Requirements: ReRoom
**Defined:** 2026-07-15
**Core Value:** Trustworthy camera-grounded room editing where users can place, replace, remove, and restore one controlled freestanding chair or small table while deterministic application code retains spatial, persistence, transaction, and replay authority.
Canonical ... | openai-build-week | .planning/REQUIREMENTS.md | Markdown | 9eca41a8f733e6258f8415b0619d4d1290cac9705ae596440d7e74503c6c0fa5 | 0 | 896 |
target/session, supply transforms, authorize, confirm, or commit.
- [ ] **FR-B0-001 - Guaranteed `.rrcap` replay:** Replay accepted FramePackets and events from finalized or recovered-prefix `.rrcap` input without a learned reconstruction provider or live network.
- Acceptance: Two runs match global-journal digests, ... | openai-build-week | .planning/REQUIREMENTS.md | Markdown | 8a2f3033da1b1c7483b0d3ad5ddf93281f030368d1028833e46538536a2c7e22 | 1 | 896 |
bundles, or the phone; clients receive scoped short-lived credentials only when supported.
- Acceptance: Secret scan passes; Realtime uses a server-created scoped ephemeral secret/session if that stretch path is enabled; authorization headers are redacted; invalid or expired credentials fail closed.
- [ ] **SEC-RETEN... | openai-build-week | .planning/REQUIREMENTS.md | Markdown | a8cca24d2ebaec43d3903b6228e936a29d1c445334eab885d5b7a314246a13b0 | 2 | 896 |
spatial, provenance-explicit, and limited to a measured supported-view envelope. |
| Model-authorized edits | Models may propose semantic/design intent only; deterministic code authorizes every mutation. |
| Mode A parity claims for B0 | B0 is a guaranteed replay/inspection/fallback surface with honest degradation. |
... | openai-build-week | .planning/REQUIREMENTS.md | Markdown | 0ed4e7ec8b8c2d3ba159ff4175e765a10737b2ba0242b73a3ad7f542a58f3c56 | 3 | 486 |
# Roadmap: ReRoom
## Overview
ReRoom advances through replayable dependency and risk slices: prove closed contracts and the physical base-device path; establish atomic capture and exact replay; complete typed place/commit/offline restore; retire target/compositor risk; deliver replacement; pass controlled multi-surfa... | openai-build-week | .planning/ROADMAP.md | Markdown | dd9cf8599f7f9b983ffe1a9fbccfc93b149a2ddc43492fd2e1f055a9e3f38dc7 | 0 | 896 |
PLAN.md
- [ ] 01-10-PLAN.md
- [ ] 01-11-PLAN.md
- [ ] 01-12-PLAN.md
- [ ] 01-13-PLAN.md
- [ ] 01-14-PLAN.md
**Wave 1**
- [x] 01-01 — Freeze closed fixture/result schemas and immutable contract/JCS/coordinate oracle.
- [x] 01-02 — Define canonical sanitized gate/checklist evidence, including human-only waiver rules.
-... | openai-build-week | .planning/ROADMAP.md | Markdown | 2ecabaa88a58c80b06d30fa20e236725fb565b655dd6dbaa743a1df5a530c7ed | 1 | 896 |
2
**Requirements**: FR-PLACE-001, FR-RESTORE-001, FR-TRANSACTION-001, FR-AGENT-001
**Gates**: GATE-009, GATE-010 (typed/agent safety; optional voice remains stretch)
**Success Criteria** (what must be TRUE):
1. A user can place a validated curated asset on supported geometry, see a stable preview at the unchanged ba... | openai-build-week | .planning/ROADMAP.md | Markdown | be1ce4ac1d36837ac167b0f2864f87724b1d6278da682ebdef0969ccf68a9761 | 2 | 896 |
*Success Criteria** (what must be TRUE):
1. The controlled hero capture passes `GATE-006`: coverage p10 at least 0.95, median at least 0.98, no uncovered component over 1%, correct multi-surface order, no severe foreground overwrite, and at least 4/5 of exactly five blinded votes.
2. A removal commit pins the vali... | openai-build-week | .planning/ROADMAP.md | Markdown | 20853747f325a14fb581dbe1342925ff9f80fafd90894055b200af2de28310c0 | 3 | 896 |
-> 8.
- The provider-independent web path is Phase 2 -> 3 -> 7 -> 8. Phase 7 does not depend on learned geometry or completion of native replacement/removal, though the final P0 gate requires both paths.
- No phase is assigned to a person. If later execution permits concurrency, at most two implementation-critical stre... | openai-build-week | .planning/ROADMAP.md | Markdown | cdeb091174610b004631aabdc2a2eeb6e20611bfad3b7b57f937b4d8edc93afe | 4 | 415 |
---
gsd_state_version: 1.0
milestone: v1.0
milestone_name: milestone
current_phase: 01
current_phase_name: Contract and Device Proof
status: executing
stopped_at: Completed 01-05-PLAN.md
last_updated: "2026-07-16T12:29:09.592Z"
last_activity: 2026-07-16
last_activity_desc: Phase 01 execution started
progress:
total_p... | openai-build-week | .planning/STATE.md | Markdown | cb4795a48c4ac1a3b9479679fd498a99d2b9c48907271a4063206fdaa6a836c7 | 0 | 896 |
human authority boundary and retain RED as non-success evidence.
- [Phase 01]: Plan 01-05: JavaScript parses untrusted fixture JSON with bounded duplicate-aware and Unicode-strict handling before validation or canonicalization.
- [Phase 01]: Plan 01-05: RRFP output remains the exact trailer-less 24-byte-header format, ... | openai-build-week | .planning/STATE.md | Markdown | 7821c22c1ae7b80f43e1b7f8f773eac192670770babe5e1df477a255beb2d88b | 1 | 347 |
# Synthesized Constraints
These entries consolidate seven SPEC-classified sources into non-overlapping technical constraints. Field and lifecycle detail remains authoritative in the cited JSON Schema.
## System architecture and authority boundary
- source: docs/canonical/MASTER_TECHNICAL_SPEC.md
- type: nfr
- conten... | openai-build-week | .planning/intel/constraints.md | Markdown | 38a61c12301a59b1647d5c5a0d66fcb7ad37a1bdd41a2b4f99fe7a829d592dcf | 0 | 896 |
source: docs/contracts/scene-state.schema.json
- type: schema
- content: SceneState is a closed `1.0.0` object with explicit revision authority/branch, monotonic scene revision, one ARKit world epoch, stable surfaces/objects/support/assets/history, and timestamps. Native-device and replay-gateway authorities are distin... | openai-build-week | .planning/intel/constraints.md | Markdown | 9fe752b137f02afae63371c7d00d93e64730d0a241faa4a05e397d1fc728e445 | 1 | 896 |
protocol
- content: P0 forward operations have exact orders: place creates one asset/support atomically; replace hides then creates, optionally activating reveal first; remove activates reveal then hides; restore applies one snapshot. RR-EDIT-PROJECTION-1 contains only complete edit-managed object state, placed assets ... | openai-build-week | .planning/intel/constraints.md | Markdown | 3ebbb9223baba9a3b3b4acce57aa5f43572ae2ab71d2d845d6a91b6085058cbf | 2 | 138 |
# Synthesized Context
DOC-classified material is retained as topic-keyed, source-attributed verbatim notes. Each excerpt is fenced with a fresh randomized data delimiter because source documents are treated as untrusted input.
## Canonical authority and locked scope
- source: docs/canonical/README.md
- precedence: -... | openai-build-week | .planning/intel/context.md | Markdown | 94dd59053fc1b57520416d076982f6a4cda448ae5e3243ae9e1b8772a220e20a | 0 | 896 |
/PRD.md), terminology by [GLOSSARY_AND_ID_REGISTRY.md](../../docs/canonical/GLOSSARY_AND_ID_REGISTRY.md), contract fields by `docs/contracts/`, and final kill decisions by [RISK_AND_KILL_GATES.md](../../docs/canonical/RISK_AND_KILL_GATES.md).
All numeric acceptance values in this plan are explicitly labeled **TARGET**... | openai-build-week | .planning/intel/context.md | Markdown | 1ecced3162e213ebefd67e74d81584f9db34aee1ea12cf528c00cabf962ea392 | 1 | 345 |
# Synthesized Decisions
Mode: `new`. Precedence uses each classification's manifest override; lower integers are stronger. Human-locked authority from `docs/canonical/README.md` at precedence `-10` remains above Accepted ADRs at `0`. Every decision below is preserved independently.
This file is an ingest index, not a... | openai-build-week | .planning/intel/decisions.md | Markdown | caf53afe0f8c84801341b820f9b6c47033846b15f5ac052fe71ae68c2669edad | 0 | 896 |
. Dense processing may add surface, collision, occlusion, and B0 evidence, but cannot rewrite stable IDs or committed transactions. A mask volume is not collision-quality geometry.
## ADR-007 — Versioned segmentation and depth providers
- source: docs/adr/ADR-007-segmentation-and-depth-providers.md
- status: proposed... | openai-build-week | .planning/intel/decisions.md | Markdown | 1fa5e156d22d1d8389a83531f450f3192c6c999820448d65e6d89ede9ba7f02f | 1 | 896 |
: capture import, manifest/hash validation, exact packet/event replay, timeline and processing state, canonical inspection, typed transactions on the shared service, and degraded visualization. Ordinary-video replay is supported, while estimated trajectory/geometry remains explicitly optional and capability-gated.
## ... | openai-build-week | .planning/intel/decisions.md | Markdown | a3d756b8019c11f1503c42565d25645d0fba68ea7a36db22122f3e0fb127822f | 2 | 188 |
# Synthesized Requirements
The PRD already owns stable requirement IDs, so no derived `REQ-*` aliases are introduced. All entries have the same source and precedence; acceptance text is condensed without changing thresholds or gate semantics.
## FR-CAPTURE-001 — Atomic record-first capture
- source: docs/canonical/P... | openai-build-week | .planning/intel/requirements.md | Markdown | a040b43a374021d6baeff19cbd10e21363d29d962042bfdec5b2c0f8bc46180f | 0 | 896 |
specific reducer/check order are required; canonical edit state and support relations materialize atomically; commit changes `r` to `r+1`; same key/fingerprint returns the prior result, changed content conflicts; stale/wrong authority rejects; offline replication is idempotent; divergence is quarantined without automat... | openai-build-week | .planning/intel/requirements.md | Markdown | e5ee6a05f941fa035dec70c4d0feed8f352c27b9f29c29a869eb392081486093 | 1 | 896 |
max for capture, durability, queues, upload, inference, artifact acceptance, preview, commit, and mask age. Target mask age p95 is at most 250 ms on an advertised tier or the capability degrades.
## NFR-RESILIENCE-001 — Tracking/network/offline resilience
- source: docs/canonical/PRD.md
- priority: P0
- scope: local ... | openai-build-week | .planning/intel/requirements.md | Markdown | dfca4f073aa656fc67f5106aa99a1da56f0d20d36c13e7eb9ec5bb22b2ffb510 | 2 | 896 |
provenance and terms
- description: Every shipped artifact has an exact version/digest, source, applicable terms, attribution, and explicit use/redistribution decision.
- acceptance criteria: The shipping bill of materials contains no unknown or noncommercial dependency and retains separate code/weight/asset evidence; ... | openai-build-week | .planning/intel/requirements.md | Markdown | ac3ae256e6666e8eef1707b3b3f443888539a60718594d9519ba29c60af82c2a | 3 | 517 |
# Documentation Synthesis
Mode: `new`
All 28 manifest-classified documents were consumed using their per-document precedence overrides. Lower integers are stronger: canonical human-lock index `-10`, Accepted ADRs `0`, Provisional ADRs `10`, specifications/contracts `20`, PRD `30`, and supporting canonical documents `... | openai-build-week | .planning/intel/SYNTHESIS.md | Markdown | 542bb035d466951f735b58926d4d62c5bacef39ac50e5ee5d207df36957361d9 | 0 | 896 |
: [requirements.md](requirements.md)
## Constraints
- Total synthesized constraints: 13
- Type breakdown: 3 nfr, 5 protocol, 3 schema, 2 api-contract
- Sources: Master Technical Spec, contracts README, and CON-001 through CON-005 schemas
- Detail: [constraints.md](constraints.md)
## Context
- Topics: 6
- Topics: ca... | openai-build-week | .planning/intel/SYNTHESIS.md | Markdown | 40983bf2c5453e7a557edcd3c105712b898869ca1f0e3701dd31989e62e5faf0 | 1 | 249 |
# Onboarding Summary
## Project State
- PROJECT.md: present
- REQUIREMENTS.md: present
- ROADMAP.md: present
- STATE.md: present
## Codebase Context
- Brownfield repo: no
- Map readiness: none
- Codebase map: missing
- Fast map available: no
## Docs Context
- Existing ADR/PRD/SPEC/RFC candidates: 17
## Recommended ... | openai-build-week | .planning/onboarding/SUMMARY.md | Markdown | 9db23432b9156b681e5f923d247f1f1b9800edce4b1ea1c7d34284582e56ec9e | 0 | 84 |
---
phase: 01-contract-and-device-proof
plan: "01"
type: execute
wave: 1
depends_on: []
files_modified:
- fixtures/manifest.schema.json
- fixtures/runner-result.schema.json
- fixtures/contracts/1.0.0/rev-001/
- fixtures/policies/RR-JCS-SHA256-1/rev-001/
- fixtures/policies/RR-COORD-1/rev-001/
autonomous: true... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-01-PLAN.md | Markdown | ddef7ecee845dbfa7f640addb705380e5b23ef2020100fdbaa76b1a66f540b70 | 0 | 896 |
and case counts. Require lexicographic case ordering and exact expected artifact hashes; generators are proposal tools and never an oracle.</action>
<acceptance_criteria>Both files parse as Draft 2020-12 JSON Schemas, are closed, and contain all named required fields and bounds.</acceptance_criteria>
<verify><autom... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-01-PLAN.md | Markdown | a0e2665768da198c9076f78968535f971f20f87dd1a8fdcc82caad8ddf54bef1 | 1 | 896 |
and inclusive/exclusive schema boundaries. |
| NFR-CONTRACT-001 empty | Truth 2: exact null/empty schema behavior, no defaults. |
| NFR-CONTRACT-001 ordering | Truth 3: normative arrays, JCS objects, stable case order. |
## Artifacts this phase produces
- Files/directories listed in `files_modified`.
- Test-only symbo... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-01-PLAN.md | Markdown | 7db8d33578cc19451cd2bba166f94cb5f0d61c45be5ee166db575f47202d1c43 | 2 | 166 |
---
phase: 01-contract-and-device-proof
plan: "01"
subsystem: testing
tags: [json-schema, fixtures, jcs, sha256, coordinates, rrfp]
requires: []
provides:
- Closed FixtureManifestV1 and RunnerResultV1 envelopes
- Immutable CON-001 through CON-005 contract oracle revision
- Immutable RR-JCS-SHA256-1 and RR-COORD-... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-01-SUMMARY.md | Markdown | e2cf64e3b35519c3b692d9121852c6a5da873c7a0d8b4bb9ac32dc5314e19572 | 0 | 896 |
- `fixtures/policies/RR-JCS-SHA256-1/rev-001/` - FX-JCS-001 raw inputs, authoritative JCS bytes, and digests.
- `fixtures/policies/RR-COORD-1/rev-001/` - FX-COORD-001 coordinate/RR-FLOAT vectors and exact RRFP wire oracle.
## Decisions Made
- Followed D-09 through D-12: one language-neutral corpus, checked-in expecta... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-01-SUMMARY.md | Markdown | 910d42a5771d7f4af5ba784a670cc40a3d4a4edc4c8a2cfaebfed81109c2f082 | 1 | 629 |
---
phase: 01-contract-and-device-proof
plan: "02"
type: execute
wave: 1
depends_on: []
files_modified:
- evidence/templates/gate-report.schema.json
- evidence/templates/operator-checklist.schema.json
- evidence/templates/README.md
- evidence/fixtures/
- tools/verify/tests/test_evidence_templates.py
autonomou... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-02-PLAN.md | Markdown | 655b9383741a787074503553c27e4dffae750652e51aada3eccde84e63212408 | 0 | 896 |
-contract-and-device-proof/01-CONTEXT.md</read_first>
<action>Add valid UNRUN/RUNNING/RED/GREEN/WAIVED fixtures and invalid private-field/approval fixtures. Document sanitize-first/serialize-second, opaque external artifact IDs/digests, TARGET versus MEASURED, RED D-16 routing, and the waiver escalation process. Forb... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-02-PLAN.md | Markdown | ab2dc4f2fbe6440fd82c997f21b5e28d159b57c701a15e3297872bf36efb0ef7 | 1 | 414 |
---
phase: 01-contract-and-device-proof
plan: "02"
subsystem: testing
tags: [json-schema, evidence, privacy, gate-lifecycle, human-approval]
requires: []
provides:
- Closed GateReportV1 and OperatorChecklistV1 evidence envelopes
- Human-only GREEN and WAIVED_BY_HUMAN approval constraints
- Sanitized valid/invali... | openai-build-week | .planning/phases/01-contract-and-device-proof/01-02-SUMMARY.md | Markdown | 40916bbb7de4379e48cc8b73e4fc44c25526b0a540289effadfbbdd068b2b50a | 0 | 896 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.