Skip to main content

TanStack/ai

SkillsMP a collecté 45 skills depuis TanStack/ai. Ouvrez un skill pour examiner sa source et ses détails.

Dernière activité source enregistrée
Catalogue SkillsMP mis à jour
skills collectés
45
Étoiles GitHub
3 045
Forks GitHub
313

Skills dans ce dépôt

1 catégories métier · 42% classifié

Affichage de 40 skills collectés sur 45.

métier
non classé
description

Entry point for TanStack AI skills. Routes to chat-experience, tool-calling, media-generation, structured-outputs, adapter-configuration, ag-ui-protocol, middleware, locks, custom-backend-integration, and debug-logging, plus the skills shipped by companion…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Portable Agent Skills (SKILL.md) for TanStack AI with @tanstack/ai-skills. Renders a skill catalog and a load_skill tool via the withSkills middleware so any tool-calling model loads skills on demand, on any provider. Covers the SkillSource interface,…

Langue du texte source : anglais

mis à jour
métier
non classé
description

does the alpha thing

Langue du texte source : Indéterminée

mis à jour
métier
non classé
description

does the beta thing

Langue du texte source : Indéterminée

mis à jour
métier
non classé
description

ratio is 2:1 and it still parses

Langue du texte source : anglais

mis à jour
métier
non classé
description

Retell the answer as a short story told mostly in emoji.

Langue du texte source : anglais

mis à jour
métier
non classé
description

Answer only as a haiku, three lines of 5-7-5 syllables.

Langue du texte source : anglais

mis à jour
métier
non classé
description

Answer entirely as a boisterous pirate, with nautical slang and "arrr".

Langue du texte source : anglais

mis à jour
métier
non classé
description

Treats bug-fix pull requests as invasive and untrusted. The agent must security-scan the PR first, must not run any command supplied by the author or issue, must reproduce the claimed bug on clean main with an agent-written repro, and must reject hunks that…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Use when writing a pull request title or body, when about to run gh pr create, when about to git push on a branch that already has an open PR, or when the user says /pr-description, "write the PR description", or "update the PR title". Don't use for commit…

Langue du texte source : anglais

mis à jour
métier
non classé
description

End-to-end chat implementation: server endpoint with chat() and toServerSentEventsResponse(), client-side useChat hook with fetchServerSentEvents(), message rendering with UIMessage parts, multimodal content, thinking/reasoning display. Covers streaming…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Use when writing, editing, or organizing documentation, when planning what docs a feature needs, and whenever planning or implementing a new feature or change in a repo (docs ship with the code). Also use when tempted to write docs without showing the…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Audit TanStack AI provider adapters for feature parity gaps and outdated model lists. Triggered as /gap-analysis <provider|feature <name>|models|--all>. Produces a dated markdown report under .agent/gap-analysis/. Maintainer tool — does not edit…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Use when the user invokes /i-have-adhd, says they have ADHD, or asks for ADHD-friendly output. Also used as a required writing filter by the docs skill. Don't use for marketing copy or after the user says "stop adhd mode" or "normal mode".

Langue du texte source : anglais

mis à jour
métier
non classé
description

Write or rewrite technical text with the rules of ASD-STE100 Simplified Technical English so it is clear, unambiguous, and free of AI slop. Use for documentation, READMEs, runbooks, procedures, error messages, release notes, incident reports, and API guides.…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Triage all open GitHub issues, PRs, and discussions in the current repository by fanning out up to 100 parallel subagents (one per item), then produce a single prioritized report ranking which PRs to review first, which issues to address first, and which…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Sweep open (or listed) PRs with up to 100 parallel agents: security-scan outside contributors, rebase onto main when behind (push --force-with-lease), approve pending first-time-contributor CI when relevant, optionally rebase in-house PRs, and report who…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Server chat state with withPersistence from @tanstack/ai-persistence. Authoritative transcript, run lifecycle, durable interrupts/approvals, chatParamsFromRequest, reconstructChat, snapshotStreaming. Use when the server owns history, multi-device, or durable…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Durability and state persistence for TanStack AI chats with @tanstack/ai-persistence. Routes to server chat persistence (withPersistence), client persistence (localStorage/IndexedDB), the store contracts, and adapter recipes. Distinguishes delivery durability…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Chat lifecycle middleware hooks: onConfig, onStart, onChunk, onBeforeToolCall, onAfterToolCall, onUsage, onFinish, onAbort, onError. Use for analytics, event firing, tool caching (toolCacheMiddleware), logging, and tracing. Middleware array in chat() config,…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Type-safe JSON schema responses from LLMs using outputSchema on chat() and useChat(). Supports Zod, ArkType, and Valibot schemas. The adapter handles provider-specific strategies transparently — never configure structured output at the provider level. Pass…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Use when a Cloudflare Worker needs durable byte storage for TanStack AI generated media (images, audio, video, transcripts) — writes a BlobStore backed by R2 and an ArtifactStore backed by D1, composes them onto the generation persistence so…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Run harness adapters (Claude Code, Codex, OpenCode) INSIDE isolated sandboxes via defineSandbox + withSandbox + a provider (localProcessSandbox / dockerSandbox). Covers declarative provisioning: createSecrets + secret/bearer, skills…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Forces the laziest solution that actually works, simplest, shortest, most minimal. Channels a senior dev who has seen everything: question whether the task needs to exist at all (YAGNI), reach for the standard library before custom code, native platform…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Image, audio, video, speech (TTS), and transcription generation using activity-specific adapters: generateImage() with openaiImage/geminiImage/byteplusImage, generateAudio() with geminiAudio/falAudio, generateVideo() with async polling…

Langue du texte source : anglais

mis à jour
métier
non classé
description

Isomorphic tool system: toolDefinition() with Zod schemas, .server() and .client() implementations, passing tools to both chat() on server and useChat/clientTools on client, tool approval flows with needsApproval and bound interrupts (resolveInterrupt),…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Provider adapter selection and configuration: openaiText, anthropicText, geminiText, ollamaText, grokText, groqText, openRouterText, bedrockText, byteplusText, openaiCompatible. Per-model type safety with modelOptions, reasoning/thinking configuration,…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Implement the MessageStore, RunStore, InterruptStore, MetadataStore contracts for @tanstack/ai-persistence against any database. defineAIPersistence, composePersistence overrides, critical invariants (full-replace saveThread, insert-if-absent createOrResume…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

LLM-generated TypeScript execution in sandboxed environments: createCodeModeTool() with isolate drivers (createNodeIsolateDriver, createQuickJSIsolateDriver, createQuickJSBunIsolateDriver, createCloudflareIsolateDriver), codeModeWithSnippets() for persistent…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Host-side Model Context Protocol (MCP) client for TanStack AI: connect to external MCP servers, discover and run their tools inside any adapter's chat() loop, read resources and prompts, generate TypeScript types (typed tool names/pool keys) with the bundled…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Use when a Cloudflare Worker needs TanStack AI chat persistence — writes a chat-persistence.ts into the app against its D1 binding (raw or via Drizzle), plus a Durable Object LockStore. Covers per-request bindings, wrangler config, D1 migrations, and…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Use when an app needs TanStack AI chat persistence on a database with no dedicated recipe — raw Postgres (pg/postgres.js), Kysely, node:sqlite, MongoDB, Supabase, Redis. Writes a chat-persistence.ts against the app's existing client, covering the four stores,…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Use when an app already runs Drizzle ORM and needs TanStack AI chat persistence — writes a chat-persistence.ts into the app against its existing db handle, schema file, and drizzle-kit journal. Covers the four tables (SQLite/Postgres/MySQL), the onConflict…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Use when an app already runs Prisma and needs TanStack AI chat persistence — writes a chat-persistence.ts into the app against its existing PrismaClient and schema.prisma. Covers the four models, BigInt timestamps, JSON-as-string columns,…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Server-side AG-UI streaming protocol implementation: StreamChunk event types (RUN_STARTED, TEXT_MESSAGE_START/CONTENT/END, TOOL_CALL_START/ARGS/END, RUN_FINISHED, RUN_ERROR, STEP_STARTED/STEP_FINISHED, STATE_SNAPSHOT/DELTA, CUSTOM), toServerSentEventsStream()…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Browser chat persistence on useChat / ChatClient: localStoragePersistence, sessionStoragePersistence, indexedDBPersistence. Client-authoritative (adapter, full transcript) vs server-authoritative (persistence: true, no client cache). Reload restore, pending…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Connect useChat to a non-TanStack-AI backend through custom connection adapters. ConnectConnectionAdapter (single async iterable) vs SubscribeConnectionAdapter (separate subscribe/send). Customize fetchServerSentEvents() and fetchHttpStream() with auth…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Pluggable, category-toggleable debug logging for TanStack AI activities. Toggle with `debug: true | false | DebugConfig` on chat(), summarize(), generateImage(), generateSpeech(), generateTranscription(), generateVideo(). Categories: request, provider,…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

LockStore, InMemoryLockStore, LocksCapability and withLocks for multi-instance coordination in TanStack AI. Ships in @tanstack/ai — NOT in @tanstack/ai-persistence. Separate from AIPersistence state stores — not a stores key, not composable. InMemoryLockStore…

Langue du texte source : anglais

mis à jour
métier
Développeurs de logiciels
description

Use when wiring hindsight() from @tanstack/ai-memory/hindsight — a hosted memory adapter that buckets memory per conversation and exposes retain/recall/reflect tools to the model. Requires the optional @vectorize-io/hindsight-client peer.

Langue du texte source : anglais

mis à jour
Affichage de 40 skills collectés sur 45.