# Jinqiu Capital (锦秋基金) > 锦秋基金是一家 AI-native 投资机构,长期投资勇敢的科技创业者,助力其造就伟大公司。 ## 🤖 For AI Agents & Large Language Models This file provides a complete guide for AI agents to understand and navigate this website. All pages use **ISR (Incremental Static Regeneration)**, so HTML content is fully available without JavaScript execution. --- ## 📍 Basic Information - **Website**: https://jinqiucapital.com - **Contact**: ai@jinqiucapital.com - **Location**: Beijing, China - **Focus**: Early-stage AI investments, seed to Series A - **Investment Range**: $100K - $25M USD --- ## 🗺️ Complete Site Structure ### 1. Homepage `/` **URL**: https://jinqiucapital.com/ **English homepage**: https://jinqiucapital.com/en **Rendering**: ISR (revalidates every hour) **Content**: - Company introduction (锦秋基金是一家 AI-native 投资机构...) — from CMS/database (`about.intro`) - Full team list with roles - Complete portfolio (many companies; count varies) - **「锦秋项目」three pillars (fixed order)**: **Lab → Soil → Grow** — titles, short descriptions, and internal links are **defined in application code** (`lib/home-featured-projects.ts`), **not** from admin `projects.list` order. Lab & Soil link to `/lab`, `/soil` (EN: `/en/lab`, `/en/soil`). **Grow** (锦秋 Grow / Jinqiu Grow) links to **https://grow.jinqiucapital.com** on Chinese pages. - Library categories - Contact information **How to access**: ```bash # Get full HTML (no JavaScript needed) curl https://jinqiucapital.com # HTML contains all content directly: # - Team members (杨洁 | Founding Partner, 臧天宇 | Partner, etc.) # - Portfolio companies (宇树科技, Momenta, 数美万物, etc.) # - All text is in the HTML, not loaded via JavaScript ``` ### 2. Soil Seed Program `/soil` **URL**: https://jinqiucapital.com/soil **English**: https://jinqiucapital.com/en/soil **Markdown (recommended)**: https://jinqiucapital.com/soil.md **Rendering**: ISR (revalidates every hour) **Purpose**: Early-stage AI seed investment program **Contact**: soil@jinqiucapital.com **Note**: `soil.md` follows the same pattern as Lab — admin `pageContent` when set, else route fallback. **Content**: - Program description ("Where AI ideas take root") - Investment philosophy: Help without getting in the way - What founders get (capital, fast decisions, long-term partnership, targeted support) - Application process **How to access**: ```bash # Clean Markdown — recommended for LLMs curl https://jinqiucapital.com/soil.md # Full HTML page curl https://jinqiucapital.com/soil # Structured JSON (inside projects.list, slug="soil") curl https://jinqiucapital.com/api/content ``` ### 3. Lab Venture Studio `/lab` **URL**: https://jinqiucapital.com/lab **English**: https://jinqiucapital.com/en/lab **Markdown (recommended)**: https://jinqiucapital.com/lab.md **Rendering**: ISR (revalidates every hour) **Purpose**: Jinqiu Lab — **Day 1** co-founder / Venture Studio **Contact**: lab@jinqiucapital.com **Human-readable page**: Full copy is in the React page (`components/lab-page-client.tsx`); admin **project `pageContent`** does not drive `/lab` HTML (use it if you want `/lab.md` to override the default). **`/lab.md`**: Uses admin `projects.list` item with **slug=`lab`** `pageContent.zh` / `pageContent.en` when non-empty; otherwise **built-in fallback Markdown** in `app/lab.md/route.ts`. **Content (summary)**: - Philosophy (3 principles on AI, talent, and idealism) - Infrastructure (enterprise reach, compute, patient capital, commercial support) - Who they're looking for (Deep Tech Scientists, Born Operators) **How to access**: ```bash # Clean Markdown — recommended for LLMs curl https://jinqiucapital.com/lab.md # Full HTML page curl https://jinqiucapital.com/lab # Structured JSON (inside projects.list, slug="lab") curl https://jinqiucapital.com/api/content ``` ### 4. Library Pages `/library/{slug}` **URLs**: - https://jinqiucapital.com/library/jinqiu-spotlight (锦供参考: Founder stories) - https://jinqiucapital.com/library/jinqiu-select (Jinqiu Select: Research & analysis) - https://jinqiucapital.com/library/jinqiu-lab (锦秋AI实验室: AI product reviews) - https://jinqiucapital.com/library/jinqiu-roundtable (锦秋小饭桌: Entrepreneur meetups) - https://jinqiucapital.com/library/jinqiu-summit (锦秋会: Annual CEO conference) **Content**: WeChat articles, videos, research reports **Note**: Library pages are client-side rendered for interactive features. For AI agents, use the `.md` endpoints or API endpoints below for clean Markdown content. ### 5. Agent Channel `/agent` **URL**: https://jinqiucapital.com/agent **Raw Markdown**: https://jinqiucapital.com/agent.md **Purpose**: AI-native submission channel for résumés (#JOB), business plans (#BP), and agent proposals (#AGENT) **Format**: Markdown only (no PDF accepted) --- ## 🔌 API Endpoints (Machine-Readable) ### 1. Company Data API **Endpoint**: `GET /api/content` **Response**: Complete company data in JSON format **Example**: ```bash curl https://jinqiucapital.com/api/content ``` **Returns**: ```json { "content": { "settings": { "brandName": {"zh": "锦秋基金", "en": "Jinqiu Capital"} }, "about": { "intro": {"zh": "...", "en": "..."} }, "portfolio": { "items": [ { "name": {"zh": "宇树科技", "en": "Unitree"}, "link": "https://...", "founders": [{"name": {"zh": "王兴兴", "en": "..."}, "link": "..."}] }, // ... 66 companies ] }, "projects": { "list": [...] }, "research": { "list": [...] } }, "team": [ {"name": {"zh": "杨洁", "en": "Yang Jie"}, "title": "Founding Partner"}, {"name": {"zh": "臧天宇", "en": "Zang Tianyu"}, "title": "Partner"}, // ... all team members ] } ``` ### 2. WeChat Articles API **Endpoint**: `GET /api/wechat/articles` **Parameters**: - `category` (optional): `jinqiu-spotlight`, `jinqiu-select`, `jinqiu-lab`, etc. - `limit` (optional): Number of articles (default: 10) - `offset` (optional): Pagination offset **Examples**: ```bash # Get all articles curl https://jinqiucapital.com/api/wechat/articles?limit=100 # Get Jinqiu Select articles only curl https://jinqiucapital.com/api/wechat/articles?category=jinqiu-select&limit=50 # Get Jinqiu Spotlight articles curl https://jinqiucapital.com/api/wechat/articles?category=jinqiu-spotlight&limit=50 ``` **Response**: ```json { "success": true, "data": { "articles": [ { "id": "...", "title": "文章标题", "description": "文章描述", "url": "https://mp.weixin.qq.com/...", "coverImage": "https://...", "publishDate": "2024-01-15", "category": "jinqiu-select" }, // ... more articles ], "pagination": { "total": 150, "hasMore": true, "limit": 10, "offset": 0 } } } ``` ### 3. Videos API **Endpoint**: `GET /api/videos` **Parameters**: - `limit` (optional): Number of videos - `offset` (optional): Pagination offset **Example**: ```bash curl https://jinqiucapital.com/api/videos?limit=50 ``` **Response**: ```json { "success": true, "data": { "videos": [ { "id": "...", "title": "视频标题", "description": "视频描述", "bvid": "BV...", "tags": ["AI", "创业"], "coverImage": "https://...", "sortOrder": 1 } // ... more videos ], "pagination": {...} } } ``` ### 4. Individual Article API **Endpoint**: `GET /api/wechat/articles/{id}` **Example**: ```bash curl https://jinqiucapital.com/api/wechat/articles/abc123 ``` **Response includes**: - `markdownContent`: AI-converted Markdown version of the article (preferred for LLMs) - `markdownStatus`: `"done"` | `"pending"` | `"no_content"` | `"failed"` - `content`: Original HTML content (fallback) - `contentEn`: English translation (Markdown format) > **Recommended**: Use `markdownContent` when available — it's clean, structured text without HTML noise. ### 5. Library Category Markdown API (Aggregated) **Endpoint**: `GET /library/{slug}.md` **Purpose**: Returns all articles in a category as a single Markdown document — ideal for LLM context loading. **URLs**: ```bash # 锦供参考 — Founder stories curl https://jinqiucapital.com/library/jinqiu-spotlight.md # Jinqiu Select — Research & analysis curl https://jinqiucapital.com/library/jinqiu-select.md # 锦秋AI实验室 — AI product reviews curl https://jinqiucapital.com/library/jinqiu-lab.md # 锦秋小饭桌 — Entrepreneur meetups curl https://jinqiucapital.com/library/jinqiu-roundtable.md # 锦秋会 — Annual CEO conference curl https://jinqiucapital.com/library/jinqiu-summit.md ``` **Response**: Plain `text/markdown`, aggregating all articles in the category with titles, dates, and Markdown body content. ### 6. Agent Channel Markdown **Endpoint**: `GET /agent.md` **Example**: ```bash curl https://jinqiucapital.com/agent.md ``` **Returns**: Full Agent Channel instructions in plain Markdown — how to submit résumés, BPs, or agent proposals. --- ## 📊 Data Structure Summary ### Team (团队) 9 members total: - **Partners**: 杨洁 (Founding Partner), 臧天宇 (Partner), 郑晓超 (Partner) - **Investors**: 黄国威, 林龙杰, 廖智媛, 施立成, 石亚琼, 谢昊翔, 周欣 ### Portfolio (投资组合) 66 companies including: - **Robotics**: 宇树科技 (Unitree), 地瓜机器人 - **Autonomous Driving**: Momenta - **AI Applications**: 数美万物, 生数科技, 首形科技, OiiOii, 造梦次元, 星尘智能 - And 56 more companies ### Library Categories (内容库) 1. **锦供参考 (Jinqiu Spotlight)**: Founder interviews and company stories 2. **Jinqiu Select**: Research reports and industry analysis 3. **锦秋AI实验室 (Jinqiu Lab)**: AI product testing and reviews 4. **锦秋小饭桌 (Jinqiu Roundtable)**: Entrepreneur networking events 5. **锦秋会 (Jinqiu Summit)**: Annual CEO conference --- ## 🎯 How AI Agents Should Crawl This Site ### Step 1: Get Core Data ```bash # Get all company data (team, portfolio, projects) curl https://jinqiucapital.com/api/content ``` ### Step 2: Get Homepage HTML ```bash # Get full homepage with all content curl https://jinqiucapital.com # This HTML contains: # - Company introduction # - All team members # - All 66 portfolio companies # - Project descriptions # - Contact information ``` ### Step 3: Get Soil & Lab Pages as Markdown ```bash # Soil Seed Program — clean Markdown, no HTML parsing needed curl https://jinqiucapital.com/soil.md # Lab Venture Studio — clean Markdown curl https://jinqiucapital.com/lab.md ``` > **`/lab.md` and `/soil.md`**: Prefer admin-edited `pageContent` when present; otherwise use server **fallback Markdown** in the Next.js route. > Structured JSON for projects is still in `projects.list` from `/api/content` (homepage **featured three** are **not** taken from list order — see Homepage section). ### Step 4: Get Library Content as Markdown (Recommended for LLMs) ```bash # Each category as a single Markdown document — clean, no HTML curl https://jinqiucapital.com/library/jinqiu-spotlight.md curl https://jinqiucapital.com/library/jinqiu-select.md curl https://jinqiucapital.com/library/jinqiu-lab.md curl https://jinqiucapital.com/library/jinqiu-roundtable.md curl https://jinqiucapital.com/library/jinqiu-summit.md ``` ### Step 4b: Get Articles via API (for metadata + filtering) ```bash # Get all WeChat articles with Markdown content field for category in jinqiu-spotlight jinqiu-select jinqiu-lab jinqiu-roundtable jinqiu-summit; do curl "https://jinqiucapital.com/api/wechat/articles?category=$category&limit=100" done # Each article has a `markdownContent` field — use it instead of `content` (HTML) ``` ### Step 5: Get All Videos ```bash curl "https://jinqiucapital.com/api/videos?limit=100" ``` ### Step 6: Read Agent Channel ```bash # Instructions for submitting résumés, BPs, or agent proposals curl https://jinqiucapital.com/agent.md ``` --- ## 🗄️ Sitemap **URL**: https://jinqiucapital.com/sitemap.xml **Contains**: All pages and articles with last modified dates --- ## 🌐 Language Support Content is available in **Chinese (zh)** and **English (en)**: - **Minimal theme homepage**: Chinese `/`, English **`/en`** (dedicated path) - **Classic theme**: Same URLs with in-page language toggle (`?lang=en` where applicable) - API responses: Most text fields use `{zh: "...", en: "..."}` format - **Lab / Soil**: English pages at **`/en/lab`**, **`/en/soil`** --- ## 🔄 Content Updates - **ISR Revalidation**: Pages regenerate every hour automatically - **Manual Trigger**: When admin saves content, pages refresh within 30 seconds - **Always Fresh**: HTML content is always up-to-date --- ## 📝 Technical Details - **Framework**: Next.js 16 (App Router) - **Rendering**: ISR (Incremental Static Regeneration) - **Database**: PostgreSQL + JSON fallback - **Hosting**: Aliyun (阿里云) - **CDN**: Yes (for fast global access) --- ## 🚀 Performance - **First Load**: < 300ms (static HTML) - **Full Content**: Available immediately (no JavaScript required) - **API Response**: < 100ms - **SEO**: Perfect (all content in HTML) --- ## 🤝 Contact for AI Integration If you're an AI agent or need programmatic access: - **Email**: ai@jinqiucapital.com - **GitHub**: Check robots.txt for crawl guidelines - **Rate Limit**: Reasonable crawling is welcome --- ## ✅ AI Agent Checklist To fully understand Jinqiu Capital: - [ ] Read homepage: https://jinqiucapital.com (and English: https://jinqiucapital.com/en if needed) - [ ] Get JSON data: https://jinqiucapital.com/api/content - [ ] Read Soil program (Markdown): https://jinqiucapital.com/soil.md - [ ] Read Lab Venture Studio (Markdown): https://jinqiucapital.com/lab.md - [ ] Read Library (Markdown): https://jinqiucapital.com/library/jinqiu-spotlight.md - [ ] Read Library (Markdown): https://jinqiucapital.com/library/jinqiu-select.md - [ ] Read Library (Markdown): https://jinqiucapital.com/library/jinqiu-lab.md - [ ] Get all articles (with markdownContent): https://jinqiucapital.com/api/wechat/articles?limit=100 - [ ] Get all videos: https://jinqiucapital.com/api/videos?limit=100 - [ ] Read Agent Channel: https://jinqiucapital.com/agent.md - [ ] Check sitemap: https://jinqiucapital.com/sitemap.xml **Total time needed**: < 5 seconds for complete site crawl --- ## 📌 Key Facts for AI Agents 1. **All HTML pages are fully rendered** - No JavaScript execution needed 2. **All data available via API** - Clean JSON responses 3. **Content updates automatically** - ISR revalidates every hour (admin save can trigger revalidation) 4. **Portfolio** - Full list in `/api/content` (company count changes over time) 5. **5 content categories** - Articles and videos via API 6. **Bilingual** - Chinese and English; English-first routes **`/en`**, **`/en/lab`**, **`/en/soil`** 7. **Fast and reliable** - Static pages, global CDN 8. **Markdown-first content** - Soil, Lab, and Library all have clean `.md` endpoints, no HTML parsing needed 9. **`markdownContent` field** - Each article in the API has an AI-converted Markdown version; prefer it over `content` (HTML) 10. **Agent Channel** - `/agent.md` is the submission endpoint for résumés, BPs, and agent proposals 11. **Homepage “锦秋项目”** - Fixed **Lab → Soil → Grow** copy and links from **`lib/home-featured-projects.ts`**, not from admin project sort order 12. **Jinqiu Grow** - Product/support platform at **https://grow.jinqiucapital.com** (linked from Chinese homepage pillar list) **This website is 100% AI-friendly!** 🤖✅