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.
git clone --depth 1 https://github.com/smicolon/ai-kitnpx agentmods add agents/smicolon/ai-kit/tanstack-architectWrote 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.
[](https://agentmods.dev/agents/smicolon/ai-kit/tanstack-architect)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
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.
- 5d ago Changed · +1 lines c2ed4a4912fd
- 6d ago First seen · 253 lines · 43 tokens per session scan A 2b3c6a6f8a6b
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.
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.
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…
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.
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…
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…
.NET Upgrade
Perform janitorial tasks on C#/.NET code including cleanup, modernization, and tech debt remediation.