tanstack-start-template AGENTS.md

AGENTS.md instructions for dyeoman2/tanstack-start-template, covering tanstack start agent guide, core philosophy, architecture, golden rules and key patterns.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/dyeoman2/tanstack-start-template/agents-md
Clone the repo
git clone --depth 1 https://github.com/dyeoman2/tanstack-start-template

Made for: Codex, OpenCode.

Per session 2,686 This file is loaded in full into every session.
When invoked 2,686 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.02686 $0.02686
Opus 5 $0.01343 $0.01343
Sonnet 5 $0.00537 $0.00537
Haiku 4.5 $0.00269 $0.00269

Measured today against content hash 1d4eb2cff2ee, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

tanstack-start-template AGENTS.md 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 today.

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.

AGENTS.md · 277 lines

How it starts

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

TanStack Start Agent Guide

Core Philosophy

  • Strong end-to-end type safety (database → server → router → client); no any or type casting.
  • Server-first, progressively enhanced flows; UI hydrates cleanly but works without JS.
  • Performance by design: static imports, parallel data fetching, targeted cache updates.

Architecture

  • src/routes/: File-based routes with loaders, guards, pending/error components.
  • src/features/: Feature slices with UI, hooks, and server functions (*.server.ts).
  • src/lib/server/: Server utilities (database, auth, email, env).
  • src/components/ui/: Shadcn/ui primitives and shared components.
  • Database access via Convex queries/mutations and setupFetchClient.

Golden Rules

  • Keep imports static and synchronous inside server modules; no dynamic imports in server functions.
  • One server function, one responsibility. Compose higher-level flows by orchestrating smaller server functions.
  • Use Convex queries/mutations for data operations with automatic type generation.
  • Reuse provided auth guards (routeAuthGuard, routeAdminGuard, requireAuth, requireAdmin)—do not reimplement session checks.
  • Keep UI components pure; business logic lives in hooks or server functions.
  • Never commit files with git unless explicitly requested by the user.

Key Patterns

Routes

export const Route = createFileRoute('/app')({
  pendingMs: 150,
  pendingMinMs: 250,
  pendingComponent: ShellSkeleton,
  component: AppLayout,
  errorComponent: DashboardErrorBoundary,
});

function AppLayout() {
  const navigate = useNavigate();
  const location = useLocation();
  const { isAuthenticated, isPending } = useAuth();
  const redirectRef = useRef(false);
  const redirectTarget = location.href ?? '/app';

  useEffect(() => {
    if (isPending) return;

    if (!isAuthenticated) {
      if (redirectRef.current) return;

      redirectRef.current = true;
      void navigate({
        to: '/login',
        search: { redirect: redirectTarget },
        replace: true,
      }).catch(() => {
        redirectRef.current = false;
      });
    } else {
      redirectRef.current = false;
    }
  }, [isAuthenticated, isPending, navigate, redirectTarget]);

  if (isPending || !isAuthenticated) {
    return <ShellSkeleton />;
  }

  return (
    <AppChrome>
      <Outlet />
    </AppChrome>
  );
}

Read the full file on GitHub · 277 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. today First seen · 277 lines · 2,686 tokens per session scan A 1d4eb2cff2ee

Subscribe to this mod's changes

tanstack-start-template AGENTS.md is an instructions file published in the GitHub repository dyeoman2/tanstack-start-template (26 stars, last pushed 4mo ago), licensed MIT. It adds 2,686 tokens to every session, about $0.0134 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-01.