
Skill
tanstack-ai-memory-honcho
wire TanStack AI memory honcho adapter
Description
Use when wiring honcho() from @tanstack/ai-memory/honcho — a hosted memory adapter where recall is a dialectic answer over the user's representation (no discrete fragments). Requires the optional @honcho-ai/sdk peer.
SKILL.md
Honcho Memory Adapter
Hosted recall/save adapter backed by Honcho. Honcho models memory as peers
exchanging messages in a session; recall returns a synthesized dialectic answer
over the user peer's representation (so there are no discrete fragments), and save
appends the turn's messages to the session.
Setup
import { memoryMiddleware } from '@tanstack/ai-memory'
import { honcho } from '@tanstack/ai-memory/honcho'
const memory = honcho({ user: currentUserId }) // baseURL defaults to HONCHO_URL
memoryMiddleware({ adapter: memory, scope })
@honcho-ai/sdk is an optional peer dependency, loaded lazily on first use — install
it where you use honcho().
Options
user— user peer id (falls back toscope.userId, then'demo-user').baseURL— Honcho server URL (defaultHONCHO_URLorhttp://localhost:8001).workspaceId— defaultHONCHO_APP_NAMEor'ai-memory'.apiKey— defaultHONCHO_API_KEY.assistantId— assistant peer id (default'assistant').
Scope fields: session key = {tenantId|_}__{threadId}; peer id is
{tenantId}__{user} when tenantId is set, otherwise user / scope.userId.
namespace is ignored.
recall calls the user peer's dialectic chat() and injects the answer as the system
prompt; Honcho exposes no LLM tools.
More skills from the ai repository
View all 19 skillsai-code-mode
execute sandboxed TypeScript code with LLMs
Jul 16AI SDKCode ExecutionSandboxingTanStack +1ai-core
configure TanStack AI agent features
Jul 17AgentsAIMiddlewareai-core/adapter-configuration
configure AI provider adapters
Jul 16AI SDKConfigurationLLMTanStackai-core/ag-ui-protocol
implement TanStack AI streaming protocol
Jul 16API DevelopmentLLMTanStackai-core/chat-experience
implement chat experiences with TanStack AI
Jul 23API DevelopmentFrontendLLMTanStackai-core/custom-backend-integration
integrate custom backends with TanStack AI
Jul 17AIAPI DevelopmentBackendTanStack
More from TanStack
View publisheraggregation
perform data aggregation in TanStack Table
table
Jul 26Data AnalysisFrontendTanStackapi-not-found
diagnose TanStack Table API errors
table
Jul 26DebuggingFrontendTanStackcell-selection
select rectangular cell ranges in tables
table
Jul 26Data AnalysisTanStackUI Componentsclient-vs-server
manage TanStack Table data pipelines
table
Jul 26Data PipelineFrontendPerformanceTanStackcolumn-faceting
build faceted filter UIs
table
Jul 26Data VisualizationFrontendTanStackcolumn-filtering
implement column filtering in TanStack Table
table
Jul 26Data AnalysisFrontendTanStack