Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:1.177
forks:110
updated:22. Februar 2026 um 12:29
SKILL.md
| name | lazy-prefetch-pattern |
| description | Skill: lazy-prefetch-pattern |
Goal: start prefetchQuery() early on the server without awaiting, so it doesn't block SSR / Suspense, while still hydrating on the client.
trpc/query-client.ts:
dehydrate.shouldDehydrateQuery includes query.state.status === "pending".dehydrate.serializeData / hydrate.deserializeData use SuperJSON.In a Server Component (e.g. app/(chat)/layout.tsx):
getQueryClient() from @/trpc/server)void (no await):
void queryClient.prefetchQuery(trpc.foo.bar.queryOptions(...))HydrateClient/HydrationBoundary dehydrate the cache.Use await only for data you must have before rendering (everything else should be lazy-prefetched).
General repo context and behavior guidelines
Skill: chat-context
General repo context and behavior guidelines
Documentation review and fix workflow for MDX files
Skill: react
Skill: trpc-patterns