nextjs/saas-starter
MIT · 15.7k stars · 0.92 match
Best app foundation: auth, Stripe, dashboard, teams, Drizzle, and shadcn/ui.
Reposeek helps coding agents find libraries, starters, tools, and examples with README evidence attached.
type SearchResult = {
repo: string;
url: string;
score: number;
summary: string | null;
stars: number;
license: string | null;
};
const apiKey = process.env.REPOSEEK_API_KEY;
if (!apiKey) throw new Error("Set REPOSEEK_API_KEY first.");
const response = await fetch("https://api.reposeek.ai/v1/search", {
method: "POST",
headers: {
Authorization: "Bearer " + apiKey,
"Content-Type": "application/json",
},
body: JSON.stringify({
query: "nextjs stripe starter",
limit: 3,
}),
});
if (!response.ok) {
throw new Error("Reposeek search failed: " + response.status);
}
const data = (await response.json()) as { results: SearchResult[] };
for (const result of data.results) {
console.log(result.repo, result.score);
console.log(result.summary ?? result.url);
}scroll →REPOSEEK_API_KEY="paste_...here"
curl -sS -X POST "https://api.reposeek.ai/v1/search" \
-H "Authorization: Bearer $REPOSEEK_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"nextjs stripe starter","limit":3}'scroll →Live demo
Run a discovery query or review the sample flow Reposeek returns to coding agents.
Quota-safe
Reposeek returns compact repo evidence before an agent starts writing code.
Query
Next.js SaaS starter with Stripe, API keys, and usage limits
MIT · 15.7k stars · 0.92 match
Best app foundation: auth, Stripe, dashboard, teams, Drizzle, and shadcn/ui.
MIT · 886 stars · 0.86 match
Billing and usage-state reference with a premium developer-tool landing direction.
MIT · 697 stars · 0.78 match
Strong dashboard/landing component base for a polished authenticated product UI.
{ query: "Next.js SaaS starter with Stripe, API keys, and usage limits", limit: 3 }scroll →nextjs/saas-starter score=0.92 · stripe api keys usage
getpaykit/paykit score=0.86 · billing webhooks limits
shadcnstore/shadcn-dashboard-landing-template score=0.78scroll →evidence=[README, package.json, docs]
output=repo + score + stars + summary + urlscroll →Product mechanics
Built for the moment before implementation, when an agent needs the right codebase to build on.
Classify whether the prompt needs a starter, SDK, example app, tool, or library before retrieval starts.
Rank repositories with summaries, stars, freshness, docs, README, and package signals agents can inspect.
Return compact repo objects that fit CLI tools, coding agents, and API-first workflows without secret leakage.
/ start with 100 searches
Start with 100 searches total, then upgrade to Pro when Reposeek becomes part of your workflow.