Skip to content

Commit 1559da0

Browse files
authored
docs: add Gemini assistant and consolidate AGENTS.md (#2157)
1 parent e2cd905 commit 1559da0

8 files changed

Lines changed: 17 additions & 148 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
<a href="https://github.com/kriasoft/react-starter-kit?sponsor=1"><img src="https://img.shields.io/badge/-GitHub-%23555.svg?logo=github-sponsors" height="20"></a>
66
<a href="https://discord.gg/2nKEnKq"><img src="https://img.shields.io/discord/643523529131950086?label=Chat" height="20"></a>
7-
<a href="https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant"><img src="https://img.shields.io/badge/Ask_ChatGPT-10a37f?logo=google+gemini&logoColor=white" height="20"></a>
7+
<a href="https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant"><img src="https://img.shields.io/badge/Ask_ChatGPT-10a37f?logo=openai&logoColor=white" height="20"></a>
8+
<a href="https://gemini.google.com/gem/1IXFElQ2UvvZY86iL6uZLeoC-r8mp-OB-?usp=sharing"><img src="https://img.shields.io/badge/Ask_Gemini-8E75B2?logo=googlegemini&logoColor=white" height="20"></a>
89
<a href="https://github.com/kriasoft/react-starter-kit/stargazers"><img src="https://img.shields.io/github/stars/kriasoft/react-starter-kit.svg?style=social&label=Star&maxAge=3600" height="20"></a>
910
<a href="https://x.com/ReactStarter"><img src="https://img.shields.io/twitter/follow/ReactStarter.svg?style=social&label=Follow&maxAge=3600" height="20"></a>
1011

1112
</div>
1213

13-
A full-stack monorepo template for building SaaS applications with React 19, tRPC, and Cloudflare Workers. Type-safe from database to UI, deployable to the edge in minutes.
14+
A full-stack monorepo template for building SaaS applications with React 19, tRPC, and Cloudflare Workers. Type-safe from database to UI, deployable to the edge in minutes. New here? Ask our AI assistant on [ChatGPT](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant) or [Gemini](https://gemini.google.com/gem/1IXFElQ2UvvZY86iL6uZLeoC-r8mp-OB-?usp=sharing).
1415

1516
React Starter Kit is proudly supported by these amazing sponsors:
1617

@@ -161,7 +162,7 @@ bun app:deploy # Deploy main React app
161162

162163
## Need Help?
163164

164-
[Ask GPT](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant) — AI assistant trained on this codebase. Try these questions:
165+
Our AI assistant is trained on this codebase — ask it anything on [ChatGPT](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant) or [Gemini](https://gemini.google.com/gem/1IXFElQ2UvvZY86iL6uZLeoC-r8mp-OB-?usp=sharing). Try these questions:
165166

166167
- [How do I add a new tRPC endpoint?](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant?prompt=How%20do%20I%20add%20a%20new%20tRPC%20endpoint%3F)
167168
- [Help me create a database table](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant?prompt=Help%20me%20create%20a%20database%20table)

apps/api/CLAUDE.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

apps/app/AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
Client-side SPA — no SSR. All rendering happens in the browser.
2+
13
## Routing
24

35
- File-based routing in `routes/`. `lib/routeTree.gen.ts` is auto-generated — never edit it.

apps/app/CLAUDE.md

Lines changed: 0 additions & 65 deletions
This file was deleted.

db/AGENTS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
- `invitationStatusEnum` is a pgEnum (`"pending" | "accepted" | "rejected" | "canceled"`); changes require a migration.
99
- `organization.metadata` is `text`, not JSONB — Better Auth handles serialization.
1010

11+
## Extended Fields (beyond Better Auth defaults)
12+
13+
- **Passkey:** `lastUsedAt` (security audits), `deviceName` (user-friendly label), `platform` ("platform" | "cross-platform").
14+
- **Invitation:** `invitationStatusEnum` pgEnum; `acceptedAt`/`rejectedAt` lifecycle timestamps. Adding new statuses requires a migration before upgrading Better Auth.
15+
- **Member roles:** free text `role` ("owner", "admin", "member") — not pgEnum, to stay compatible with Better Auth's role customization.
16+
1117
## Indexes and Constraints
1218

1319
- Every foreign key column gets an index: `{table}_{column}_idx`.

db/CLAUDE.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ Remember: This template is intentionally minimal. It's not trying to be everythi
343343

344344
::: tip Community Support
345345

346-
- 🤖 [Ask GPT](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant) — AI assistant trained on this codebase
346+
- 🤖 AI assistant — [ChatGPT](https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant) · [Gemini](https://gemini.google.com/gem/1IXFElQ2UvvZY86iL6uZLeoC-r8mp-OB-?usp=sharing)
347347
- 💬 [GitHub Discussions](https://github.com/kriasoft/react-starter-kit/discussions)
348348
- 🐛 [Report Issues](https://github.com/kriasoft/react-starter-kit/issues)
349349
-[Star us on GitHub](https://github.com/kriasoft/react-starter-kit) (it helps!)

docs/index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ hero:
1414
text: View on GitHub
1515
link: https://github.com/kriasoft/react-starter-kit
1616
- theme: alt
17-
text: Ask GPT
17+
text: Ask ChatGPT
1818
link: https://chatgpt.com/g/g-69564f0a23088191846aa4072bd9397d-react-starter-kit-assistant
19+
- theme: alt
20+
text: Ask Gemini
21+
link: https://gemini.google.com/gem/1IXFElQ2UvvZY86iL6uZLeoC-r8mp-OB-?usp=sharing
1922

2023
features:
2124
- icon: 🤖

0 commit comments

Comments
 (0)