> ## Documentation Index
> Fetch the complete documentation index at: https://docs.curvelabs.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Testing and migration

> Run cookbook checks and adapt chat SDK apps for ThinkFeel.

Use the shipped scripts first, then move to live tests only after environment configuration is confirmed.

## Next.js cookbook scripts

```bash theme={null}
npm run dev
npm run test
npm run typecheck
npm run build

# Optional live smoke test
npm run test:live
```

## Chat SDK changes

* Replace streaming responses with non-stream completion calls for ThinkFeel.
* Use persona UUID as the completion model identifier.
* Send full multi-turn message history on each request.
* Do not assume token streaming in client transport or UI state.
