tanstack-architect

tanstack-architect is an agent for Claude Code from smicolon/ai-kit. It costs 43 tokens per session (1,968 once invoked), scanned A, original, MIT.

A senior design assistant for planning React applications with the TanStack family of tools, including routing, server data, forms, tables, and list virtualization. It also covers the Bun runtime and deployment-related server tools.

In plain words
What is it for?
It designs React application architecture, feature folders, routes, data models, forms, tables, and integrations across the TanStack ecosystem.
Why use it?
It helps teams make consistent choices about application structure, data flow, navigation, and reusable feature boundaries before implementation.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter; names the TodoWrite tool.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is // ❌ import { User } from '../../users/types'.

Good fit It designs React application architecture, feature folders, routes, data models, forms, tables, and integrations across the TanStack ecosystem.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/smicolon/ai-kit
agentmods
npx agentmods add agents/smicolon/ai-kit/tanstack-architect

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tanstack-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/smicolon/ai-kit/tanstack-architect/github.svg)](https://agentmods.dev/agents/smicolon/ai-kit/tanstack-architect)
Your own site
<a href="https://agentmods.dev/agents/smicolon/ai-kit/tanstack-architect"><img src="https://agentmods.dev/badge/agents/smicolon/ai-kit/tanstack-architect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tanstack-architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/smicolon/ai-kit/tanstack-architect"><img src="https://agentmods.dev/badge/agents/smicolon/ai-kit/tanstack-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,968 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.01968
Opus 5 $0.00022 $0.00984
Sonnet 5 $0.00009 $0.00394
Haiku 4.5 $0.00004 $0.00197

Measured 5d ago against content hash c2ed4a4912fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

tanstack-architect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packs/tanstack-router/agents/tanstack-architect.md · 254 lines

How it starts

The opening of the file, as written. The whole thing — 254 lines — stays where its author put it; the contents beside it link to each section on GitHub.

TanStack Architect

You are a senior TanStack architect specializing in React SPA applications. Design scalable, type-safe architectures using the TanStack ecosystem with Bun as the runtime.

Core Stack

  • TanStack Router - File-based type-safe routing
  • TanStack Start - Full-stack React framework with SSR, streaming, and server functions
  • TanStack Query - Server state management
  • TanStack Form - Type-safe forms with validation
  • TanStack Table - Headless data tables
  • TanStack Virtual - List virtualization
  • TanStack Store - Framework-agnostic state (alpha)
  • TanStack DB - Client-first reactive store (beta)
  • TanStack AI - Unified AI SDK (alpha)
  • TanStack Pacer - Rate limiting, debouncing (beta)
  • Nitro - Universal server engine for cross-platform deployment (Bun, Node, Cloudflare Workers, Vercel)
  • Bun - Runtime and package manager

Architecture Principles

1. Feature-Based Structure

src/
├── features/
│   ├── posts/
│   │   ├── components/
│   │   │   ├── PostList.tsx
│   │   │   ├── PostCard.tsx
│   │   │   └── index.ts
│   │   ├── hooks/
│   │   │   ├── usePost.ts
│   │   │   └── index.ts
│   │   ├── queries/
│   │   │   ├── postQueries.ts
│   │   │   └── index.ts
│   │   ├── api/
│   │   │   └── postApi.ts
│   │   ├── types.ts
│   │   └── index.ts
│   └── users/
├── routes/
│   ├── __root.tsx
│   ├── index.tsx
│   ├── posts.tsx
│   └── posts.$postId.tsx
├── lib/
│   ├── query-client.ts
│   ├── query-keys.ts
│   └── router.ts
├── components/
│   └── ui/
└── types/

2. Import Conventions

// Always use @/ alias
import { PostList } from '@/features/posts/components'
import { queryKeys } from '@/lib/query-keys'
import { Button } from '@/components/ui'

// Never use relative imports across features
// ❌ import { User } from '../../users/types'
// ✅ import { User } from '@/features/users/types'

3. Query Key Factory Pattern

// @/lib/query-keys.ts
export const queryKeys = {
  posts: {
    all: () => ['posts'] as const,
    lists: () => [...queryKeys.posts.all(), 'list'] as const,
    list: (filters: PostFilters) => [...queryKeys.posts.lists(), filters] as const,
    details: () => [...queryKeys.posts.all(), 'detail'] as const,
    detail: (id: string) => [...queryKeys.posts.details(), id] as const,
  },
  users: {
    all: () => ['users'] as const,
    detail: (id: string) => [...queryKeys.users.all(), id] as const,
  },
} as const

Read the full file on GitHub · 254 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago Changed · +1 lines c2ed4a4912fd
  2. 6d ago First seen · 253 lines · 43 tokens per session scan A 2b3c6a6f8a6b

Subscribe to this mod's changes

tanstack-architect is an agent published in the GitHub repository smicolon/ai-kit (6 stars, last pushed 6d ago), licensed MIT. It adds 43 tokens to every session and 1,968 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

react18-auditor

Deep-scan specialist for React 16/17 class-component codebases targeting React 18.3.1. Finds unsafe lifecycle methods, legacy context, batching vulnerabilities, event delegation assumptions, string refs, and all 18.3.1 deprecation surface. Reads everything, touches nothing. Saves .github/react18-audit.md.

archubbuck/workspace-architect · 74 tokens

react18-class-surgeon

Class component migration specialist for React 16/17 → 18.3.1. Migrates all three unsafe lifecycle methods with correct semantic replacements (not just UNSAFE prefix). Migrates legacy context to createContext, string refs to React.createRef(), findDOMNode to direct refs, and ReactDOM.render to createRoot. Uses memory…

archubbuck/workspace-architect · 81 tokens

react18-test-guardian

Test suite fixer and verifier for React 16/17 → 18.3.1 migration. Handles RTL v14 async act() changes, automatic batching test regressions, StrictMode double-invoke count updates, and Enzyme → RTL rewrites if Enzyme is present. Loops until zero test failures. Invoked as subagent by react18-commander.

archubbuck/workspace-architect · 81 tokens

react18-batching-fixer

Automatic batching regression specialist. React 18 batches ALL setState calls including those in Promises, setTimeout, and native event handlers - React 16/17 did NOT. Class components with async state chains that assumed immediate intermediate re-renders will produce wrong state. This agent finds every vulnerable…

archubbuck/workspace-architect · 76 tokens

react18-commander

Master orchestrator for React 16/17 → 18.3.1 migration. Designed for class-component-heavy codebases. Coordinates audit, dependency upgrade, class component surgery, automatic batching fixes, and test verification. Uses memory to gate each phase and resume interrupted sessions. 18.3.1 is the target - it…

archubbuck/workspace-architect · 101 tokens

.NET Upgrade

Perform janitorial tasks on C#/.NET code including cleanup, modernization, and tech debt remediation.

archubbuck/workspace-architect · 23 tokens