Yoonchul Yi
โ† Back to daily insights

2026-03-16

/

๐Ÿ“ฐ Daily Digest โ€” 2026-03-16

2 items | Business, DevTools


๐Ÿ“‹ Quick Summary

[Two Cents #90] โ€œFlights of Thoughtโ€ Part 16 โ€” ์†Œ๋น„์ž-AI ์ ‘์ : OpenClaw๋กœ ์‹œ์ž‘๋œ ์ƒˆ๋กœ์šด ๊ฐ€๋Šฅ์„ฑ

Source: Two Cents (Substack) ยท Category: Business ยท Link: Original

  • The essay argues that consumer AI is moving from a โ€œsingle superappโ€ expectation toward assistant-driven intent routing, where whoever controls redirection of user intent captures value.
  • It uses Chinaโ€™s OpenClaw wave as evidence: roughly 100-day diffusion, rapid cloud-provider adoption, and a shift from closed GUI mediation to open API/MCP-style integration.
  • For Korea, it frames the biggest opportunity as closing the โ€œintegration gapโ€ between high AI usage (e.g., ~22.9M ChatGPT MAU) and weak execution-layer integration across local commerce services.

How I write software with LLMs

Source: Stavrosโ€™ Stuff ยท Category: DevTools ยท Link: Original

  • Stavros describes a production workflow where LLMs now deliver lower defect rates than his solo coding in familiar stacks, while human leverage shifts from syntax to architecture.
  • His harness thesis is practical: use multiple models and role-specific agents, because same-model self-review tends to miss issues and diverse reviewers catch different failures.
  • The articleโ€™s annotated email-feature session shows iterative planning, explicit approval gates, reviewer loops, and fast correction of edge cases (identity matching, wildcard email rules, and validation details).

๐Ÿ“ Detailed Notes

1. [Two Cents #90] โ€œFlights of Thoughtโ€ Part 16 โ€” ์†Œ๋น„์ž-AI ์ ‘์ : OpenClaw๋กœ ์‹œ์ž‘๋œ ์ƒˆ๋กœ์šด ๊ฐ€๋Šฅ์„ฑ

  1. The core claim is that the key battleground is shifting to intent distribution rights.
    • The author argues that consumer-AI touchpoints matter because they control where user intent gets redirected and monetized.
    • Earlier assumptions favored a ChatGPT-like all-in-one superapp as the default interface for commerce and tasks.
    • OpenClaw-style assistants introduce a competing structure where intent routing can happen outside a single centralized app.
  2. China is presented as an empirical preview of how fast this shift can happen.
    • The piece cites an approximately 100-day jump from open-source release to mainstream social adoption momentum.
    • It references data points like 9,000 GitHub stars in one day and about 170,000 stars within two weeks.
    • Large cloud players moved quickly with one-click deployments, while Baidu reportedly integrated agent capability into a 700M-user search app.
  3. The architecture lesson is โ€œopen-complementary beats closed-intermediary.โ€
    • A contrasting example says a GUI-intermediating phone assistant was blocked quickly by major platforms.
    • OpenClaw is framed as API/MCP-oriented and device/user-controlled, making it easier for incumbents to tolerate or adopt.
    • The implication is that products trying to sit between users and entrenched platforms face stronger resistance than products that extend existing rails.
  4. Koreaโ€™s opportunity is high demand but low integration.
    • The essay cites strong AI adoption metrics in Korea, including about 22.93M ChatGPT MAU, ~46% smartphone-population reach, and high awareness.
    • It also emphasizes structural frictions: closed commerce platforms, limited third-party execution APIs, and weak local OpenClaw ecosystem participation.
    • KakaoTalkโ€™s scale (around 47M MAU and very high penetration) is treated as both a distribution advantage and an execution-layer constraint.
  5. The strategy section compares six paths and favors social-plus-agent hybrids.
    • Options include Kakao-native integration, standalone concierge apps, piggyback bots, OS-level agents, social-first third apps, and ChatGPT-default scenarios.
    • The preferred pattern combines viral social mechanics with agent execution, aiming to solve CAC while preserving value capture and ecosystem control.
    • Startup opportunities highlighted include local skill ecosystems, connector middleware, and vertical-first execution plays in travel, delivery, and commerce.

2. How I write software with LLMs

  1. The article reframes coding productivity around โ€œmaking things,โ€ not manual typing.
    • Stavros says recent model quality (he references Codex 5.2/5.4 and Opus 4.6 periods) made long-running projects more maintainable.
    • He reports sustaining work for weeks and growing systems to tens of thousands of useful lines with lower perceived defect rates.
    • The claimed skill shift is from writing correct code line-by-line to choosing robust architecture and constraints.
  2. The harness design has two non-negotiables: model diversity and agent delegation.
    • He argues same-model self-review is weak because models tend to agree with their own earlier choices.
    • Multi-model review is treated as โ€œsecond-set-of-eyesโ€ quality control, with different models optimized for writing vs critique.
    • Agent-to-agent handoffs reduce manual context ferrying and support role-specific capability boundaries.
  3. His operating pattern is architect โ†’ developer โ†’ reviewers.
    • A strong model acts as architect, negotiates requirements in detail, and waits for explicit โ€œapprovedโ€ confirmation before implementation.
    • A cheaper model executes the plan with limited design freedom, focusing on implementation throughput.
    • One to three reviewers (often including Codex, sometimes Gemini and Opus) critique diffs, and disagreements escalate back to the architect.
  4. The real session demonstrates disciplined iteration, not one-shot prompting.
    • In an email-support feature, the model and user iteratively narrowed scope: webhook ingress, SMTP egress, allowlists, config, and tests.
    • The workflow surfaces concrete edge cases (owner identity seeding, wildcard email matching, safe @ boundary handling, and UI validation rules).
    • The pattern emphasizes short feedback loops where the user continuously audits assumptions and directs course corrections.
  5. The reliability thesis includes explicit failure modes and mitigation.
    • He notes LLM-led architecture can degrade quickly when the human lacks domain understanding and cannot detect bad early choices.
    • His mitigation is heavy planning upfront plus stricter review loops to prevent compounding architectural errors.
    • The reported outcome is high operational confidence from repeated QA cycles, with an example feature completed in about an hour and refined through follow-up fixes.