Skip to content

Commit a6ef69a

Browse files
committed
Add generic project examples
1 parent c78326f commit a6ef69a

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

docs/project-examples.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Project Examples (Any Domain)
2+
3+
Use these examples as memory anchors. Pick the closest complexity tier.
4+
5+
## Simple
6+
**Example**: Documentation site with a few routes.
7+
- Routes: `/`, `/docs`, `/faq`
8+
- Data: static loader data
9+
- Goal: fast routing, minimal state
10+
11+
## Medium
12+
**Example**: Authenticated app with forms and loaders.
13+
- Routes: `/login`, `/app`, `/app/profile`
14+
- Data: server functions + route loaders
15+
- Goal: typed mutations, stable UX
16+
17+
## Complex
18+
**Example**: Large app with streaming SSR.
19+
- Routes: nested layouts, search params, streaming
20+
- Data: prefetch + suspense boundaries
21+
- Goal: performance under load, strict type safety

skills/using-tanstack-superpowers/SKILL.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ allowed-tools:
2323

2424
## References
2525
- `docs/complexity-tiers.md` for simple/medium/complex examples
26+
- `docs/project-examples.md` for generic project examples

0 commit comments

Comments
 (0)