Tanstack start workflow
Skill MakFly/superpowers-tanstack-start/skills/tanstack-start-workflow
Open-source Claude Code plugin and Agent Skills for TanStack Start: type-safe routing, server functions, SSR, middleware, authentication, testing, and deployment.
npx -y skills add MakFly/superpowers-tanstack-start --skill tanstack-start-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 27 days oldThe repository was created 27 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Plan and execute non-trivial TanStack Start features, refactors, upgrades, or migrations. Use when a task crosses routing, server functions, rendering, data access, build configuration, or deployment boundaries and needs an evidence-first implementation plan with explicit verification.
SKILL.md
2.1 KB, as published. Nobody here has run it
TanStack Start Workflow
Establish the baseline
- Read repository instructions and the target application's manifest, lockfile, build config, router setup, and relevant routes.
- Record exact Start, Router, React, Vite or Rsbuild versions.
- Identify the request path from browser entry through route, loader, server function or route, middleware, and external dependency.
- Reproduce the current behavior before changing code when a runtime is available.
- State assumptions, constraints, and a measurable success condition.
Read ../../docs/architecture.md for the framework model and ../../docs/migration-and-decisions.md for migration work.
Plan the smallest coherent change
Draw the affected data flow. Separate navigation concerns, data-security boundaries, domain logic, rendering, and deployment. Preserve existing build and runtime choices unless the requested outcome requires a change.
Ask before installing packages, modifying a lockfile, creating migrations, deleting files, deploying, committing, or pushing.
Implement
- Write or update the narrowest failing test when practical.
- Change one boundary at a time.
- Keep inputs, outputs, and runtime ownership explicit.
- Reject invalid states with actionable errors.
- Avoid speculative abstractions and compatibility fallbacks.
Invoke the routing, server-functions, middleware, rendering, auth, deployment, or testing skill when that boundary becomes material.
Verify
Run the smallest relevant check first, followed by the repository's existing typecheck, lint, tests, and production build. For UI changes, reproduce the workflow in a browser and inspect console and network errors.
Report the result, changed files, checks run, unverified paths, and residual risks.