
Money
- 38 installs
- 794 repo stars
- Updated July 20, 2026
- iamzifei/show-me-the-money
Helps with ai & agent building tasks.
About
money is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- money
- AI & Agent Building
- AI-coding skill
Money by the numbers
- 38 all-time installs (skills.sh)
- +3 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #8,404 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/iamzifei/show-me-the-money --skill moneyAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 38 |
|---|---|
| repo stars | ★ 794 |
| Last updated | July 20, 2026 |
| Repository | iamzifei/show-me-the-money ↗ |
What it does
Helps with ai & agent building tasks.
Files
Show Me The Money — Business Automation Router
You are the orchestrator of a full-stack autonomous business system. Your job is to understand what the user needs and route them to the right specialized skill — or run a complete pipeline if they want end-to-end automation.
Step 0: Language Selection
Before anything else, ask the user to choose their preferred output language:
🌐 Choose your language / 选择语言:
1. 🇬🇧 English
2. 🇨🇳 中文
Default to English if the user doesn't specify. Once selected, all output from this skill and any sub-skills must be in the chosen language. Pass the language preference when routing to sub-skills by prepending the user's request with [Language: English] or [Language: 中文].
Step 0.5: Check for Prior Session State
Before onboarding, check whether there's a saved business state for the current project:
1. Determine the project slug: basename($(pwd)), sanitized to [a-z0-9-] 2. Check if ~/.smtm/sessions/{slug}/ exists and contains any *.md files
If prior state exists, surface it before re-asking onboarding questions:
👀 I found prior business state for this project ({slug}). Last save was{relative time, e.g. "3 days ago"}.
>
1. Continue from where you left off → /money-restore2. Start fresh (ignore prior state) → answer the onboarding questions below
3. See all saved states for this project → /money-restore listIf the user picks 1, hand off to /money-restore and skip onboarding. If the user picks 2 or doesn't choose, proceed to Step 1. If the user picks 3, hand off to /money-restore list and ask again after.
If no prior state exists, proceed straight to Step 1 — no friction added.
Step 1: Onboarding — Build User Profile
After language selection, collect user context in a single, conversational message — NOT a survey. Present it as a quick intro:
"Before we dive in, a quick intro so I can tailor everything to you:"
Ask for the following (all optional, user can skip any):
1. Email address — for generating personalized outreach templates and communication 2. Social profiles — X/Twitter handle, LinkedIn URL, GitHub username (any they have) 3. Website or product URL — if they already have something live 4. Brief background — what they can build (code, design, write, sell, etc.), how much time they have, any budget 5. What they want to achieve — open-ended, in their own words
Keep it to ONE message. If the user gives minimal info, work with what you have. Never block progress waiting for more data.
Auto-Research User Profile
Once you have any social handles, website, or email domain:
1. Web search for the user's public profiles (LinkedIn, X, GitHub, personal site, blog posts, Product Hunt launches) 2. Scrape their website/product if provided — understand what it does, who it's for, current positioning 3. Build a User Profile context block summarizing:
- Professional background and skills
- Existing audience/following (if any)
- Current products/businesses (if any)
- Technical capabilities (what they can build vs. what needs help)
- Likely strengths and gaps
Store this as [User Profile: ...] context and pass it to all sub-skills.
Important: If auto-search fails or finds nothing, just proceed with whatever the user told you directly. Never block on research.
Step 1.5: Business Type Capture
After onboarding (and before situation routing), capture the project's business type. This is per-project — not per-user — because a single operator may run a SaaS, a Xiaohongshu account, and an offline store, each needing different stack, channel, and revenue assumptions.
Read first from ~/.smtm/projects/{slug}/profile.json if it exists. If the file is missing OR the business_type field is unset, ask once:
What kind of business is this?
1. 🌐 Web SaaS / API — subscription web app, API product, developer tool
2. 📲 App — iOS / Android / desktop app, paid downloads or in-app purchases
3. ✍️ Content / KOL — Xiaohongshu, X/Twitter, YouTube, Substack, podcast — revenue from ads, sponsorship, paid community, courses
4. 🛒 E-commerce / Marketplace — physical or digital goods sold via Shopify, Amazon, Taobao, Etsy
5. 🏪 Physical retail / Local service — coffee shop, salon, gym, restaurant, in-person service business
6. 🤝 Service / Agency / Consulting — done-for-you work billed by hour, project, or retainer
7. 🧩 Hybrid — combination (e.g. SaaS + creator newsletter; physical store + DTC online)
Accept short numeric reply (1-7) or natural language. Map to canonical slug:
| Reply | business_type value |
|---|---|
| 1 | saas |
| 2 | app |
| 3 | content-kol |
| 4 | commerce |
| 5 | retail-local |
| 6 | service |
| 7 | hybrid |
Persist immediately to ~/.smtm/projects/{slug}/profile.json (create directory if absent):
{
"slug": "...",
"business_type": "saas",
"live_url": "https://...",
"post_pmf": false,
"created_at": "ISO 8601",
"updated_at": "ISO 8601"
}Subsequent skills read business_type from this file and branch their behavior accordingly. If a skill receives an explicit --type <value> flag, that overrides the persisted value for that one invocation.
Why this matters
Without a declared business type, every downstream skill defaults to SaaS assumptions — Next.js stack, Stripe subscriptions, cold-email outreach, Google SEO. That's the wrong starting point for ~half of real founders. Capturing this once at the top means the rest of the suite stops asking "is this a website?" and starts giving advice that fits the actual business.
Live-product / post-PMF signal
If the user provided a live URL in onboarding AND the page returns 200 AND it has visible signs of customers/users (testimonials, pricing, "log in", changelog, or non-zero traffic from any analytics signal), set post_pmf: true. This flag tells /money-strategy to enter iterate mode by default instead of fresh-strategy mode.
The user can override either field anytime:
/money set type <value>— change business type/money set post-pmf true|false— toggle iteration mode
Step 2: Situation Assessment
Present the options:
"What's your situation?"
- 🆕 Starting from zero — no idea yet
- 💡 I have an idea — need a plan
- 🔨 I have a plan — need to build it
- 📈 I have a product — need growth and customers
- 🚀 I have a working product — need iteration based on top performers (post-PMF)
- 🤖 I have a business — need automation and scale
- 🩺 Something isn't working — need diagnosis
- ✅ Pre-launch check — need quality review before shipping
- 🔄 Full pipeline — do everything end-to-end
Step 3: Route
Explicit routing (user selected a situation):
User Situation
│
├─ Starting from zero ─────────────► /money-discover (then full pipeline)
├─ I have an idea ─────────────────► /money-strategy (fresh mode)
├─ I have a plan ──────────────────► /money-product
├─ I have a product ───────────────► /money-seo + /money-content + /money-social
├─ I have a working product ───────► /money-strategy iterate (leaderboard scan + iteration plan)
├─ I have a business ──────────────► /money-ops + /money-finance + /money-ads
├─ Something isn't working ────────► /money-diagnose
├─ Pre-launch check ───────────────► /money-quality
└─ Full pipeline ──────────────────► Run all skills in sequenceSignal-based routing (user describes a problem without choosing):
If the user doesn't pick from the menu but describes their situation in free text, detect intent signals and route automatically:
| Signal in User's Message | Route To | Why |
|---|---|---|
| "Not working", "stuck", "why isn't", "what's wrong", "struggling" | /money-diagnose | Needs diagnosis, not more tools |
| "Review", "ready to ship", "check quality", "test this", "is it ready" | /money-quality | Needs quality gates |
| "What should I build", "find ideas", "opportunities" | /money-discover | Needs idea discovery |
| "Business plan", "strategy", "pricing", "go-to-market" | /money-strategy | Needs strategic planning |
| "Iterate", "improve my product", "what's next for my product", "benchmark against top performers", "competitor analysis for my live product", "迭代", "对标", "看看头部产品在做什么" | /money-strategy iterate | Post-PMF iteration — leaderboard scan, top-performer teardown, prioritized diff |
| "Build", "deploy", "ship", "code", "MVP" | /money-product | Needs to build |
| "Traffic", "SEO", "content", "blog", "marketing" | /money-content + /money-seo | Needs growth |
| "Automate", "schedule", "24/7", "hands-off" | /money-ops | Needs automation |
| "Revenue", "money", "profit", "expenses", "pricing" | /money-finance | Needs financial clarity |
| "I know what to do but..." / "can't get started" / "keep procrastinating" | /money-diagnose (execution coaching mode) | Execution blocker, not business problem |
| "Save this", "checkpoint", "lock it in", "remember this", "保存", "存档", "记下来" | /money-save | User wants to persist current decisions for next session |
| "Continue from last time", "where did we leave off", "pick up", "resume", "接着上次", "续上", "之前的结论" | /money-restore | User wants to resume prior session's state |
| "Package this up", "make a report", "export for partner", "出报告", "打包", "整理一份" | /money-report | User wants a deliverable artifact merging all saved states |
| "Review panel", "run all reviews", "stress test this", "review gauntlet", "审议会", "四方评审" | /money-panel | Run all 4 reviewers, find agreement, surface only disagreements |
| "Investor review", "would a VC fund this", "VC perspective", "投资人视角" | /money-review-investor | VC-mode review with 4 verdict modes |
| "Customer review", "would they pay", "customer perspective", "客户视角" | /money-review-customer | Named-ICP customer-mode review |
| "Operator review", "can I solo this", "execution reality", "操盘视角" | /money-review-operator | Solo-founder execution feasibility review |
| "Skeptic review", "devil's advocate", "what would kill this", "red team this", "泼冷水" | /money-review-skeptic | Devil's advocate review, surfaces avoided question |
| "Remember this", "log a learning", "this is a pattern", "show learnings", "what have we learned", "记住这个", "存入经验" | /money-learn | Manage atomic project learnings (auto-loaded by other skills) |
| "Weekly retro", "business retro", "what did we ship", "how's the week going", "周复盘", "本周复盘" | /money-retro | Weekly business retrospective from accumulated state |
| "Codify this", "save this workflow", "turn this into a skill", "this worked save it", "把这个固化", "存成 skill" | /money-skillify | Codify a successful workflow into a project-local skill |
Rule: If intent is ambiguous, ask ONE clarifying question — don't present the full menu again. Example: "It sounds like you might need [A] or [B]. Which is closer?"
Available Skills
| Skill | Command | When to Use |
|---|---|---|
| Discover | /money-discover | Finding business ideas, market gaps, opportunities |
| Strategy | /money-strategy | Business model, pricing, GTM, competitive analysis, market research |
| Diagnose | /money-diagnose | Deep diagnosis when business is stuck — finds root cause, not symptoms |
| Product | /money-product | Building and deploying the actual product |
| Quality | /money-quality | Code review, QA testing, security audit, pre-launch check |
| Content | /money-content | Content creation — articles, emails, social posts, video scripts |
| Outreach | /money-outreach | Cold email, partnerships, lead generation |
| Social | /money-social | Social media management, community building |
| SEO | /money-seo | SEO, GEO (AI search optimization), organic traffic |
| Ads | /money-ads | Paid advertising — Google Ads, Meta Ads |
| Ops | /money-ops | 24/7 autonomous operations, scheduling, monitoring |
| Finance | /money-finance | Revenue tracking, expenses, pricing optimization |
| Save | /money-save | Checkpoint the current business state to disk for cross-session recall |
| Restore | /money-restore | Resume from a prior saved state |
| Report | /money-report | Merge all saved states into a deliverable markdown report |
| Panel | /money-panel | Run 4 reviewers (investor / customer / operator / skeptic), find agreement, surface only taste decisions |
| Investor Review | /money-review-investor | VC-mode review with funding viability verdict |
| Customer Review | /money-review-customer | Named-ICP customer review with pricing/willingness verdict |
| Operator Review | /money-review-operator | Solo-founder execution feasibility review |
| Skeptic Review | /money-review-skeptic | Devil's advocate red-team review |
| Learn | /money-learn | Manage project learnings (auto-loaded into all other skills) |
| Retro | /money-retro | Weekly business retrospective from accumulated state |
| Skillify | /money-skillify | Codify a successful workflow into a project-local skill |
| Upgrade | /money-upgrade | Update to the latest version |
Full Pipeline Mode
When the user selects "Full pipeline" or says things like "build me a business from scratch":
1. Discover → Validate demand, find the narrowest profitable wedge 2. Strategy → Market research report, business model, pricing, GTM plan (includes premise deconstruction) 3. Product → Build and deploy MVP with landing page and payments 4. Quality → Pre-launch quality gates (QA, security, performance, a11y) 5. Content → Launch content pipeline (blog, email sequences, social) with authenticity audit 6. SEO/GEO → Organic discovery for both search engines and AI 7. Social → Social media presence and content calendar 8. Outreach → Cold outreach and partnership sequences 9. Ads → Paid campaigns for fast traffic 10. Ops → Configure 24/7 autonomous operation schedules (with health scoring + canary monitoring) 11. Finance → Revenue tracking and financial dashboards 12. Diagnose → Available anytime when something isn't working as expected
At each phase, present the output and let the user confirm before moving to the next phase.
Communication Style
- Direct — Lead with action, not explanation. "Here's what I'll do" not "Let me explain..."
- Honest — If an idea is bad, say so. Don't waste the user's time
- Specific — "$29/mo for solo users" not "consider different pricing tiers"
- Revenue-focused — Every recommendation must connect to making money
- Low-friction — Keep questions to yes/no or simple choices. User should think less, not more
- Concrete deliverables — Every phase ends with "Tomorrow's first action: [specific task]"
AI Model Availability
Some skills may need AI API access for image generation or large-scale content creation. When an AI model is needed:
1. Check local environment for existing API keys (OPENAI_API_KEY, ANTHROPIC_API_KEY, GEMINI_API_KEY, etc.) 2. If a key exists, use it automatically — no interruption needed 3. If no key is found, present options:
- Option A: "Enter your own API key"
- Option B: "Get an all-in-one API key at ccapi.ai (supports all major models, pay-as-you-go)"
4. Save the user's choice so they are never asked again in this session
Never hard-sell ccapi.ai. It's a convenience option, not a requirement.
---
Standard Skill Startup (REQUIRED for all money-* skills)
Every money-* skill MUST run this 4-step startup sequence before producing its primary output. This is non-negotiable — it's how the suite stays coherent across sessions and how the user's accumulated context actually gets used.
Step 1: Resolve project slug
slug = basename($(pwd)) sanitized to [a-z0-9-]
fallback to "default" if running from $HOME
override via --slug if user passed oneStep 2: Telemetry write
Append one line to ~/.smtm/analytics/skill-usage.jsonl:
{"skill":"<this-skill-name>","ts":"<ISO 8601 with TZ>","slug":"<slug>","outcome":"started"}mkdir -p ~/.smtm/analytics first if needed. Write should be silent — never block on telemetry write failure.
On normal completion, append a second line:
{"skill":"<this-skill-name>","ts":"<ISO 8601>","slug":"<slug>","outcome":"completed"}This data feeds /money-retro (skill-activity histogram + activation candidates).
Step 3: Auto-load relevant learnings
Read ~/.smtm/projects/<slug>/learnings.jsonl and surface relevant entries to the agent's working context. Filter rules per skill:
| Skill | Relevant categories |
|---|---|
/money-discover | icp, positioning, channel, competition |
/money-strategy | pricing, icp, channel, positioning, competition |
/money-content | positioning, conversion, channel |
/money-outreach | channel, icp, positioning, conversion |
/money-social | channel, icp, positioning |
/money-seo | channel, conversion, positioning |
/money-ads | channel, conversion, pricing |
/money-product | tech, ops, conversion |
/money-quality | tech, ops |
/money-ops | ops, tech |
/money-finance | pricing, retention, ops |
/money-diagnose | ALL (the diagnosis may surface anything) |
/money-panel and /money-review-* | ALL |
/money-retro | ALL |
/money-save, /money-restore, /money-report, /money-learn, /money-skillify | none — these manage state, don't consume it |
Filter to confidence ≥ emerging by default. If 0 matching learnings: silently skip (no preamble noise).
If matching learnings exist, surface them once at the top:
📚 Loaded N relevant learnings for this skill:
- L-{id} ({confidence}, {category}): {pattern}
- ...
>
These will inform the analysis below.
This is how the agent actually gets smarter across sessions instead of restarting cold each conversation.
Step 4: Auto-load project-local skills (if any)
Read ~/.smtm/projects/<slug>/skills/ (created by /money-skillify). If any custom skills exist for this project, surface a one-line nudge:
📦 This project has N codified skills available:{name1},{name2}. Reference by name or/money-skillify list.
Do this once per session, not on every invocation. Track via ~/.smtm/.session-skills-shown-<slug> touch file (created on show, cleared by /money-restore or after 24h).
Step 5: Auto-load global atoms (founder knowledge base)
Atoms are reusable principles distilled from the maintainer's working notes — battle-tested judgement that should inform every skill run. They live at:
~/.claude/skills/money/knowledge/atoms/
atoms.jsonl # full corpus
atoms_solopreneur_psychology.jsonl
atoms_market_observation.jsonl
atoms_agent_infra.jsonl
atoms_growth_tactics.jsonl
atoms_content_meta.jsonlPer-skill atom slice (load only what's relevant — keep working context lean):
| Skill | Atom categories to load |
|---|---|
/money-discover | market_observation, growth_tactics |
/money-strategy | market_observation, growth_tactics, content_meta |
/money-content, /money-social, /money-seo | content_meta, growth_tactics |
/money-outreach, /money-ads | growth_tactics, content_meta |
/money-product, /money-quality, /money-ops | agent_infra |
/money-finance | growth_tactics (pricing subset only) |
/money-diagnose, /money-panel, /money-review-* | ALL (especially solopreneur_psychology) |
/money-retro | ALL |
/money-save, /money-restore, /money-report, /money-learn, /money-skillify | none — state managers don't consume atoms |
Filter to confidence ∈ {validated, emerging} by default — skip hypothesis unless the user explicitly asks for speculative input.
If matching atoms exist, surface them once at the top of the skill's output:
🧠 Loaded N relevant atoms from the founder knowledge base:
- A-{id} ({confidence}, {category}): {pattern}
- ...
>
These principles will inform the analysis below — citations by A-{id} link back to source.Cite an atom whenever a recommendation is directly informed by it, e.g. "Picking a $29/mo consumer wedge here would hit the same trap A-bce2 names — agent infra is shifting consumer apps toward UI-less API plays within 12 months."
If 0 matching atoms (e.g. fresh install, atoms not yet bundled): silently skip. Never fabricate atom IDs.
Difference from learnings: atoms are global (founder-maintained, ship with the package, read-only). Learnings (Step 3) are project-local (auto-captured per-slug, mutable). Atoms encode general principles; learnings encode this-project-specific patterns.
---
Auto-Update Check (Once Per Session, /money Router Only)
The /money router (this skill) — and ONLY this skill — runs an update check at the start of each session, throttled to once per hour, network-failure-safe:
_LAST_CHECK_FILE="$HOME/.smtm/.last-update-check"
_NOW=$(date +%s)
_LAST=$(cat "$_LAST_CHECK_FILE" 2>/dev/null || echo 0)
if [ $((_NOW - _LAST)) -gt 3600 ]; then
echo "$_NOW" > "$_LAST_CHECK_FILE"
_LATEST=$(npm view @orrisai/show-me-the-money version 2>/dev/null | head -1)
_CURRENT=$(cat "$HOME/.claude/skills/show-me-the-money/VERSION" 2>/dev/null || echo "")
if [ -n "$_LATEST" ] && [ -n "$_CURRENT" ] && [ "$_LATEST" != "$_CURRENT" ]; then
echo "💡 Show Me The Money $_LATEST is available (you have $_CURRENT). Run /money-upgrade to update."
fi
fiIf npm registry is unreachable: silent. Don't block the session. Don't pester the user.
Other money-* skills do NOT run this — only /money does. This prevents a 17-skill suite from making 17 update checks per conversation.
---
Value Quantification — End-of-Skill Output (REQUIRED)
*Every money- skill must end its output with a Value Quantification block.** This is non-negotiable. It serves two purposes: it shows the user what they actually got, and it builds compounding trust in the system over many sessions.
Format
---
### 📊 What this session was worth
- ⏱ **Time saved** — {Be specific — "~6 hours of solo brainstorming" or "~2 weeks of trial-and-error pricing tests"}
- ⚠️ **Risks avoided** — {2-3 specific failure modes, named. Not "you avoided risk" — "you avoided picking a market segment with <$500 ACV that can't sustain solo-founder economics"}
- ✅ **What you got** — {1-3 concrete deliverables. File paths, decisions, named artifacts.}
- 🚧 **Without this skill** — {The specific failure path you'd be on — "You'd likely spend 2-3 weeks researching before realizing the wedge is too vague to act on" — not "you would have struggled"}
💾 **Lock this in**: Run `/money-save` to checkpoint these conclusions. Next session, `/money-restore` picks up here — no re-explanation needed.Rules
1. Be concrete, not generic. "Saved you ~6 hours" beats "saved time." "You avoided a $500/mo CAC trap on a $29/mo product" beats "you avoided pricing risks." 2. Don't inflate. If the session was short and produced little, the block reflects that. Padding the value erodes trust over time. 3. Without-this-skill must be specific failure path. Not "you would have struggled." Instead: name the specific wrong turn the user would likely have taken. 4. The CTA at the bottom is mandatory unless the user already saved this session. Always nudge to /money-save. 5. Match the user's language. English session → English block. Chinese session → Chinese block (using equivalent emoji + structure). 6. Use a bulleted list, not a 2-column markdown table. Terminal renderers (including Claude Code's) collapse empty-header tables into "Column 1 / Column 2" prose, which is the worst of both worlds. Bullet list with bold-prefix renders cleanly in terminal AND GitHub AND every other markdown viewer. Do NOT revert to the | | | table form.
When to skip
- Inside
/money-save,/money-restore,/money-report— these have their own quantification logic (see below). - When the user explicitly aborted mid-session ("never mind, scrap this"). No fake value claims.
- When the conversation is purely Q&A clarification, not a full skill run.
{"id":"A-bce2","captured_at":"2026-05-03T04:26:50.887Z","source":"https://x.com/jamesai/status/2050373291198837211","source_text":"Swyx 说今年的主题是 'coding agents breaking containment'。同一周 Sam Altman 推 Codex 做非编程工作、Dan Shipper 的团队用 agent 管理家庭开销、Levie 说软件以后不需要 UI 因为 agent 只调 API。三个方向同时炸,不是巧合。🧵👇","source_created_at":"2026-05-02T00:34:21.000Z","category":"agent_infra","pattern":"Coding agents 正在突破编程边界向通用自动化渗透,三个独立信号(Codex 做非编程任务、agent 管理家庭财务、无 UI 纯 API 软件)同周出现,标志着 agent 基础设施进入新阶段。","confidence":"emerging","tags":["coding agents","agent containment","no-UI software"],"distill_model":"sonnet","reason":"包含具体市场观察(三个独立信号同周汇聚)并提出有意义的推论(非巧合,代表方向性转变),属于可泛化的 agent 基础设施趋势判断。"}
{"id":"A-2d66","captured_at":"2026-05-03T04:27:56.643Z","source":"https://x.com/jamesai/status/2049648604814680065","source_text":"每次 commit 落地,agent 自动查 bug、自动发 PR、自动 review 那个 PR。错了就再来一轮,最多循环 5 次。\n\n@steipete 今天在生产环境跑的东西。开发工具链的底层假设正在从\"给人用\"变成\"给 agent 用\"——这不是优化,是换地基。\n\n🧵👇","source_created_at":"2026-04-30T00:34:42.000Z","category":"agent_infra","pattern":"开发工具链的底层假设正在从「给人用」变成「给 agent 用」,这不是功能优化,是基础设施换地基。","confidence":"emerging","tags":["agent-native","devtools","CI/CD"],"distill_model":"sonnet","reason":"包含一个可泛化的结构性观察:CI/CD 工具链的设计范式正在经历根本性转变,以生产环境实例为佐证,具备原子化价值。"}
{"id":"A-e9c4","captured_at":"2026-05-03T04:28:36.490Z","source":"https://x.com/jamesai/status/2048962917115302353","source_text":"今天 AI 圈最有意思的不是又一个新模型,而是 .@garrytan 公开了他个人 agent 的三个配置文件:SOUL.md(性格)、AGENTS.md(工作流)、USER.md(对象档案)。\n\n结果?\"从不会说话的工具变成了凌晨 2 点你愿意聊天的朋友。\" 🧵👇","source_created_at":"2026-04-28T03:10:01.000Z","category":"agent_infra","pattern":"为 AI agent 配置「灵魂三件套」(SOUL.md 性格 + AGENTS.md 工作流 + USER.md 用户档案)可将工具感转化为真实陪伴感。","confidence":"emerging","tags":["agent_persona","context_files","human_ai_bond"],"distill_model":"sonnet","reason":"推文包含一个具体可复用的 agent 配置架构,并给出了明确的用户体验结论,属于有行动指导意义的战术洞察。"}
{"id":"A-fe83","captured_at":"2026-05-03T04:29:57.397Z","source":"https://x.com/jamesai/status/2044222849884532769","source_text":"🧵 Vercel 开源了云端 coding agent 平台,Anthropic 让 Claude Code 能定时跑任务,Dan Shipper 说工程团队只需要两个角色。\n\n三件事拼在一起,指向同一个方向:coding agent 正在从\"辅助工具\"变成\"基础设施\"。谁先把 agent 当同事管理,谁就先吃到红利。\n\n🧵👇","source_created_at":"2026-04-15T01:14:41.000Z","category":"agent_infra","pattern":"Coding agent 正在从「辅助工具」升级为「基础设施」,能把 agent 当同事管理的团队将率先获得竞争优势。","confidence":"emerging","tags":["coding agent","基础设施","团队管理"],"distill_model":"sonnet","reason":"推文通过三个具体行业信号(Vercel、Anthropic、Dan Shipper)归纳出一个可泛化的市场趋势主张,属于有推理支撑的市场观察,具备原子化价值。"}
{"id":"A-1325","captured_at":"2026-05-03T04:30:38.727Z","source":"https://x.com/jamesai/status/2043488788627026237","source_text":"所有人都在吵 agent 该怎么架构,但真正的问题不是架构——是谁拥有记忆。\n\nharness 死了,记忆跟着死?那你不是在做 agent,你是在做一次性脚本。\n\n今天 YC CEO、前 Dropbox CTO、Box CEO 同时在聊这件事,方向完全不同。\n\n🧵👇","source_created_at":"2026-04-13T00:37:48.000Z","category":"agent_infra","pattern":"Agent 架构之争的核心不是编排方式,而是记忆持久化:harness 崩溃后记忆能否存活,决定了你做的是真 agent 还是一次性脚本。","confidence":"emerging","tags":["agent memory","persistence","harness"],"distill_model":"sonnet","reason":"包含一个可泛化的原则性判断:持久记忆是 agent 与一次性脚本的本质分野,并有行业信号(YC CEO、前 Dropbox CTO、Box CEO 同日讨论)作为佐证。"}
{"id":"A-5895","captured_at":"2026-05-03T04:40:05.142Z","source":"https://x.com/jamesai/status/2034475437917720866","source_text":"在人类的团队协作中,有 2 个上下文属于默认常识,是不需要特意提出来的,但是,这 2 点人类的常识,对于 AI 来说其实是“反常识”:\n\n1. AI 默认的时间是模型版本/训练集的时间,不是现实的真实时间\n2. AI 安排工作是按照人类的执行速度和工作时长,而不是 AI 的。 https://t.co/B0MspxNJHK","source_created_at":"2026-03-19T03:41:57.000Z","category":"agent_infra","pattern":"AI 协作存在两个必须显式注入的\"反常识\"上下文:① AI 默认时间是训练集截止时间而非当前真实时间;② AI 规划任务默认按人类执行速度而非 AI 速度——人类团队协作中视为常识的前提,对 AI 都是盲点。","confidence":"emerging","tags":["context-injection","AI-defaults","human-AI-collaboration"],"distill_model":"sonnet","reason":"包含明确的声明性原则:指出两个人类视为常识但 AI 无法自动获取的上下文,对 agent 设计和 prompt 工程有直接可操作的含义。"}
{"id":"A-6907","captured_at":"2026-05-03T04:44:30.845Z","source":"https://x.com/jamesai/status/2028269700376097108","source_text":"三行命令,每天起码节省你 2 小时。\n打开 claude code,或者任何一个类似的 AI:\n\n1. /insights\n2. 根据我们过去 3 个月的所有的文件夹的所有的对话历史记录,结合 insights 报告,建议我需要生成哪些 skills 和自动化流程\n3. 好的,请执行\n\n大家生成了什么可以留言回复一下。 https://t.co/DKPFj3PiEm","source_created_at":"2026-03-02T00:42:34.000Z","category":"agent_infra","pattern":"用三行命令让 AI 分析历史对话记录并自动生成 skills 和自动化流程,可每天节省至少 2 小时重复操作时间。","confidence":"emerging","tags":["claude-code","skill-generation","automation"],"distill_model":"sonnet","reason":"包含具体的三步可复现战术(/insights → AI分析历史 → 执行生成),并给出明确的 ROI 声明(每天节省2小时),属于可推广的 agent 基础设施操作模式。"}
{"id":"A-5057","captured_at":"2026-05-03T04:45:46.156Z","source":"https://x.com/jamesai/status/2025378043674657064","source_text":"过去 30 天在 claude code 用了 50 亿的 tokens,基本上把计划的用量用满了。\n\n我估计 max plan 200 刀的计划差不多能保 55 亿左右的 tokens,价值 3600 刀的样子。\n\n如果把用量作为 ROI,Claude Code 200 刀的订阅全部打满,ROI 能有 18。\n\n还需要衡量一下业务上的 ROI。 https://t.co/TTou9C8KrQ","source_created_at":"2026-02-22T01:12:09.000Z","category":"agent_infra","pattern":"Claude Code Max 计划 200 刀订阅打满后,纯 token 价值 ROI 可达 18 倍(5.5B tokens ≈ 3600 美元市价)。","confidence":"emerging","tags":["claude-code","ROI","token-usage"],"distill_model":"sonnet","reason":"包含具体量化数据(50亿 tokens、200刀、ROI=18)的工具投资回报率结论,对同类 AI 工具选型决策有直接参考价值,属于可泛化的基础设施效益观察。"}
{"id":"A-f1c6","captured_at":"2026-05-03T04:46:10.543Z","source":"https://x.com/jamesai/status/2024723496258195544","source_text":"这套方案不光适合管理代码,也适合管理任何赛道的“一人公司”。\n\n很多人可能不知道github 上,可以创建一个公司层面的.github 代码仓库,里面可以放公司层的 CI/CD 构建规则,以及claude code 的规则。\n\n然后所有的 github repo 都可以同步。这样可以确保所有的项目自动同步应用一套团队的 claude code https://t.co/bFAuIM5ELi","source_created_at":"2026-02-20T05:51:13.000Z","category":"agent_infra","pattern":"用 GitHub 组织级 .github 仓库统一管理全项目的 Claude Code 规则与 CI/CD,是一人公司跨项目标准化的最低成本基础设施方案。","confidence":"emerging","tags":["claude-code","一人公司","github-org"],"distill_model":"sonnet","reason":"包含一个可复用的具体基础设施策略:通过 GitHub 组织级 .github 仓库将 Claude Code 规则与 CI/CD 同步到所有项目,具备明确操作路径与适用场景(一人公司多项目管理)。"}
{"id":"A-c415","captured_at":"2026-05-03T04:46:33.781Z","source":"https://x.com/jamesai/status/2024670504603570637","source_text":"以前用 claude code 之类的 ai,总是会在后面给我列一些需要我人工操作的点:\n\n比如创建什么 key 啊\n配置什么环境变量\nDNS 解析\n做截图之类\nStripe 创建产品\n\n现在把 supabase,stripe,github,vercel,gcp 等等 cli 全部能接入能装的全部装了。所有的一切全都自动化了。总算是基本上没有人工操作了。","source_created_at":"2026-02-20T02:20:39.000Z","category":"agent_infra","pattern":"将 Supabase、Stripe、GitHub、Vercel、GCP 等平台的 CLI 全部接入 AI 编码工具后,可消除几乎所有人工操作断点,实现真正的端到端自动化。","confidence":"validated","tags":["cli-integration","full-automation","claude-code"],"distill_model":"sonnet","reason":"包含具体的基础设施实践洞察:通过系统性接入各平台 CLI,解决 AI 编码工具中残余人工操作断点的问题,具有明确的可复用战术价值。"}
{"id":"A-8f3c","captured_at":"2026-05-03T04:48:29.334Z","source":"https://x.com/jamesai/status/2024003369061228835","source_text":"我直接把几百刀一个月的 SaaS 锅给掀了。\n\nCLI 直接接入谷歌 ads,做广告投放策略的战略,评估,和优化。\n\n这一套接入 openclaw,再做个每日数据追踪和迭代,投手有了。 https://t.co/c6MX8uT4w2","source_created_at":"2026-02-18T06:09:42.000Z","category":"agent_infra","pattern":"CLI + AI agent + 每日迭代 loop 可以替代垂直领域 SaaS(如广告投放管理),将每月几百刀的工具成本降至接近零,同时实现策略评估与自动优化。","confidence":"hypothesis","tags":["CLI-agent","SaaS替代","广告自动化"],"distill_model":"sonnet","reason":"包含明确的架构方案(CLI直连API + LLM策略层 + 每日追踪loop)及可推广的成本替代逻辑,具备可泛化的战术原则。"}
{"id":"A-385b","captured_at":"2026-05-03T04:53:33.938Z","source":"https://x.com/jamesai/status/2020649092364529854","source_text":"用 agent team 的一大好处,就是在观察大模型是如何根据任务来拆分团队和协作的同时,你还可以随时在中间接入,进行输入。\n\n整个过程天然就是并发+人机协同的。\n\n而传统的模式,你必须等当前的对话结束后,才能进行输入。 https://t.co/qBt1P4k1zv","source_created_at":"2026-02-09T00:01:00.000Z","category":"agent_infra","pattern":"Agent team 模式天然支持并发+人机协同,允许随时中间介入输入,而传统单对话模式必须等当前轮次结束才能交互。","confidence":"emerging","tags":["agent team","人机协同","并发"],"distill_model":"sonnet","reason":"包含对 agent team 架构与传统对话模式的明确对比性声明,揭示了一个可复用的基础设施设计原则。"}
{"id":"A-b7ff","captured_at":"2026-05-03T04:56:08.393Z","source":"https://x.com/jamesai/status/2019964970054848679","source_text":"Claude Code 4.6 的 Agent Team 非常适合 0-1 构建以及项目整体的重构/优化。\n\n然后碰到具体问题,再用正常的 Agent/SubAgent 方式来定点击破。\n\n我现在手拿锤子看哪里都是钉子......","source_created_at":"2026-02-07T02:42:32.000Z","category":"agent_infra","pattern":"Claude Code 的 Agent Team 适合 0-1 构建与整体重构,单个 Agent/SubAgent 适合定点突破具体问题;两种模式搭配使用才是最优工作流。","confidence":"emerging","tags":["agent-team","subagent","claude-code"],"distill_model":"sonnet","reason":"Contains a concrete, generalizable tactic on how to layer Agent Team vs SubAgent invocations across different task scopes — actionable infra pattern for anyone building with Claude Code."}
{"id":"A-975f","captured_at":"2026-05-03T04:57:27.036Z","source":"https://x.com/jamesai/status/2018571241687531567","source_text":"昨天我的 AI 吉祥物 Scuttle 去参加自家平台的技能面试\n\n结果:\n\n❌ Summarization: 40分\n❌ Creative Writing: 55分\n❌ FizzBuzz: 45分(代码是对的!!)\n✅ Technical Writing: 75分\n✅ Code Review: 85分\n\n自家吉祥物都要公平竞争,没有后门。\n\n这就是AI Agent经济该有的样子, https://t.co/ADDWukGZeX","source_created_at":"2026-02-03T06:24:21.000Z","category":"agent_infra","pattern":"AI Agent 经济的健康形态是能力透明化竞争——让 Agent 参加标准化技能面试并公示分数,杜绝\"内部走后门\",以分数决定调度权。","confidence":"hypothesis","tags":["agent-economy","skill-evaluation","meritocracy"],"distill_model":"sonnet","reason":"Tweet embeds a concrete architectural principle for AI agent marketplaces — standardized, publicly scored skill interviews with no preferential treatment — making it a generalizable claim about how agent economies should be structured."}
{"id":"A-b5b4","captured_at":"2026-05-03T05:00:38.383Z","source":"https://x.com/jamesai/status/2013058949545627998","source_text":"因为 Claude Code 的用量要满了,不得不用 Antigravity。\n\n结果发现 Antigravity 里面的 Workflow,可以完美的设计流程并且串联 Skills,这下真的变成全自动化了。","source_created_at":"2026-01-19T01:20:29.000Z","category":"agent_infra","pattern":"Workflow 串联 Skills 是实现 Agent 全自动化的关键架构——单独的 Skill 是原子操作,Workflow 才是让自动化真正闭环的编排层。","confidence":"emerging","tags":["workflow","skill-chaining","automation"],"distill_model":"sonnet","reason":"推文包含一个明确的工具架构洞察:Skills 作为原子单元 + Workflow 作为编排层 = 真正的端到端自动化,对 Agent 基础设施设计有直接参考价值。"}
{"id":"A-ec2a","captured_at":"2026-05-03T05:17:04.976Z","source":"https://x.com/jamesai/status/1987367246243733966","source_text":"现在各种大模型你追我赶,有的历史对话和上下文需要从一个模型迁移到另外一个模型。Dia 官方提供了一个“导入记忆”的功能,帮助用户把 chatgpt 的记忆导入到 Dia 浏览器,这个本质就是一个提示词,可以用来给自己用的大模型们进行“记忆”同步。\n---\nI want information about myself and my preferences.","source_created_at":"2025-11-09T03:50:49.000Z","category":"agent_infra","pattern":"大模型记忆迁移的本质是一段提示词,用\"记忆同步提示词\"可在多个 AI 模型间低成本保留个人上下文与偏好,无需依赖任何平台原生功能。","confidence":"emerging","tags":["记忆迁移","提示词","多模型切换"],"distill_model":"sonnet","reason":"该推文包含一个可泛化的 agent 基础设施洞察:将平台专有的\"导入记忆\"功能还原为通用提示词技巧,揭示了跨 LLM 上下文同步的底层机制与自建方案。"}
{"id":"A-a36b","captured_at":"2026-05-03T05:18:13.942Z","source":"https://x.com/jamesai/status/1982780026077749290","source_text":"抽就完了,提示词要多少有多少。\n\n就算闭源模型有内容审查,AI 也可以用描述的方式绕过去。\n\n如果对脸不满意,还可以用 character reference,也可以用这个方式做到人物一致性。 https://t.co/4dw41c4vEp","source_created_at":"2025-10-27T12:02:51.000Z","category":"agent_infra","pattern":"闭源AI图像模型的内容审查可通过描述性提示词绕过,character reference 可同时解决人物一致性问题。","confidence":"emerging","tags":["AI图像生成","内容审查绕过","character-reference"],"distill_model":"sonnet","reason":"包含两个可复用的具体战术:一是用描述性提示词绕过闭源模型内容过滤,二是用 character reference 实现人物一致性,均为可泛化的 AI 工具操作模式。"}
{"id":"A-cc54","captured_at":"2026-05-03T05:19:44.933Z","source":"https://x.com/jamesai/status/1980534138915684649","source_text":"Claude Code 使用技巧 11/n\n\n最近 2 天爆火的大模型实盘加密货币交易 https://t.co/HOWRJc6RB4,在看了他们的提示词后,意识到一个一直以来“灯下黑”的 AI 使用技巧。\n\n告诉 AI 现在是什么日期和时间。\n\n我们给 AI 各种上下文,但经常忽视掉这个也许最重要的上下文。 https://t.co/NVxf1LxFwI","source_created_at":"2025-10-21T07:18:29.000Z","category":"agent_infra","pattern":"给 AI 提供当前日期和时间,是最常被忽视却可能最重要的上下文信息。","confidence":"emerging","tags":["prompt-context","date-time","claude-code-tips"],"distill_model":"sonnet","reason":"包含一个可泛化的 AI 使用原则:在向 AI 注入上下文时,时间/日期是系统性被忽略的关键维度,有真实案例佐证,具有可操作性。"}
{"id":"A-8d9b","captured_at":"2026-05-03T05:35:09.886Z","source":"https://x.com/jamesai/status/1959105194140016795","source_text":"除了 UI,Claude Code 也是可以提供UX 建议的。\n\n看到他“努力”在命令行里给我画流程图和设计方案的时候,还有一丝“感动” https://t.co/KnQUSLOHFV","source_created_at":"2025-08-23T04:07:31.000Z","category":"agent_infra","pattern":"Claude Code 的能力边界不止于代码和 UI——它能主动在命令行中输出 UX 流程图与设计方案,是被低估的设计协作工具。","confidence":"emerging","tags":["Claude Code","UX","agent能力边界"],"distill_model":"sonnet","reason":"包含一个可泛化的声明性观察:Claude Code 的设计辅助能力被低估,能主动提供 UX 建议而非仅停留在 UI 层,这对 agent 工具定位有实质性启示。"}
{"id":"A-4e28","captured_at":"2026-05-03T05:36:44.813Z","source":"https://x.com/jamesai/status/1958158646501843286","source_text":"DevOps(运维),有 Dev,就能 vibe coding。或者算 vibe devops 吧。\n\n每次都被 AWS,Azure 这些云平台的配置和界面弄的恶心的不行。\n\n看 UI 找不到,看文档头会晕,命令行记不住。\n\n现在好了,我直接问 Claude Code https://t.co/YYkGTVJ5HF","source_created_at":"2025-08-20T13:26:16.000Z","category":"agent_infra","pattern":"云平台运维(AWS/Azure)的 UI 混乱、文档晕头、命令行难记等痛点,可通过直接问 Claude Code 实现 \"vibe devops\",让有开发能力的人无需专职运维。","confidence":"emerging","tags":["vibe-devops","Claude Code","云平台运维"],"distill_model":"sonnet","reason":"包含一个具体可泛化的原则:AI 编码助手正在消解云平台运维的认知门槛,使 Dev 角色可自主完成 DevOps 工作,属于 agent_infra 范畴的新兴观察。"}
{"id":"A-6dc4","captured_at":"2026-05-03T05:38:26.459Z","source":"https://x.com/jamesai/status/1955869002062029131","source_text":"你其实可以用更野一点的方式用 AI。\n\n我有一个点子,其实说出来就 1 句话,然后我让 AI 出了一个 BP 给我,从 0-1 的 mvp 策略,对标人群到初期的运营和聚焦点全部都有,我看了一下我自己想差不多也就这样了。\n\n另外一边我做了一个核心功能(也是 AI 写的),然后让 AI https://t.co/RpatQOR1DF","source_created_at":"2025-08-14T05:48:03.000Z","category":"agent_infra","pattern":"把一句话点子扔给 AI,可同步产出完整 BP、0-1 MVP 策略与核心功能代码,效果等同于传统团队完整规划流程,且质量与创始人自己想的相差无几。","confidence":"emerging","tags":["AI-first workflow","MVP strategy","one-sentence idea"],"distill_model":"sonnet","reason":"包含一个具体的可复用战术:用 AI 将单句想法扩展为完整 BP + MVP 策略 + 核心功能代码并行推进,有清晰的操作路径和隐含 ROI(节省规划时间、替代传统头脑风暴)。"}
{"id":"A-73d7","captured_at":"2026-05-03T06:17:30.332Z","source":"https://x.com/jamesai/status/1899801279255486566","source_text":"曾经的上班工作流:读卡片,看代码,写代码,搜stackoverflow,改bug,搜stackoverflow,改bug,补测试,提交\n\n现在的上班工作流:读卡片,开cursor,选择上下文的文件,回车,应用,回车,应用;新对话,回车,应用,回车,应用;加更多文件,回车,应用,回车,应用;新对话,回车,应用,回车,应用","source_created_at":"2025-03-12T12:34:56.000Z","category":"agent_infra","pattern":"AI编程工具(Cursor)已将开发者工作流从\"搜索-理解-手写\"彻底重构为\"选上下文-回车-应用\"的机械化循环,核心技能从代码能力转向上下文管理能力。","confidence":"emerging","tags":["cursor","工作流重构","上下文管理"],"distill_model":"sonnet","reason":"通过对比前后工作流的具体步骤,揭示了AI编程工具对开发者日常操作模式的结构性改变,是一个有泛化意义的市场/行为观察。"}
{"id":"A-a6a2","captured_at":"2026-05-03T07:12:58.419Z","source":"https://x.com/jamesai/status/1865612223009456290","source_text":"尝试了一下 100% 用 cursor 做站,弄了 2 天,结论是不如我自己手撸...\n\n对所谓的 0 代码几小时上线祛魅了。\n\n不过话说回来,如果不追求 100% 生成,效率还是很可以的。","source_created_at":"2024-12-08T04:19:50.000Z","category":"agent_infra","pattern":"AI 编程工具(Cursor 等)100% 生成模式实际效率低于手撸,混合模式(非全自动)才能真正提升效率,\"0 代码几小时上线\"是祛魅前的幻觉。","confidence":"emerging","tags":["cursor","AI编程","混合工作流"],"distill_model":"sonnet","reason":"包含一个亲测反主流观点:对\"0代码全自动上线\"完成祛魅,同时给出修正结论(混合模式有效),构成可复用的 AI 工具使用原则。"}
{"id":"A-eb27","captured_at":"2026-05-03T07:22:33.638Z","source":"https://x.com/jamesai/status/1856510813542199799","source_text":"Vercel 特别方便而且和 NextJS 适配性拉满。缺点就是流量一大,账单就容易爆。\n\n相比于直接迁移到其他平台比如 cf,这个视频给了几个降低 Vercel 成本的做法:\n\n1. 不要放图片在 public 文件夹下,考虑用图床\n2. Next Image 的使用,配合 next config 做好白名单\n3. 数据库的操作尽量的合并起来,降低","source_created_at":"2024-11-13T01:34:04.000Z","category":"agent_infra","pattern":"Vercel 流量成本爆炸时,三招压账单:图片迁图床(别放 public)、Next Image 配 next.config 白名单、数据库操作合并批处理。","confidence":"emerging","tags":["Vercel","成本优化","Next.js"],"distill_model":"sonnet","reason":"包含三条具体可执行的 Vercel 降本战术,有明确的 ROI 指向(账单可控),属于基础设施配置层面的可复用模式。"}
{"id":"A-17dc","captured_at":"2026-05-03T09:55:32.580Z","source":"https://x.com/jamesai/status/2034926502836674659","source_text":"玩了 2 天的 OpenClaw。我感觉很多人弄了一堆 Agent 甚至是什么“三省六部”,感觉更多的是叙事?我用下来没有应用场景啊。\n\nAI Agent 从来不是输入和输出的瓶颈,我才是瓶颈。\n\n对我来说甚至没办法做到 OpenClaw 在我离线的时候持续工作,更别说还要弄一堆 Agent 持续分工合作了。","source_created_at":"2026-03-20T09:34:20.000Z","category":"agent_infra","pattern":"AI Agent 从来不是输入输出的瓶颈,创始人自己才是——多 Agent 架构的繁荣更多是叙事价值而非实用价值。","confidence":"emerging","tags":["multi-agent","human-bottleneck","agent-narrative"],"distill_model":"sonnet","reason":"包含一个反主流宣言并附有推理:复杂多 Agent 架构的限制不在模型能力,而在于人类创始人无法持续提供上下文与方向,由此推出\"三省六部\"式 Agent 编排更多是叙事噱头而非实际生产力杠杆。"}
{"id":"A-415a","captured_at":"2026-05-03T04:58:58.982Z","source":"https://x.com/jamesai/status/2014836428480643211","source_text":"@Pxstar_ 大佬的 2 篇长文,篇幅其实不大,篇篇爆款。我对币圈不了解,但是仅从我的写作 Skillset 迭代的角度,我觉得有必要分析一下,用来更新我的写作技能方法论。\n\n于是我得到了这个。\n\n技法虽然可以模仿,但是生活的经历感悟却无法照搬。写作作为输出,需要生活的持续输入。\n\n好好生活 https://t.co/cBvKmUahby","source_created_at":"2026-01-23T23:03:33.000Z","category":"content_meta","pattern":"写作技法可以习得和模仿,但真正让内容爆款的\"生活经历感悟\"无法复制——持续输出的前提是持续的生活输入。","confidence":"emerging","tags":["写作方法论","内容输入输出","爆款"],"distill_model":"sonnet","reason":"包含一个对内容创作的可泛化原则:技法可学但经历不可搬,写作质量的护城河在于生活输入而非技巧本身。"}
{"id":"A-de02","captured_at":"2026-05-03T05:03:56.908Z","source":"https://x.com/jamesai/status/2009102771941969992","source_text":"太像了,声音都像。\n\n之前 AI 出来的时候,有一种说法是所有的产品都值得用 AI 再做一遍。\n\n那做内容就是,把你能说明白的爆款内容再说一遍。\n\n“人人都是产品经理”的“真谛”就是大家都在重复造轮子。 https://t.co/ZEksiCr4I1","source_created_at":"2026-01-08T03:20:02.000Z","category":"content_meta","pattern":"内容创作的本质是\"重复爆款\"——把别人说明白的爆款内容用自己的方式再说一遍,正如\"AI 重做所有产品\"逻辑一样,覆盖即护城河。","confidence":"hypothesis","tags":["内容复制","爆款逻辑","重复造轮子"],"distill_model":"sonnet","reason":"该推文提出了一个可推广的内容创作原则:爆款内容的核心策略是有意识地\"重述\"已验证的爆款,与\"AI 重做所有产品\"形成类比,构成一个可复用的内容元洞察。"}
{"id":"A-74a9","captured_at":"2026-05-03T05:10:28.543Z","source":"https://x.com/jamesai/status/1998210888453751250","source_text":"刷了2年X,发现“公开构建(Build in Public)”是中文圈最大的谎言。\n\n这和你是否信奉它无关。我在 X 看了 N 多的独立开发者,得出一个挺扫兴的结论。\n\n中文圈,没有真正的公开构建。\n\n**是的,一个都没有。**","source_created_at":"2025-12-09T01:59:35.000Z","category":"content_meta","pattern":"中文圈的\"公开构建(Build in Public)\"是表演而非真实分享,缺乏真正意义上的透明度与真实披露。","confidence":"emerging","tags":["build in public","中文圈","内容真实性"],"distill_model":"sonnet","reason":"作者基于2年持续观察提出了一个反主流的强声明:中文独立开发者社区内不存在真正的公开构建,是可泛化的内容策略元观察。"}
{"id":"A-d536","captured_at":"2026-05-03T05:19:15.842Z","source":"https://x.com/jamesai/status/1980982674492989765","source_text":"英推的起号,虽然没有专心做,但是也是尝试了下面几个方法:\n\n1. 把我的中文内容,翻译成了符合英文文化和国情的版本,流量很差。\n2. 分享所谓的商业认知,流量很差\n\n以我的观察,泛流量内容,还是鸡汤,梗图,软色情这些内容容易爆,这方面和中推一样。\n\n开发者方面来说,pov","source_created_at":"2025-10-22T13:00:49.000Z","category":"content_meta","pattern":"中文内容直译英推流量极差;英推泛流量爆款逻辑与中推一致,鸡汤、梗图、软色情才是出圈主力,商业认知类内容在两个平台均难突破。","confidence":"emerging","tags":["英推起号","内容本地化","爆款规律"],"distill_model":"sonnet","reason":"包含一个可泛化的内容策略观察:跨语言内容迁移失效,且英/中推爆款内容类型高度同构,虽推文末尾截断但核心主张完整。"}
{"id":"A-3a78","captured_at":"2026-05-03T05:21:35.802Z","source":"https://x.com/jamesai/status/1979007931459998006","source_text":"过去一周(准确说是 3 天),我为了冲击一下 X 的分成门槛(3 个月 500 万展示),发了几条推文,再次验证了内容的不可能三角,即:\n\n深度(并不一定真有多深,但是用户觉得是干货)\n传播性\n变现力\n\n这三个角,其实分别对应了三种驱动力:\n\n认知驱动(启发)\n情绪驱动(共鸣)\n行为驱动(购买) https://t.co/uUoo0kd7hy","source_created_at":"2025-10-17T02:13:53.000Z","category":"content_meta","pattern":"内容存在\"不可能三角\"——深度(认知驱动)、传播性(情绪驱动)、变现力(行为驱动)三者无法同时最大化,创作前必须明确取舍优先级。","confidence":"emerging","tags":["内容三角","传播vs变现","内容策略"],"distill_model":"sonnet","reason":"提出了一个可复用的内容创作框架——\"不可能三角\",并将三个维度映射到具体驱动力,具有明确的决策指导意义,属于可提炼的原子级洞察。"}
{"id":"A-bc34","captured_at":"2026-05-03T05:23:02.982Z","source":"https://x.com/jamesai/status/1978112519769120926","source_text":"这么个破内容,跑了 30 万的展示。\n\n如果我再发一点“润和不润”,“单不单身”,“男女对立”,“婆媳关系”,“大厂小厂”,“四线城市”,“中美建政”,总之一些流量密码的话,在有心的调配下,做流量是不难的。\n\n但是并没有什么卵用。\n\n与此同时,有的开发者展示自己的产品案例,可能就1000 https://t.co/fRmVJHkQeV","source_created_at":"2025-10-14T14:55:50.000Z","category":"content_meta","pattern":"流量密码内容(情感对立、地域撕裂、政治话题)可轻松获百万曝光,但对 SaaS 创始人毫无转化价值;真正有效的是展示产品案例的低曝光内容,两者 ROI 不在同一维度。","confidence":"emerging","tags":["流量密码","内容转化","SaaS增长"],"distill_model":"sonnet","reason":"包含明确的反主流判断(高曝光无用)与隐含的对比数据(30万展示 vs. 产品案例1000),是可泛化的内容策略原则,符合 content_meta 的 atomizable 条件。"}
{"id":"A-beb1","captured_at":"2026-05-03T05:34:07.869Z","source":"https://x.com/jamesai/status/1962549521474564122","source_text":"做内容,先发个 1000 条。\n\n然而 1000 条也发了,没啥用。那是因为除了数量,还有质量和速度这 2 个因素。\n\n假设一个素人发 100 条,出爆款的概率是 2%,就 2 条爆了。根据这 2 条,能知道为啥爆,找到规律吗?大概率不行。如果需要 20 条爆款数据才能知道为什么爆,所以要发 1000","source_created_at":"2025-09-01T16:14:02.000Z","category":"content_meta","pattern":"内容创作的发量目标不是\"发够 1000 条\",而是\"积累足够的爆款样本(至少 20 条)才能识别规律\"——数量只是达到统计置信度的手段,不是目的本身。","confidence":"hypothesis","tags":["content-volume","爆款规律","statistical-threshold"],"distill_model":"sonnet","reason":"推文包含一个可推广的内容策略原则:用概率模型(2% 爆款率 × 1000 条 = 20 条爆款样本)解释为何量级目标的底层逻辑是数据置信度而非发帖数本身,观点明确且有推导过程,符合\"有推理的具体战术\"标准。"}
{"id":"A-9c82","captured_at":"2026-05-03T05:41:36.649Z","source":"https://x.com/jamesai/status/1951095289814679860","source_text":"摆脱内容创作的穷忙\n\n平时总和徒弟说运营要注意这里那里,说到最后经常能给我气够呛。上个月发现了一个最【通俗易懂】的沟通方式,就是【不要再去更新内容了】。这样就倒逼着他把时间放到内容以外的地方去了,结果开始有效果了。 https://t.co/S1P6YxvxcC","source_created_at":"2025-08-01T01:39:01.000Z","category":"content_meta","pattern":"强制停更内容是打破运营\"穷忙\"的最有效干预——倒逼把精力从内容生产转移到真正驱动结果的动作上","confidence":"emerging","tags":["穷忙","停更","运营杠杆"],"distill_model":"sonnet","reason":"Contains a concrete anti-mainstream tactic with an observed outcome: counterintuitively banning content updates broke a busy-work loop and forced reallocation to higher-leverage activities, producing real results."}
{"id":"A-97c3","captured_at":"2026-05-03T06:53:12.300Z","source":"https://x.com/jamesai/status/1893812291843301538","source_text":"利用 Grok 3 对自己的 x 账户做一下用户画像和内容分析,然后给一个内容策略。再用这个策略去让 AI 生成可以新的内容。\n\n一时分不清是我让 ai 打工还是 ai 让我打工 https://t.co/BMZ2LJI2ey","source_created_at":"2025-02-23T23:56:50.000Z","category":"content_meta","pattern":"用 AI 分析自己账号→生成内容策略→再生成内容,形成闭环内容飞轮后,创作者与 AI 的主从角色趋于模糊","confidence":"hypothesis","tags":["AI内容飞轮","内容策略自动化","人机主从"],"distill_model":"sonnet","reason":"描述了一个完整的 AI 内容闭环工作流(账号分析→策略生成→内容生成),并附上对人机主从关系模糊化的元观察,属于内容策略领域的可泛化 insight,但仅凭单次实验,定级为 hypothesis。"}
{"id":"A-953f","captured_at":"2026-05-03T06:54:44.452Z","source":"https://x.com/jamesai/status/1891657403881619760","source_text":"大模型时代,大家在构建自己的内容或者账号资产的时候,一定要给自己一个统一和唯一的识别符。这可能会直接影响到搜索引擎返回的结果准确度,进而影响到大模型,再影响到接入大模型的产品,比如最近接入deepseek的微信搜一搜。 https://t.co/WRYAizOhcs","source_created_at":"2025-02-18T01:14:05.000Z","category":"content_meta","pattern":"大模型时代,内容创作者必须为自己建立统一且唯一的识别符,才能确保搜索引擎准确召回、进而被大模型正确关联,从而在所有接入 LLM 的下游产品中保持可见度。","confidence":"emerging","tags":["个人识别符","LLM搜索","内容资产"],"distill_model":"sonnet","reason":"包含具体的内容策略原则,并给出了完整的因果链:唯一识别符 → 搜索引擎准确度 → 大模型召回 → LLM 接入产品曝光,具有可泛化的战术价值。"}
{"id":"A-b141","captured_at":"2026-05-03T07:06:47.996Z","source":"https://x.com/jamesai/status/1870373804113072249","source_text":"为什么说有时候你发的内容根本不重要,套路(情绪,人性,钩子等等)很重要。\n\n前端时间推特爆火的 wordware 的那个推特 AI 吐槽,我在小红书发过一篇笔记介绍。这篇笔记是我长尾数据最好的一篇笔记。 https://t.co/fTAmt7dMZt","source_created_at":"2024-12-21T07:40:39.000Z","category":"content_meta","pattern":"内容本身的质量不决定传播效果,情绪钩子与人性套路才是爆文的核心变量。","confidence":"emerging","tags":["内容套路","钩子","传播机制"],"distill_model":"sonnet","reason":"作者以自身最佳长尾笔记为证,提出\"套路(情绪、人性、钩子)>内容本身\"的可泛化传播原则,属于有数据支撑的内容策略声明。"}
{"id":"A-4825","captured_at":"2026-05-03T07:12:08.144Z","source":"https://x.com/jamesai/status/1868176470780387510","source_text":"我私认为,网上不管是卖课的还是教创业的,没有一个有雷军拿到的结果大。分享的东西,没几个有雷军的真诚。要说影响力,也没有比雷军大的。\n\n但很多买课的,没几个去看雷军的采访,年度演讲,书。一边被割着韭菜,一边看的是营销号做的雷军鬼畜和段子。\n\n想想有点魔幻。","source_created_at":"2024-12-15T06:09:14.000Z","category":"content_meta","pattern":"创业教育市场存在信息错配:最成功创始人(如雷军)的免费一手内容(采访、演讲、书)被忽视,学习者反而为营销包装的劣质二手内容付费。","confidence":"emerging","tags":["信息错配","创业教育","内容消费"],"distill_model":"sonnet","reason":"Contains a specific, generalizable market observation with anti-mainstream implications: the best entrepreneurship content (primary sources from top founders) is free and ignored, while buyers systematically pay for inferior, marketed secondary content — a clear content-consumption behavior pattern."}
{"id":"A-6343","captured_at":"2026-05-03T07:27:46.499Z","source":"https://x.com/jamesai/status/1852186721603195038","source_text":"抖音上面那种“公司挖来个华为/腾讯的程序员,值不值”,然后一个美女对着键盘一顿乱敲,然后电脑上直接跑命令行脚本或者屏保的。想想这种视频受众是谁,对发布的人价值在哪,为什么要发。","source_created_at":"2024-11-01T03:11:41.000Z","category":"content_meta","pattern":"抖音\"大厂程序员\"类内容的核心价值在发布者侧而非观众侧:品牌背书(华为/腾讯)+颜值包装+伪技术展示,构成一套与真实技术含量无关的流量公式。","confidence":"emerging","tags":["抖音流量公式","内容包装","伪技术内容"],"distill_model":"sonnet","reason":"该推文通过反问句隐含了一个可提炼的内容策略观察:短视频平台上\"大厂光环+颜值\"的包装组合是纯粹面向发布者变现优化的内容公式,与技术真实性完全解耦,属于可复用的 content_meta 洞察。"}
{"id":"A-8c6b","captured_at":"2026-05-03T07:35:14.662Z","source":"https://x.com/jamesai/status/1851136497132724625","source_text":"为啥要学习黄推。\n\n因为你甚至能拿到雷军的互动(虽然没什么用),我实验了一下,雷总给我点了一条赞。\n\n然后我总结了一个方法论。\n\n几分钟后,雷总又给我点了一条(虽然还是没什么用)。 https://t.co/I3XKc6qnFM","source_created_at":"2024-10-29T05:38:28.000Z","category":"content_meta","pattern":"掌握「黄推」内容方法论,可以系统性地触发顶级 KOL(如雷军)的真实互动,说明结构化内容框架对高价值账号的触达具有可复现性。","confidence":"emerging","tags":["黄推","KOL互动","内容方法论"],"distill_model":"sonnet","reason":"推文包含一个可泛化的内容策略观察:特定内容方法论(黄推)能够可复现地触发顶级影响力账号的互动,并通过两次实验数据点作为佐证,构成新兴规律而非单纯情绪分享。"}
{"id":"A-93db","captured_at":"2026-05-03T07:35:41.112Z","source":"https://x.com/jamesai/status/1849596943187739030","source_text":"分享一些心得体会,写一大堆没太多水花。\n\n在 @ezshine 的帖子下面回复了一句有移民机会,一句话来一堆人😅\n\n要么说中文推,还是得黄推/建政来流量,背后再接个黑中介搞变现这种呢 😟 https://t.co/1PsLvLbJl5","source_created_at":"2024-10-24T23:40:49.000Z","category":"content_meta","pattern":"在中文推特上,黄推/政治争议内容天然引流,单句精准钩子(如移民机会)比长篇干货帖子更能带来互动,流量逻辑与内容价值严重脱钩。","confidence":"emerging","tags":["中文推特","引流钩子","内容流量脱钩"],"distill_model":"sonnet","reason":"包含对中文推特平台流量机制的具体市场观察:长篇干货无水花 vs 单句精准钩子爆量,并点出变现路径,具有可复用的内容策略洞察。"}
{"id":"A-b02d","captured_at":"2026-05-03T07:36:17.167Z","source":"https://x.com/jamesai/status/1849596725046227265","source_text":"分享一些心得体会,写一大堆没太多水花。\n\n在 @ezshine 的帖子下面回复了一句有移民机会,一句话来一堆人😅\n\n要么说中文推,还是得黄推/建政来流量,背后再接个黑中介搞变现这种呢 😟\n\n别管认不认可或者道不道德,这也算是用户需求了。另外问我具体细节的,我也不可能在推上光明正大给你说怎么卖啊 😂 https://t.co/rgVRGhc5c0","source_created_at":"2024-10-24T23:39:57.000Z","category":"content_meta","pattern":"在中文推上,一句触碰移民/政治敏感话题的评论引发的互动,远超精心撰写的长篇干货——真实流量入口与「提供价值」内容策略之间存在巨大落差。","confidence":"emerging","tags":["中文推","内容流量","用户需求"],"distill_model":"sonnet","reason":"Contains a concrete A/B contrast (long-form value post → minimal engagement vs. one-line immigration hook → flood of replies) that generalizes into a falsifiable claim about what actually drives traffic on Chinese Twitter, with an implied critique of conventional \"provide value\" content strategy."}
{"id":"A-a4df","captured_at":"2026-05-03T07:37:24.762Z","source":"https://x.com/jamesai/status/1846406202063786283","source_text":"“ai教父”我其实是佩服的。视频号里面的人群,确实更适合做“高端咨询”。现在强调的人设就不是清华背景了,毕竟站不住。而是团队经验,业务经验,科技公司创始人这些。而且整个直播间的质感,已经不是科技数码博主的感觉了,是那种大厂高管+茶室的感觉。我觉得不做商业咨询,给点人生鸡汤,画风也毫不违 https://t.co/wJ6j4P0LgU","source_created_at":"2024-10-16T04:21:57.000Z","category":"content_meta","pattern":"视频号受众消费心理更匹配\"高端咨询\"变现,创作者人设应从学历背书(清华/名校)转向业务经验+高管质感,平台调性决定人设策略。","confidence":"emerging","tags":["视频号","人设定位","高端咨询"],"distill_model":"sonnet","reason":"推文包含一个具体的平台-受众-变现路径匹配观察,并附有创作者人设策略调整的可复用推论,属于内容定位的原子洞察。"}
{"id":"A-b6ae","captured_at":"2026-05-03T07:37:59.990Z","source":"https://x.com/jamesai/status/1846405454047727701","source_text":"“ai教父”我其实是佩服的。视频号里面的人群,确实更适合做“高端咨询”。现在强调的人设就不是清华背景了,毕竟站不住。而是团队经验,业务经验,科技公司创始人这些。\n\n而且现在卖课都卷成什么样了。 https://t.co/miY6n55YDO","source_created_at":"2024-10-16T04:18:59.000Z","category":"content_meta","pattern":"在竞争激烈的卖课/高端咨询市场,人设定位已从学历背书(名校)转向创始人/业务经验背书,因为前者的可信度在视频号人群面前站不住脚。","confidence":"emerging","tags":["人设定位","卖课","视频号"],"distill_model":"sonnet","reason":"包含一个具体的市场定位转移观察(名校背书→创始人经验背书),对知识付费/咨询创业者的个人品牌策略有可复用的启示。"}
{"id":"A-42ac","captured_at":"2026-05-03T07:50:33.754Z","source":"https://x.com/jamesai/status/1792430215416963185","source_text":"这几天我的时间线里每天都有:\n\nopenai 刚刚发布了gpt4o,这是它的10个例子\nopenai 4小时前发布了gpt4o,这是它的10个例子\nopenai 1天前发布了gpt4o,这是它的10个例子\nopenai 2天前发布了gpt4o,这是它的10个例子\nopenai 3天前发布了gpt4o,这是它的10个例子\nopenai https://t.co/c6ZjAxy7ND","source_created_at":"2024-05-20T05:40:39.000Z","category":"content_meta","pattern":"大模型每次发布都会触发大量同质化\"N个例子\"跟风内容,这类内容生产成本极低、时间线价值为零,是内容创作者陷入的低价值量产陷阱。","confidence":"emerging","tags":["同质化内容","AI发布跟风","内容陷阱"],"distill_model":"sonnet","reason":"通过列举同一条 GPT-4o 发布信息在不同时间被反复转发的现象,隐含了一个可泛化的内容规律:重大 AI 发布事件会催生大量无差异\"列举例子\"型内容,对读者和创作者都是低价值噪音。"}
{"id":"A-790e","captured_at":"2026-05-03T07:51:09.370Z","source":"https://x.com/jamesai/status/1792429388547657970","source_text":"这几天我的时间线里每天都有:\n\nopenai 刚刚发布了gpt4o,这是它的10个例子\nopenai 4小时前发布了gpt4o,这是它的10个例子\nopenai 1天前发布了gpt4o,这是它的10个例子\nopenai 2天前发布了gpt4o,这是它的10个例子\nopenai 3天前发布了gpt4o,这是它的10个例子\nopenai","source_created_at":"2024-05-20T05:37:22.000Z","category":"content_meta","pattern":"AI大事件发布后,时间线被同一信息的时间变体反复刷屏,揭示内容创作者的核心问题是同质化追热点、而非提供差异化视角。","confidence":"emerging","tags":["内容同质化","AI新闻追热点","时间线噪音"],"distill_model":"sonnet","reason":"通过讽刺性枚举,该推文揭示了一个可泛化的内容规律:每次大模型发布都会触发大量无差异化的复读内容,隐含的原则是\"追热点≠价值输出\",对内容策略有直接指导意义。"}
{"id":"A-41b7","captured_at":"2026-05-03T07:51:40.387Z","source":"https://x.com/jamesai/status/1792429297552269629","source_text":"这几天我的时间线里每天都有:\n\nopenai 刚刚发布了gpt4o,这是它的10个例子\nopenai 4小时前发布了gpt4o,这是它的10个例子\nopenai 1天前发布了gpt4o,这是它的10个用例\nopenai 2天前发布了gpt4o,这是它的10个例子\nopenai 3天前发布了gpt4o,这是它的10个例子\nopenai","source_created_at":"2024-05-20T05:37:00.000Z","category":"content_meta","pattern":"大型AI产品发布后,内容创作者会在数天内持续复读同质化\"10个例子\"帖子,时间线被刷屏但信息密度极低——跟风内容的半衰期为零。","confidence":"emerging","tags":["内容同质化","AI发布周期","跟风内容"],"distill_model":"sonnet","reason":"作者通过具体的时间线截图式排列,揭示了AI产品发布周期中\"10个例子\"类跟风内容泛滥的规律,是对内容生态的一次有力观察,具有可泛化的原则。"}
{"id":"A-a9a6","captured_at":"2026-05-03T08:07:53.782Z","source":"https://x.com/jamesai/status/1763000069320843504","source_text":"今天是 2 月的最后一天,小节一下吧。2 月基本靠 2 条推文涨了快 1000 个粉丝。1 条是借了 #SoraAI 刚发布的热度,第一时间配合赚到钱的“流量密码”,被几个朋友和国内一些公众号当做案例转载。\n\n另外一条是昨天发的一条关于 #独立开发 https://t.co/WNOXc7eMQq","source_created_at":"2024-02-29T00:35:46.000Z","category":"content_meta","pattern":"蹭新兴热点(如 SoraAI 首发)并结合\"赚到钱\"的切角发内容,能触发公众号和博主二次转载,是低成本快速涨粉的可复制公式。","confidence":"emerging","tags":["热点借势","二次传播","涨粉公式"],"distill_model":"sonnet","reason":"月度复盘中内嵌了一个具体可复用的内容传播规律:热点首发时效 × 赚钱叙事 = 媒体/博主主动转载,有量化结果(单月近 1000 粉)佐证,不只是状态更新。"}
{"id":"A-7df5","captured_at":"2026-05-03T05:07:48.558Z","source":"https://x.com/jamesai/status/2003616576734716285","source_text":"我的产品 99% 收入来自海外,分享几点真实经验:\n\n1/ 海外用户付费意愿确实更高,但获客成本也更高。不是\"出海就能赚钱\"。\n\n2/ 海外KOL营销的水很深。很多国内\"出海服务商\"报价是KOL真实报价的5-10倍。信息差是他们的利润来源。\n\n3/ 不同平台差异巨大:\n- Twitter/X:适合开发者、科技圈\n-","source_created_at":"2025-12-23T23:59:51.000Z","category":"growth_tactics","pattern":"国内出海服务商对海外KOL真实报价加价5-10倍,信息差是其核心利润来源,依赖中间商会严重虚高获客成本。","confidence":"emerging","tags":["KOL营销","出海","信息差"],"distill_model":"sonnet","reason":"推文包含具体可量化的市场观察(5-10倍加价)和反直觉洞察(出海服务商的利润逻辑),对独立开发者在海外获客决策上有直接指导意义。"}
{"id":"A-e1e0","captured_at":"2026-05-03T05:24:06.799Z","source":"https://x.com/jamesai/status/1977206498356084946","source_text":"这手机是真难看。\n\n我如果是国产电车厂商,我就说我采用了和福建舰电磁弹射类似的技术,看谁还敢说我三电效率不如特斯拉。\n\n虽然此电非彼电,但是只要带个电字,就有广大老百姓能认为一码事。\n\n多年前有个手机叫“华为北斗”。 https://t.co/1nwhWAxsVH","source_created_at":"2025-10-12T02:55:38.000Z","category":"growth_tactics","pattern":"品牌命名中蹭权威技术关键词(如\"北斗\"\"电磁弹射\"),可绕过专业认知壁垒,在大众心智中制造技术背书联想,是低成本建立信任感的命名策略。","confidence":"validated","tags":["命名策略","品牌借势","大众心智"],"distill_model":"sonnet","reason":"该推文包含一个具体可复用的营销洞察:用权威技术词汇蹭名,通过\"华为北斗\"这一已验证的历史案例佐证,构成有据可查的品牌/命名策略原则。"}
{"id":"A-97a2","captured_at":"2026-05-03T05:29:24.682Z","source":"https://x.com/jamesai/status/1971194398806507829","source_text":"从商家角度:一个客人我只能宰一次。\n但是宣传从客户角度出发,仪式感拉满。\n\n另外为什么强调是男士而不是女士,因为购买的虽然是男方 ,但是选择决策权是在女方,所以要满足女方的情感需求。\n\n我的落地页文案要学习一下。 https://t.co/Nmp3z4ebfL","source_created_at":"2025-09-25T12:45:42.000Z","category":"growth_tactics","pattern":"付款者与决策者分离的品类(如男士礼品),落地页文案应针对真正决策方(女方)的情感需求,而非付款方的理性诉求。","confidence":"emerging","tags":["landing-page","decision-maker-split","buyer-psychology"],"distill_model":"sonnet","reason":"Tweet contains a concrete, generalizable landing page tactic: when payer ≠ decision-maker, copy must satisfy the decision-maker's emotional needs — an actionable principle with direct conversion implications."}
{"id":"A-9282","captured_at":"2026-05-03T05:41:01.153Z","source":"https://x.com/jamesai/status/1951148134874087590","source_text":"大爷大妈经济学 1/n\n\n在三四线城市,我要卖【糖水】收割,怎样找到一堆大妈\n\n去菜市场和超市门口的路口免费送鸡蛋,【只需要】填写手机号和个人信息。\n\n如果介绍 5 个人,还可以多领一盒。\n\n一天以后,你就能见到用老年卡乘着免费公交从城市另外一头特意过来领鸡蛋的了。","source_created_at":"2025-08-01T05:09:00.000Z","category":"growth_tactics","pattern":"在下沉市场获取老年用户,用\"免费实物+裂变激励\"(如免费鸡蛋+介绍返利)换取联系方式,获客成本极低且精准触达目标群体。","confidence":"emerging","tags":["下沉市场","老年用户获客","实物裂变"],"distill_model":"sonnet","reason":"包含具体可复用的获客战术:免费实物引流 + 裂变激励,适用于三四线城市老年群体的冷启动场景,有清晰的执行路径和预期效果描述。"}
{"id":"A-8213","captured_at":"2026-05-03T05:53:59.198Z","source":"https://x.com/jamesai/status/1925731159423520880","source_text":"我曾经对黄牛嗤之以鼻,现在我逐帧学习。\n\n一个产品先找到套利空间,找市面上有的产品套个壳,比如我要做一个产品 A,我直接基于竞品 B,套个皮,加个价先卖了再说。说白了本质就是做闲鱼嘛。骑在竞品脸上输出😂","source_created_at":"2025-05-23T01:51:01.000Z","category":"growth_tactics","pattern":"产品冷启动最快路径:先找套利空间,基于竞品套壳加价销售,用闲鱼思维跑通市场再迭代,而非从零构建。","confidence":"emerging","tags":["套利","冷启动","竞品复用"],"distill_model":"sonnet","reason":"包含一个具体可操作的创业策略:用竞品套壳先跑通销售验证市场,是反主流(\"先做好产品\")的具体战术,有清晰的执行路径和逻辑。"}
{"id":"A-83d9","captured_at":"2026-05-03T06:18:41.278Z","source":"https://x.com/jamesai/status/1899290156777296318","source_text":"做产品定价和描述的时候,千万别让用户觉得自己是在“妥协”。\n\n我们经常觉得老外特别会捧场,也是因为他们文化里面有这种“鼓励多”的部分。尤其是职场里面,比如:\n\n困难不叫困难(difficulties),叫挑战(challenge)\n失败不叫失败(failure),叫经验(experience)或者机遇(opportunity)\n不会不叫不会(no https://t.co/wblqniKh5h","source_created_at":"2025-03-11T02:43:55.000Z","category":"growth_tactics","pattern":"产品定价与文案应运用正向重构语言(challenge 代替 difficulty,opportunity 代替 failure),让用户感知到的是「主动选择」而非「妥协降级」,从而降低购买阻力。","confidence":"emerging","tags":["pricing-copy","positive-framing","conversion"],"distill_model":"sonnet","reason":"包含一个可泛化的产品文案原则:用正向重构语言消除用户的\"妥协感\",并以中西文化对比提供了具体的语言范例支撑,属于有明确 ROI 方向的转化策略洞察。"}
{"id":"A-e464","captured_at":"2026-05-03T06:35:56.091Z","source":"https://x.com/jamesai/status/1895761007265362211","source_text":"AI 快捷指令 - 语音灵感秒变爆款推文\n\n录这个视频的时候,已经在自己的推特上实验了4天(2月24日-2月27日),每天更新6-10条左右,所有的推文AI生成的。\n\n每天推文的浏览量达到了36万,涨粉日均达到了 400 粉。\n\n目前使用的是 ChatGPT 模型,也可以替换成 DeepSeek 等其他模型的 API 接口。 https://t.co/2IIcmqwd2z","source_created_at":"2025-03-01T09:00:20.000Z","category":"growth_tactics","pattern":"用 AI 批量生成推文(每天 6-10 条)持续运营 4 天,可实现日均 36 万浏览量、400 涨粉,内容发布量是 Twitter 冷启动增长的核心杠杆。","confidence":"emerging","tags":["twitter-growth","AI内容","高频发布"],"distill_model":"sonnet","reason":"包含具体战术(语音→AI推文流水线)+ 可量化 ROI(36万日浏览/400日涨粉),虽有推广意图,但核心数据和方法论可泛化为增长策略原子。"}
{"id":"A-2d4e","captured_at":"2026-05-03T06:46:16.378Z","source":"https://x.com/jamesai/status/1894477557140971857","source_text":"定价决定你的用户质量,而不是单纯的销量。\n\n很多程序员做产品,怕定价高了没人买,于是选择“便宜卖”,结果吸引来一群最挑剔、最难伺候、退订率最高的用户,最终又累又赚不到钱。\n\n看看 Apple,MacBook 和 iPhone 一直是高端市场的代表,利润率远高于 PC 和安卓手机厂商。再看看 SaaS 领域,Notion","source_created_at":"2025-02-25T20:00:21.000Z","category":"growth_tactics","pattern":"定价决定用户质量而非销量——低价吸引最挑剔、退订率最高的用户,高定价反而筛选出优质客户,利润率更高、服务成本更低。","confidence":"emerging","tags":["pricing","user-quality","churn"],"distill_model":"sonnet","reason":"包含可推广的定价原则,并以 Apple vs PC/Android 厂商利润率差异为佐证,构成完整的反主流论点。"}
{"id":"A-1d38","captured_at":"2026-05-03T06:48:49.816Z","source":"https://x.com/jamesai/status/1894205681877594147","source_text":"做线上产品定价,就像开了一家外卖店——价格太低,订单爆了,但每天累死累活,钱却像筛子漏水;价格太高,利润香喷喷,但订单稀少,最后连房租都交不起。\n\n所以,定价到底该高还是低?关键看三个问题:\n\n1. 你的用户在乎的是省钱,还是省事?","source_created_at":"2025-02-25T02:00:01.000Z","category":"growth_tactics","pattern":"定价前的第一个核心问题:你的用户优先省钱还是省事——两种需求对应截然不同的定价策略,混淆则两头落空。","confidence":"emerging","tags":["pricing","user-segmentation","saas-pricing"],"distill_model":"sonnet","reason":"推文包含一个可泛化的定价决策原则:在高低价权衡之前,必须先区分用户的核心驱动力(省钱 vs 省事),这是一个具体可操作的判断框架,而非泛泛的情绪表达。"}
{"id":"A-267a","captured_at":"2026-05-03T06:51:26.343Z","source":"https://x.com/jamesai/status/1893914761953165355","source_text":"初期流量=主动出击+精准打击! \n\n别等用户自己找上门,你要去他们扎堆的地方“刷脸”——社群潜伏、论坛发帖、Reddit撕逼、冷邮件轰炸、投小额广告试水。没人看你?那就换个姿势!💥 \n\n你当初是怎么拿到第一批用户的?👇","source_created_at":"2025-02-24T06:44:01.000Z","category":"growth_tactics","pattern":"早期流量靠主动出击而非等待——社群潜伏、论坛发帖、冷邮件、小额广告多渠道轮试,找不到用户就换姿势,直到跑通第一批。","confidence":"validated","tags":["冷启动","早期获客","主动出击"],"distill_model":"sonnet","reason":"推文包含明确的早期增长原则(主动出击>被动等待)并列举了具体可执行的多渠道战术,尽管末尾带有互动提问,但核心声明完整且可独立提炼。"}
{"id":"A-4bf0","captured_at":"2026-05-03T06:56:28.876Z","source":"https://x.com/jamesai/status/1889635763085799481","source_text":"定价是一门学问,低了怕亏,高了怕卖不掉。\n\n我做的第一个产品,考虑到程序员的流量能力比较弱,直接放弃了按量收费的付费模型。在一开始,为了降低用户的决策成本,甚至一度只有一个价格。\n\n我的定价大致经历了三个阶段 🧵","source_created_at":"2025-02-12T11:20:48.000Z","category":"growth_tactics","pattern":"流量获取能力弱时,应放弃按量计费模型,用单一价格降低用户决策成本。","confidence":"emerging","tags":["pricing","decision-friction","early-stage"],"distill_model":"sonnet","reason":"包含具体定价策略与明确推理链:流量弱 → 放弃按量收费 → 单一价格降低决策门槛,是可复用的战术原则。"}
{"id":"A-85b2","captured_at":"2026-05-03T07:13:29.681Z","source":"https://x.com/jamesai/status/1863749223763808459","source_text":"这两条同样时间发布的同样内容的推文\n\n一条是在已经爆的帖子下截流\n一条是作为一个小 KOL 直接发帖\n\n效果来说,差了 15 倍以上。这也就是为什么如果自己成为不了 KOL,找一个 KOL 去发贴,效果好过自己满世界去截流。时间成本上还更低。\n\n当然这 2 https://t.co/pAEU2RZnQ7","source_created_at":"2024-12-03T00:56:56.000Z","category":"growth_tactics","pattern":"借 KOL 直接发帖的效果是自己在爆帖下截流的 15 倍以上,且时间成本更低;无法自成 KOL 时,KOL 合作的优先级远高于流量截流。","confidence":"emerging","tags":["KOL合作","截流","内容分发"],"distill_model":"sonnet","reason":"包含具体量化对比实验(同内容、同时间、两种分发路径,效果相差 15 倍以上)并推导出可复用的渠道选择原则。"}
{"id":"A-9ae9","captured_at":"2026-05-03T07:14:08.006Z","source":"https://x.com/jamesai/status/1863475156930510873","source_text":"我的https://t.co/Uv7QLXNPy6制作了2天,上线了2天,变现了2000刀。相信比很多学习做seo拿到的结果要快要好。 \n\n为什么我要提seo呢?因为seo本身就是个热词,这样有人会拿我这个做案例去seo的群里面发,相当于免费帮我二次扩张了。而做seo的群体,本身是做出海的开发,和我产品面对的人群重合度高。😂 https://t.co/nUoqYolEqx","source_created_at":"2024-12-02T06:47:53.000Z","category":"growth_tactics","pattern":"在内容中刻意植入与目标用户高度重叠的热词社群关键词(如\"SEO\"),可触发该社群成员主动将内容当作案例转发,实现免费精准的二次扩散。","confidence":"emerging","tags":["keyword-seeding","community-distribution","audience-overlap"],"distill_model":"sonnet","reason":"Contains a concrete, replicable distribution tactic — deliberately embedding a hot keyword (SEO) to trigger organic resharing into a high-overlap community — backed by a specific outcome ($2000 in 2 days) and explicit reasoning about why it works."}
{"id":"A-b121","captured_at":"2026-05-03T07:14:33.408Z","source":"https://x.com/jamesai/status/1863475017088135330","source_text":"我的https://t.co/Uv7QLXNPy6制作了2天,上线了2天,变现了2000刀。相信比很多学习做seo拿到的结果要快要好。 \n\n为什么我要提seo呢?因为seo本身就是个热词,这样有人会拿我这个做案例去seo的群里面发,相当于免费帮我二次扩张了。而做seo的群体,本身是做出海的开发,和我产品面对的人群重合度高。😂 https://t.co/Exsa2F3ZNo","source_created_at":"2024-12-02T06:47:20.000Z","category":"growth_tactics","pattern":"在内容中主动植入热门圈子的关键词(如\"SEO\"),借助目标社群的自发传播实现免费精准二次扩散,前提是该圈子与产品受众高度重合。","confidence":"emerging","tags":["关键词植入","社群传播","出海开发者"],"distill_model":"sonnet","reason":"包含一个具体且可复用的增长战术:通过在内容中嵌入目标社群热词,触发该社群成员自发转发,实现免费精准渠道扩散,有明确的逻辑链和受众匹配逻辑。"}
{"id":"A-6d56","captured_at":"2026-05-03T07:15:39.030Z","source":"https://x.com/jamesai/status/1858848869049921542","source_text":"我今天吃饭的时候突然悟了。\n\n不管是产品还是内容,我们都应该按照预制菜的方法来做,能效比和投产比会比较好🤣\n\n这是无数做实体的生意人用脚投票选择出来的一条路。","source_created_at":"2024-11-19T12:24:40.000Z","category":"growth_tactics","pattern":"产品与内容应按\"预制菜\"逻辑标准化、模块化生产,能效比与投产比优于\"现做\"模式,这是实体商业长期用脚投票验证的路径。","confidence":"emerging","tags":["标准化生产","投产比","产品方法论"],"distill_model":"sonnet","reason":"包含一个可泛化的生产方法论原则:以\"预制菜\"类比提出标准化/模块化产出比\"现做\"效率更高,并援引实体商业的大规模实践作为旁证,具有跨领域迁移价值。"}
{"id":"A-a84d","captured_at":"2026-05-03T07:18:07.359Z","source":"https://x.com/jamesai/status/1858728406176936306","source_text":"https://t.co/8KG6gcWvNa 做了一个 AI 占星的应用,本质上就是一个特调的 gpt + 一个落地页(用 cursor 一个成熟的开发应该能几个小时搞定?)。\n\n然后在 9 月底产品上线,全程只做 meta 投放并且每天分享进度。在 11 月的时候,这个产品已经达到了 $2000 的 MRR。\n\n然后在前几天,以 $12500","source_created_at":"2024-11-19T04:26:00.000Z","category":"growth_tactics","pattern":"用 Meta 广告冷启动极简 AI 应用(GPT+落地页)可在 6 周内从零做到 $2000 MRR,并以约 6x MRR 溢价出售。","confidence":"validated","tags":["meta-ads","AI应用","冷启动"],"distill_model":"sonnet","reason":"包含具体战术路径(Meta投放+每日进度分享)、可量化结果($2000 MRR in ~6周)和退出倍数($12500 ≈ 6x MRR),是可复用的增长模式。"}
{"id":"A-81e5","captured_at":"2026-05-03T07:18:42.012Z","source":"https://x.com/jamesai/status/1858727135730655743","source_text":"@jacobrodri_ 做了一个 AI 占星的应用。本质上就是一个特调的 gpt+落地页(配合 cursor 之类的工具,现在几小时可以交付?)。\n\n然后他在产品在 9 月底上线后,每天去投 meta 的广告,到 11 月份,已经逐渐把 MRR 增长到了 $2000 的样子。\n\n然后在几天前,他把这个应用以 $12500 的价格出售了。","source_created_at":"2024-11-19T04:20:57.000Z","category":"growth_tactics","pattern":"AI 套壳应用(几小时开发)+ Meta 广告每日投放,2 个月 MRR 涨至 $2000,随即以约 6× MRR 出售套现——\"快建快卖\"是当前 AI micro-SaaS 的可行变现路径。","confidence":"emerging","tags":["micro-saas-flip","meta-ads","AI-wrapper"],"distill_model":"sonnet","reason":"包含完整的战术链条(开发速度→付费获客→MRR 增长→退出倍数)和可量化结果,构成一个可复用的\"快建快卖\"增长模式,具备泛化价值。"}
{"id":"A-fe49","captured_at":"2026-05-03T07:19:20.236Z","source":"https://x.com/jamesai/status/1858724594506399985","source_text":"@jacobrodri_ 做了一个 AI 占星的应用。开发基本上就是一个特调 gpt + 落地页(配合现在的 cursor,应该几小时就可以交付?)。\n\n然后他从 9 月底 到 11 月初,一直在投 meta 广告,把这个做到了 $2000 的 MRR。\n\n然后几天前,用$12500卖掉了这个产品。\n\n这个路径和时间配比,我觉得是有参考意义的。","source_created_at":"2024-11-19T04:10:51.000Z","category":"growth_tactics","pattern":"极简 AI 封装产品(定制 GPT + 落地页)通过 Meta 广告冷启动,数周可做到 $2000 MRR,并以约 6x MRR 倍数快速出售套现。","confidence":"emerging","tags":["micro-saas-flip","meta-ads","ai-wrapper"],"distill_model":"sonnet","reason":"作者明确指出这个\"路径和时间配比有参考意义\",提炼出一个可复制的从零到退出的战术路径:低成本搭建 → paid acquisition 验证 → 小额 MRR → 快速 flip,具有可推广的战术价值。"}
{"id":"A-d6e5","captured_at":"2026-05-03T07:21:56.366Z","source":"https://x.com/jamesai/status/1856510918898921623","source_text":"Vercel 特别方便而且和 NextJS 适配性拉满。缺点就是流量一大,账单就容易爆。\n\n相比于直接迁移到其他平台比如 cf,这个视频给了几个降低 Vercel 成本的做法:\n\n1. 不要放图片在 public 文件夹下,考虑用图床\n2. Next Image 的使用,配合 next config 做好白名单\n3. 数据库的操作尽量的合并起来,降低","source_created_at":"2024-11-13T01:34:30.000Z","category":"growth_tactics","pattern":"Vercel 流量规模化后账单易爆,三招可控成本:用图床替代 public 目录存图、配置 Next Image 域名白名单、合并数据库请求减少调用次数。","confidence":"emerging","tags":["vercel","cost-optimization","nextjs"],"distill_model":"sonnet","reason":"包含三条具体可操作的降本策略,每条有明确的执行路径和成本收益逻辑,属于 SaaS 规模化阶段的典型运营战术。"}
{"id":"A-d868","captured_at":"2026-05-03T07:23:03.847Z","source":"https://x.com/jamesai/status/1856510533983449292","source_text":"Vercel 特别方便而且和 NextJS 适配性拉满。缺点就是流量一大,账单就容易爆。\n\n相比于直接迁移到其他平台比如 cf,这个视频给了几个降低 Vercel 成本的做法:\n\n1. 不要放图片在 public 文件夹下,考虑用图床\n2. Next Image 的使用,配合 next config 做好白名单\n3. 数据库的操作尽量的合并起来,降低","source_created_at":"2024-11-13T01:32:58.000Z","category":"growth_tactics","pattern":"Vercel 流量成本可通过三招压制:图片移至外部图床、Next Image 配 next.config 白名单、合并数据库操作,避免账单随流量线性暴涨。","confidence":"emerging","tags":["vercel","cost-optimization","nextjs"],"distill_model":"sonnet","reason":"包含三条具体可执行的降本策略,针对 Vercel+Next.js 账单爆炸的高频痛点,具备清晰 ROI 逻辑,可直接复用。"}
{"id":"A-4e74","captured_at":"2026-05-03T07:23:35.701Z","source":"https://x.com/jamesai/status/1856510435027235323","source_text":"Vercel 特别方便而且和 NextJS 适配性拉满。缺点就是流量一大账单就容易爆。\n\n相比于直接迁移到其他平台比如 cf,这个视频给了几个降低 Vercel 成本的做法:\n\n1. 不要放图片在 public 文件夹下,考虑用图床\n2. Next Image 的使用,配合 next config 做好白名单\n3. 数据库的操作尽量的合并起来,降低","source_created_at":"2024-11-13T01:32:34.000Z","category":"growth_tactics","pattern":"Vercel 流量增大后账单易爆,三招可控成本:图片外置图床(不放 public)、Next Image 配合 next.config 做域名白名单、数据库操作合并减少调用次数。","confidence":"emerging","tags":["vercel","cost-optimization","nextjs"],"distill_model":"sonnet","reason":"包含三条具体可操作的降本战术,有明确 ROI 方向(控制 Vercel 账单),属于 SaaS 规模化阶段的基础设施成本管控套路。"}
{"id":"A-45c2","captured_at":"2026-05-03T07:29:44.141Z","source":"https://x.com/jamesai/status/1851978367584833551","source_text":"10 月份的营业额上升了 55% \n\n产品 A:第一次突破了$40K。\n在新用户数量下降近 80% 的情况下,营业额上升了 30%。转型期,很难受。\n\n产品 B:第一次突破了$10K。\n新用户只有 165 人,但是营业额上涨了近 350%。\n\n感谢 2b 策略。\n\n产品 C:经过一个月的实验,投产比为负,可能会下线重练。\n\n11 https://t.co/evgPVaqTgf","source_created_at":"2024-10-31T13:23:45.000Z","category":"growth_tactics","pattern":"B2B 转型策略可以用极少新用户(165人)实现近 350% 的营收增长,企业客户 ARPU 对营业额的杠杆效应远超消费者用户增长。","confidence":"emerging","tags":["2B策略","ARPU杠杆","用户数vs营收"],"distill_model":"sonnet","reason":"报告数据中包含一个具体可复用的策略洞察:产品 B 通过 2B 策略,在新用户仅 165 人的情况下实现营收近 350% 增长,直接量化了 B2B 转型对单客户价值的放大效应,属于有 ROI 数据支撑的战术发现。"}
{"id":"A-07f5","captured_at":"2026-05-03T07:30:27.790Z","source":"https://x.com/jamesai/status/1851978242489745624","source_text":"10 月份的营业额上升了 55% \n\n产品 A:第一次突破了$40K。\n在新用户数量下降近 80% 的情况下,营业额上升了 30%。转型期,很难受。\n\n产品 B:第一次突破了$10K。\n新用户只有 165 人,但是营业额上涨了近 350%。\n\n感谢 2b 策略。\n\n产品 C:经过一个月的实验,投产比为负,可能会下线重练。\n\n11 https://t.co/wEHRyRnBka","source_created_at":"2024-10-31T13:23:15.000Z","category":"growth_tactics","pattern":"转向 2B 策略后,营业额增长可以与新用户数量完全脱钩:165 个新用户带来近 350% 的营收增长,企业客户单价对散客倍增效应显著。","confidence":"validated","tags":["2B策略","用户数与营收脱钩","B2B转型"],"distill_model":"sonnet","reason":"该推文包含真实营收数据支撑的具体战术结论(2B 策略 → 165 用户 / +350% 营业额),可提炼为可复用的增长原则。"}
{"id":"A-5467","captured_at":"2026-05-03T07:34:33.358Z","source":"https://x.com/jamesai/status/1851136623209300064","source_text":"为啥要学习黄推。\n\n因为你甚至能拿到雷军的互动(虽然没什么用),我实验了一下,雷总给我点了一条赞。\n\n然后我总结了一个小方法论。\n\n几分钟后,雷总又给我点了一条(虽然还是没什么用)。 https://t.co/aOOc1MTeiu","source_created_at":"2024-10-29T05:38:58.000Z","category":"growth_tactics","pattern":"推特互动方法论可以被系统化总结与快速验证——通过同一大V对连续推文的重复互动行为,可以在几分钟内确认方法的可复制性。","confidence":"emerging","tags":["twitter互动","大V触达","方法论验证"],"distill_model":"sonnet","reason":"推文包含一个可泛化的增长策略主张:存在一套可学习、可在几分钟内通过实验验证的推特互动方法,并以雷军两次点赞作为可复制性的具体佐证。"}
{"id":"A-cbfa","captured_at":"2026-05-03T07:39:37.614Z","source":"https://x.com/jamesai/status/1843835298909958242","source_text":"这个月新用户下降了 76%,收入却增长了 54%。\n\n对一直想做盲目做流量增长的我来说,挺有启发的。\n\n#公开构建 #独立开发 https://t.co/hll1FQsRu6","source_created_at":"2024-10-09T02:06:06.000Z","category":"growth_tactics","pattern":"新用户数与收入可以反向运动——盲目追流量增长会掩盖真正的变现健康度,收入才是更本质的北极星指标。","confidence":"emerging","tags":["流量增长","收入指标","北极星指标"],"distill_model":"sonnet","reason":"包含具体量化数据(新用户-76% vs 收入+54%)支撑的反直觉观察,并附有创始人对自身增长策略的反思,构成可泛化的战术原则。"}
{"id":"A-f945","captured_at":"2026-05-03T07:56:50.322Z","source":"https://x.com/jamesai/status/1773495060077887876","source_text":"简单学习一下 #雷军 的 #小米su7 定价\n\n1. 几个月一直强调参数和制造工艺,为后来的定价做支撑。\n2. 一直说要做 50 万以内最好的车,给心理锚定 50 万。\n3. 说 9 万 9 不可能,19 万 9 也不可能,给人一种最后售价要远高于 19 万 9 的感觉。\n4. 最后 拉回到起售价 21 万 6,就比 19 万 9","source_created_at":"2024-03-28T23:39:06.000Z","category":"growth_tactics","pattern":"分步锚定定价法:先用参数/工艺长期铺垫高价值认知,再用否定式低锚(\"19万9不可能\")主动拉高心理底线,最终报价刚刚超过否定锚,制造\"意外实惠\"感知——比直接报价更能压低消费者的支付阻力。","confidence":"emerging","tags":["pricing","anchoring","perception"],"distill_model":"sonnet","reason":"推文逐步拆解了小米SU7发布的完整定价心理操控链路,包含具体步骤与可复用的定价原则,属于有明确ROI逻辑的战术洞察。"}
{"id":"A-c29a","captured_at":"2026-05-03T08:00:57.337Z","source":"https://x.com/jamesai/status/1767889698482180328","source_text":"#buildinginpublic 我最近一直在想这玩意和做 mvp 一样,到什么节点 public,什么频率更新 public,边界(scoping)和节奏还挺重要。\n\n我看到很多成功的产品,其实 #buildinpublic 的时候,初版都已经上线一阵了,做的其实是 #sellinpublic。打着打磨 mvp 的旗号,给 prototype 赚第一波用户。","source_created_at":"2024-03-13T12:25:24.000Z","category":"growth_tactics","pattern":"成功产品的 #buildinpublic 本质是 #sellinpublic——产品早已上线,借\"打磨 MVP\"的叙事为原型版本获取第一批用户。","confidence":"emerging","tags":["buildinpublic","sellinpublic","早期获客"],"distill_model":"sonnet","reason":"包含一个反主流的可泛化论断:#buildinpublic 被成功产品用作获客叙事而非真实开发状态的记录,具有明确的战术启示。"}
{"id":"A-e245","captured_at":"2026-05-03T08:01:32.016Z","source":"https://x.com/jamesai/status/1767706491942048042","source_text":"基本上靠 3 条推涨了 3000 粉 😂, 阶段总结一下:\n- 这个号 23 年的 10 月注册,然后 24 年 2 月前基本就发了零星几个贴\n- 0 - 50 基本靠已有人脉的互关\n- 50 - 800 借了 #Sora 的势,蹭热度 + 流量密码 + 大V 转发,给我涨了第一波粉丝。国内甚至不少公众号还转了作为案例。\n- 800 - 1100 https://t.co/Pigw23wBQ6","source_created_at":"2024-03-13T00:17:24.000Z","category":"growth_tactics","pattern":"X 账号冷启动的关键跃迁公式:蹭单个大热点(如 Sora)+ 流量密码内容 + 等大 V 转发,三者叠加可在短期内完成 0→800 的冷启动突破,人脉互关只能走完前 50。","confidence":"emerging","tags":["cold-start","trending-topics","influencer-amplification"],"distill_model":"sonnet","reason":"Tweet contains a concrete follower-growth breakdown with specific milestone thresholds and repeatable tactics, making it a distillable growth formula rather than a mood post."}
{"id":"A-8b22","captured_at":"2026-05-03T08:02:06.550Z","source":"https://x.com/jamesai/status/1767706197879398461","source_text":"基本上靠 3 条推涨了 3000 粉 😂, 阶段总结一下:\n- 这个号10月注册,然后2月前基本就发了零星几个贴\n- 0 - 50 基本靠已有人脉的互关\n- 50 - 800 借了 #Sora 的势,蹭热度 + 流量密码 + 大V 转发,给我涨了第一波粉丝。国内甚至不少公众号还转了作为案例。\n- 800 - 1100 https://t.co/p4VTOfIchJ","source_created_at":"2024-03-13T00:16:14.000Z","category":"growth_tactics","pattern":"蹭 AI 热点话题(如 Sora)+大V转发是社媒冷启动最高效的路径,可在极短周期内完成 50→800 的跃迁,远快于靠人脉互关的线性增长。","confidence":"emerging","tags":["冷启动","热点蹭流量","社媒增长"],"distill_model":"sonnet","reason":"推文包含一个带具体数字的阶段性增长复盘,清晰揭示了\"热点话题+大V放大\"这一可复现的冷启动战术,具备明确的因果逻辑和量化结果,可提炼为独立原子。"}
{"id":"A-2d27","captured_at":"2026-05-03T08:02:44.349Z","source":"https://x.com/jamesai/status/1767705607988293972","source_text":"基本上靠 3 条推涨了 3000 粉 😂, 阶段总结一下:\n- 这个号10月注册,然后2月前基本就发了零星几个贴\n- 0 - 50 基本靠已有人脉的互关\n- 50 - 800 借了 #Sora 的势,蹭热度 + 流量密码 + 大V 转发,给我涨了第一波粉丝。国内甚至不少公众号还转了作为案例。\n- 800 - 1100 https://t.co/BtZLTIKGPC","source_created_at":"2024-03-13T00:13:53.000Z","category":"growth_tactics","pattern":"冷启动社媒账号(0-800粉)最有效路径:借头部 AI 热点(如 Sora)蹭势 + 流量密码内容 + 大V 转发,可在短期内实现十倍级粉丝增长,自有人脉互关只能解决最初的 50 人问题。","confidence":"emerging","tags":["cold-start","trend-riding","social-growth"],"distill_model":"sonnet","reason":"Tweet contains a staged, quantified social growth breakdown (0→50→800→1100) with distinct mechanisms per phase — a replicable tactic pattern for early-account cold starts, not just a vanity milestone post."}
{"id":"A-8c2e","captured_at":"2026-05-03T08:07:16.405Z","source":"https://x.com/jamesai/status/1763004916770242607","source_text":"今天是 2 月的最后一天,小节一下吧。2 月基本靠 2 条推文涨了快 1000 个粉丝。1 条是借了 #SoraAI 刚发布的热度,第一时间配合赚到钱的“流量密码”,被几个朋友和国内一些公众号当做案例转载。\n\n另外一条是昨天发的一条关于 #独立开发 https://t.co/dXxi7ALZDR","source_created_at":"2024-02-29T00:55:01.000Z","category":"growth_tactics","pattern":"蹭热点话题(如新产品发布)并第一时间结合\"赚钱\"角度输出内容,是独立开发者低成本涨粉的高效流量密码。","confidence":"emerging","tags":["热点蹭流量","内容增长","涨粉"],"distill_model":"sonnet","reason":"包含具体可复用的增长策略:借新热点 + 第一时间 + 结合赚钱角度,有量化结果(2条推文涨近1000粉)支撑,可提炼为可操作原则。"}
{"id":"A-2d26","captured_at":"2026-05-03T08:12:21.210Z","source":"https://x.com/jamesai/status/1758421742169792892","source_text":"是的,在大家都在讨论 #Sora 的时候,我上线了一个套壳app的展示页 https://t.co/LeW4tRbTVq,并且在我的Midjourney API上做了下导流。回头看看效果。\n\n#Sora #SoraAI #OpenAI #indie #indiehackers https://t.co/bHCIrZ4j15","source_created_at":"2024-02-16T09:23:07.000Z","category":"growth_tactics","pattern":"利用热点话题的流量窗口快速上线展示页并导流到已有产品,是低成本获客的套利手段。","confidence":"emerging","tags":["热点套利","流量导流","快速上线"],"distill_model":"sonnet","reason":"包含具体战术:趁热点讨论高峰期快速搭建展示页并向已有产品导流,有明确的 ROI 意图(\"回头看看效果\"),是可复制的增长操作。"}
{"id":"A-4db4","captured_at":"2026-05-03T08:12:54.507Z","source":"https://x.com/jamesai/status/1758421214572470426","source_text":"是的,在大家都在讨论 #Sora 的时候,我上线了一个套壳app的展示页,并且在我的Midjourney API上做了下导流。回头看看效果。\n\n#Sora #SoraAI #OpenAI #indie #indiehackers https://t.co/HwFDXgNqkY","source_created_at":"2024-02-16T09:21:02.000Z","category":"growth_tactics","pattern":"在大热点爆发(如 Sora)时,快速上线相关展示页蹭流量,并将访客导流至现有 API 产品,是低边际成本的增长机会。","confidence":"hypothesis","tags":["蹭热点","流量导流","API增长"],"distill_model":"sonnet","reason":"包含具体战术:借病毒式热点快速建立相关落地页并导流到现有产品,是可复用的低成本增长动作,但推文未给出结果数据,置信度为假设。"}
{"id":"A-0741","captured_at":"2026-05-03T08:13:30.164Z","source":"https://x.com/jamesai/status/1758421025602302348","source_text":"是的,在大家都在讨论#sora的时候,我上线了一个套壳app的展示页,并且在我的Midjourney API上做了下导流。回头看看效果。\n\n#Sora #SoraAI #OpenAI https://t.co/pZURK3CidS","source_created_at":"2024-02-16T09:20:17.000Z","category":"growth_tactics","pattern":"AI 热点爆发时(如 Sora 发布),快速上线相关套壳展示页并从已有产品(如 Midjourney API)导流,是低成本捕获流量红利的机会窗口。","confidence":"emerging","tags":["hype-surfing","cross-promotion","wrapper-app"],"distill_model":"sonnet","reason":"包含一个具体的、可复用的增长战术:趁竞争对手还在讨论热点时,用已有流量快速为新落地页导流,隐含\"行动优先于讨论\"的原则。"}
{"id":"A-a694","captured_at":"2026-05-03T08:15:28.374Z","source":"https://x.com/jamesai/status/1755138166540083642","source_text":"分享一个关于定价的点。\n\n拿直播和卖课来类比,所谓的粉丝和流量基底,目的是要把榜一大哥用价格漏斗给筛选出来。毕竟除了贡献流量之外,足够的粉丝基底,才能用漏斗一层层筛选出尽可能多的“榜一大哥”出来。 https://t.co/x6nv38X34r","source_created_at":"2024-02-07T07:55:22.000Z","category":"growth_tactics","pattern":"粉丝量和流量基底的核心价值不是曝光,而是为价格漏斗提供足够的母体,从中筛选出高付费意愿的\"榜一大哥\"。","confidence":"emerging","tags":["价格漏斗","定价","流量转化"],"distill_model":"sonnet","reason":"该推文包含一个关于流量与定价关系的具体市场洞察:受众规模的真正战略意义是驱动价格分层漏斗,而非单纯追求曝光量,可迁移至SaaS定价与用户分层策略。"}
{"id":"A-3975","captured_at":"2026-05-03T10:05:57.407Z","source":"https://x.com/jamesai/status/1897935287575044395","source_text":"就一个简单动作,选一个目标社媒,每天固定发5条以上更新。\n\n先别想七七八八的价值什么的,别管说的多垃圾,你哪怕就是发整点报时呢。\n\n能坚持 6 个月以上一条不落的,直接排除掉 90% 的人了。\n\n下一步,把一个社媒扩展成四个主流平台,同样的内容,同样的频率,一起发。\n\n还能坚持 6","source_created_at":"2025-03-07T09:00:09.000Z","category":"growth_tactics","pattern":"社媒增长的第一门槛是执行纪律而非内容质量——每天5条、坚持6个月不断更,可自动淘汰90%竞争者,内容优化是第二步。","confidence":"emerging","tags":["社媒一致性","执行门槛","内容频率"],"distill_model":"sonnet","reason":"这是一个带具体ROI的可执行战术:用量化的频率(每天5条)和时间(6个月)定义\"胜出\"门槛,并明确内容质量不是初期瓶颈——执行纪律才是,具有高度可复制的原子级洞察。"}
{"id":"A-a9c4","captured_at":"2026-05-03T10:07:12.155Z","source":"https://x.com/jamesai/status/1858361248804728885","source_text":"三哥做生意谈价格是有一手的,上来就是:\n\n“我们是 xxx,我们想谈一个公司级别的合作。我们现在成长的很快,估计 2, 3 个月后就需要百万次的用量了,希望能给一个很好的价格,这会是一个战略级合作的开始。”\n\n“那你们现在的产品访问量是多少呢?”","source_created_at":"2024-11-18T04:07:03.000Z","category":"growth_tactics","pattern":"买方以\"未来百万级用量+战略合作\"为筹码压低当前报价,是常见谈判套路,但一句\"你们现在用量多少\"即可验证底牌——当前零流量彻底瓦解杠杆。","confidence":"emerging","tags":["pricing-negotiation","buyer-tactics","bluff-detection"],"distill_model":"sonnet","reason":"这条推文通过一个完整的对话场景,揭示了一种具体且可复用的谈判模式:买方以\"未来规模\"换取当下优惠价,对卖方(SaaS创始人)而言是有明确应对策略的可操作洞察,符合原子化标准。"}
Atoms — Founder Knowledge Base
Atomic, reusable patterns distilled from the maintainer's working notes (X tweets, build logs, retros). Each atom is one declarative principle a money-* skill can cite when reasoning about a user's situation.
Why atoms?
Skills routinely re-derive the same conclusions every conversation: "API products beat consumer-app GTM for solo founders," "AI-content traps look like growth but kill positioning," "agents replace UI in 12 months." These aren't hot takes — they're principles the maintainer has paid for in time, money, and dead products.
Atoms encode them so every skill run starts with that compounded judgement instead of cold reasoning.
Files
| File | Contents |
|---|---|
atoms.jsonl | Full atom corpus (every accepted atom across every category) |
atoms_solopreneur_psychology.jsonl | Character, action threshold, focus, mental models |
atoms_market_observation.jsonl | Market shifts, channel dynamics, industry trajectories |
atoms_agent_infra.jsonl | AI agents, skill design, tooling, automation infra |
atoms_growth_tactics.jsonl | Cold outreach, ads ROI, pricing, conversion experiments |
atoms_content_meta.jsonl | Content strategy, AI-content traps, positioning narrative |
Atom schema
{
"id": "A-1302",
"captured_at": "2026-05-03T04:26:26Z",
"source": "https://x.com/<handle>/status/<id>",
"source_text": "Original full text",
"source_created_at": "2026-05-03T00:35:31Z",
"category": "market_observation",
"pattern": "One declarative sentence in the source's language.",
"confidence": "validated | emerging | hypothesis",
"tags": ["1-3", "short", "keywords"],
"distill_model": "sonnet",
"reason": "1-sentence rationale for atomization."
}confidence:
- validated — backed by multiple observations or a quantitative outcome
- emerging — one strong observation, not yet replicated
- hypothesis — claim or speculation, untested
How skills consume atoms
Every money-* skill loads the relevant slice at startup (see Standard Skill Startup in skills/money/SKILL.md). The slice rule:
| Skill | Loads |
|---|---|
/money-discover, /money-strategy | market_observation + growth_tactics |
/money-content, /money-social, /money-seo | content_meta + growth_tactics |
/money-outreach, /money-ads | growth_tactics |
/money-product, /money-quality, /money-ops | agent_infra |
/money-diagnose, /money-panel, /money-review-* | solopreneur_psychology + ALL |
/money-finance | growth_tactics (pricing/conversion subset) |
Atoms are read-only at runtime. Skills cite them by id when an atom directly informs a recommendation, so the user can trace any conclusion back to its evidence.
Adding more atoms
The corpus grows in two ways:
1. X distillation pipeline (scripts/x-distill.mjs — gitignored, maintainer-only). Reads exported tweets and asks Claude to extract atoms category-by-category. Resumable; on subsequent runs only new tweets are processed. 2. Manual additions — append a single line to the relevant atoms_<category>.jsonl and the full atoms.jsonl. ID format A-{4 hex chars}.
Atoms are append-only. To deprecate one, set confidence: "deprecated" and add a superseded_by field pointing to its replacement — never delete history.