9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
5.5 KiB
5.5 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-startup-projects | Startup Projects | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Startup Projects
매 한 줄
"매 idea → MVP → PMF — 매 minimum viable iteration". Startup projects 는 매 small team 이 short cycle 로 product 의 market fit 을 찾는 의 process — 매 2026 의 AI-augmented (Claude Code, v0, Cursor) 시대 에 single founder 가 weeks 의 launch 가능. 매 distribution 이 새로운 moat.
매 핵심
매 stage
- Idea: 매 problem 검증 (5 사용자 interview > 50 의 survey).
- MVP: 매 1~4 주 build — 매 핵심 1 기능 만.
- Launch: 매 Product Hunt / Hacker News / X / TikTok.
- PMF (Product-Market Fit): 매 retention 곡선 이 flatten + organic growth.
- Scale: 매 paid acquisition + team hire.
매 modern stack (2026)
- Build: Next.js 15 + Supabase / Convex + Vercel / Cloudflare.
- AI: Claude Opus 4.7 / GPT-5 (logic), FLUX (image), ElevenLabs (voice).
- Code agent: Claude Code, Cursor, v0.
- Payments: Stripe / LemonSqueezy / Polar.
- Analytics: PostHog / Plausible.
- Email: Resend / Loops.
매 응용 (project type)
- Vertical AI SaaS — 매 niche workflow + LLM (legal review, medical scribe).
- AI wrapper + moat — 매 GPT API + proprietary data / community.
- Dev tool — 매 OSS + cloud (Linear, Cursor, Resend).
- Consumer AI — 매 chat / voice / image 의 mass app.
- Marketplace — 매 supply / demand 의 two-sided.
💻 패턴
Idea validation (LLM-assisted user interview)
// generate interview script via LLM, then run 5 calls
import Anthropic from "@anthropic-ai/sdk";
const a = new Anthropic();
const script = await a.messages.create({
model: "claude-opus-4-7-20260101",
max_tokens: 1000,
messages: [{ role: "user", content: `Generate 7 Mom-Test questions for: ${idea}` }],
});
MVP scaffold (Next.js 15 + Supabase)
npx create-next-app@latest myapp --typescript --tailwind --app
cd myapp
npm install @supabase/supabase-js @supabase/ssr stripe @anthropic-ai/sdk
npx supabase init && npx supabase start
Stripe checkout (3 lines of magic)
const session = await stripe.checkout.sessions.create({
mode: "subscription",
line_items: [{ price: "price_xxx", quantity: 1 }],
success_url: `${origin}/success?session_id={CHECKOUT_SESSION_ID}`,
cancel_url: `${origin}/pricing`,
});
return Response.redirect(session.url!);
Waitlist (Resend + KV)
export async function POST(req: Request) {
const { email } = await req.json();
await kv.sadd("waitlist", email);
await resend.emails.send({
from: "founder@app.dev",
to: email,
subject: "You are on the list",
text: "Thanks. We'll email when ready.",
});
return Response.json({ ok: true });
}
Product Hunt launch checklist (programmatic)
const checklist = [
"Tagline ≤ 60 chars",
"Gallery: 3 GIFs + 4 screenshots",
"First comment with maker story",
"Notify 50 supporters at 12:01 AM PT",
"Reply to every comment within 1 hour",
];
Retention cohort (PostHog SQL)
SELECT
date_trunc('week', signup_date) AS cohort,
COUNT(DISTINCT CASE WHEN active_week_1 THEN user_id END)::float
/ COUNT(DISTINCT user_id) AS week_1_retention
FROM users GROUP BY 1 ORDER BY 1;
LLM cost guard (production)
const usage = await kv.incrby(`tokens:${userId}:${day}`, tokensUsed);
if (usage > plan.dailyTokenCap) throw new Error("Daily cap exceeded — upgrade");
매 결정 기준
| 상황 | Approach |
|---|---|
| Solo + nights/weekends | 1-feature MVP, no auth, free tier only |
| 2 cofounder + 6mo runway | vertical AI SaaS, Stripe day 1 |
| Need fast ship | Next.js + Supabase + Vercel |
| B2B SaaS | LinkedIn outbound + demo-driven |
| Consumer | TikTok / X 의 daily content + waitlist |
| Dev tool | OSS-first + GitHub stars 의 social proof |
기본값: Next.js 15 + Supabase + Stripe + Resend + PostHog. 매 launch 는 Product Hunt + HN + 5 communities.
🔗 Graph
- 응용: SaaS
- Adjacent: Lean Startup
🤖 LLM 활용
언제: idea validation script, landing copy, MVP scaffolding (Claude Code), launch tweet drafts, customer support drafts. 언제 X: financial / legal / hiring 의 final decisions — 매 expert 의 review 필수.
❌ 안티패턴
- Build before talk: 6 month 의 stealth 개발 후 의 zero user. 매 5 user interview 먼저.
- Feature creep MVP: 매 1 feature 의 sharp 의 vs 의 5 feature 의 mediocre.
- Stealth mode: build in public 의 distribution moat 포기.
- No pricing day 1: free 만 하면 willingness-to-pay 검증 X.
- Founder-market fit 무시: 매 unfamiliar domain 의 6mo 의 grind 후 burnout.
- AI wrapper 의 moat 부재: GPT-5 prompt 만 의 product 는 moat 0. Data / workflow / community moat 필요.
🧪 검증 / 중복
- Verified (YC essays, The Mom Test by Rob Fitzpatrick, Indie Hackers community 2025-2026, Lenny's Newsletter).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — modern AI-augmented startup playbook |