Who Makes the Best Use of Claude Code? The Answer Might Not Be Programmers

marsbit2026-06-20 tarihinde yayınlandı2026-06-20 tarihinde güncellendi

Özet

Claude Code Usage Report Summary (Based on ~400k sessions) Core Finding: In agentic programming with Claude Code, a clear division of labor has emerged: humans primarily decide *what* to build (planning decisions), while Claude decides *how* to build it (execution decisions). Key Insights: 1. **Effectiveness is not limited to programmers.** In code-generation tasks, success rates for users in non-technical fields (law, finance, management, research) are nearing those of software engineers. What matters most is the user's domain expertise and understanding of the problem to be solved. 2. **Domain expertise drives success and efficiency.** Sessions where users exhibited "expert" proficiency in the task's domain saw verified success rates double compared to "novice" sessions. Experts also delegated more work per instruction, with Claude executing more actions and producing more output. 3. **AI is amplifying, not replacing, domain knowledge.** Claude Code lowers the *implementation* barrier, not the *judgment* barrier. The value of knowing the "what" and "why" is increasing relative to just knowing the "how" to code. 4. **Usage is evolving.** Over a 7-month period (Oct '25 - Apr '26), the share of sessions for debugging halved, while use for software operations, data analysis, and non-code writing roughly doubled. The estimated economic value of typical tasks increased by ~25%. Conclusion: The data suggests coding agents are making programming background less critical for ...

Editor's Note: This report, based on approximately 400,000 Claude Code sessions, explores how AI coding tools are reshaping the relationship between people and code.

The core finding of the article is: In agentic programming, humans primarily decide "what to do," while Claude primarily handles "how to do it." Users take on most of the planning decisions, while Claude assumes the bulk of the execution work. This means AI is taking over implementation steps such as writing code, modifying files, running commands, and debugging, but goal setting and outcome evaluation still rely on humans.

More importantly, the effectiveness of using Claude Code doesn't depend solely on whether the user is a programmer. The report shows that in code generation tasks, the success rates of users in non-technical professions like law, finance, management, and research have already approached those of software engineers. What truly influences the outcome is whether the user understands the problem they need to solve.

This indicates that AI programming lowers the barrier to implementation, not the barrier to judgment. In the future, those who understand the business, the context, and can clearly articulate requirements and evaluate results might be better equipped to leverage AI than those who only know how to write code. AI won't automatically replace domain knowledge; instead, it will amplify its value.

Here is the original text:

Key Findings

Building upon existing research, we propose a framework for studying interactive agentic programming. This framework is based on a privacy-preserving analysis of approximately 400,000 Claude Code sessions from October 2025 to April 2026, assessing task composition, human-AI collaboration patterns, and task success rates.

In a typical session, humans are responsible for most planning decisions, i.e., deciding "what to do"; Claude is responsible for most execution decisions, i.e., deciding "how to accomplish it." The stronger a user's expertise in a specific domain, the more work Claude completes per instruction. In coding tasks, the average success rates across major occupational groups—measured as completing what the user originally intended, with verifiable evidence like passing tests, committing code—are nearly on par with those of software engineers.

The stronger a user's domain expertise, the more likely a session is to end successfully. However, the gap between intermediate and expert users is not large. Over the seven months we observed, the proportion of sessions used for debugging has almost halved, with usage shifting towards more end-to-end agentic applications: deploying and running code, analyzing data, and writing non-code documentation.

During these seven months, the estimated value of typical tasks has increased across almost all work types. By comparing with freelance job posting information, we estimate the average increase in task value to be around 25%.

Introduction

Agentic programming is rapidly emerging. Since late 2025, the proportion of GitHub projects showing activity from coding agents has more than doubled, and Claude Code users now average 20 hours of use per week. Can people without formal programming experience successfully direct an agent to complete complex technical work? How will the rapid adoption and capability enhancement of these tools affect knowledge work more broadly? We don't yet have complete answers, but we can see early signals from Claude Code usage data.

This report, based on a privacy-preserving analysis of approximately 400,000 interactive sessions from about 235,000 users between October 2025 and April 2026, provides evidence of how Claude Code is actually being used. It builds on our previous research on autonomy metrics in Claude Code sessions and how Claude Code is changing work within Anthropic. This article proposes a framework for describing the use of interactive AI coding assistants: what work people are doing, who is doing it, and whether the work is successful. We focus on user interactions via the command-line interface (CLI), Claude.ai, or the Claude Code desktop application. By tracking how agentic programming usage changes as model capabilities improve, we can better understand the impact of these tools on both programming professionals and the broader knowledge worker labor market.

What happens in Claude Code may foreshadow the future of knowledge work: agents will gradually become embedded in non-coding tasks. We find that Claude is handling more complex and valuable tasks. At the same time, a clear division of labor persists in agentic programming: humans decide what to build, and agents decide how to build it.

We also see evidence that it is domain expertise, not programming proficiency, that truly amplifies the effectiveness of the tool. Domain experts, in particular, are more likely to succeed and more likely to recover from errors and misunderstandings. However, the gap between experts and intermediate users is not large. This suggests that being proficient enough in a domain allows one to use such tools almost as effectively as a deep expert.

These findings allow us a preliminary observation of potential shifts in the labor market. In our data, success depends on whether a person understands the problem they are trying to solve, not on whether they have received programming training. If these patterns hold across the broader economy, it implies that while agentic programming tools may be absorbing some implementation-oriented work, they are simultaneously rewarding those who genuinely understand the problems inherent in their work. Coding agents are not replacing domain expertise. On the contrary, the more understanding a worker brings to an agent, the more high-quality work the agent can accomplish.

Division of Labor

What People Use Claude Code For

To understand how people use Claude Code, we categorize each session into one of nine work modes—the single activity that best describes the session's goal. Four modes directly involve writing or maintaining code: building something new, fixing something broken, testing code, and orchestrating other agents or automation pipelines. Another category involves operating software, including deploying, configuring, running pipelines, and monitoring systems. Two more modes focus on figuring out "what to do": understanding how an existing system works, and planning changes before making modifications. The final two modes are non-code related, or where code is only an auxiliary part of the final output: analyzing data, and communicating through presentations and other text-based documents.

Approximately 56% of sessions consist of writing code (25%), fixing code (26%), or testing and orchestrating code (5%). Operating software accounts for 17%, planning or exploration accounts for 14%, and analysis or writing text accounts for 13% (see Figure 1).

We first have the model read session transcripts to classify each session; we then cross-validate these classifications with automatically logged telemetry data for each session, including whether code lines were added or deleted. There is high consistency between the two sources. For example, over 90% of sessions classified by our classifier as creating or modifying code also show code changes in the telemetry data. See the appendix for details.

Who Makes the Decisions

How autonomous is Claude Code? Capability evaluations show the upper bound is already high and still rising. For example, in benchmarks like METR's Time Span Evaluation, frontier models can now autonomously complete software tasks that would take humans hours, overcoming obstacles along the way. But what happens in actual usage? Here, we focus on how much guidance is provided by humans versus Claude in real sessions.

We examine this question from two angles. First, we look at how much people delegate decision-making to Claude; second, we observe how many actions they assign to Claude. To understand the division of decision-making in a session, we built a privacy-preserving decision attribution classifier based on session content. We ask the classifier to list all meaningful decisions in a session, categorizing them as planning decisions and execution decisions. Planning decisions include what to do, which approach to use, and what constitutes completion; execution decisions include which files to modify, what code to write, what language to use, and which commands to run. The classifier then attributes each decision to either Claude or the user, producing two numbers per session: the percentage of planning decisions attributed to the user, and the percentage of execution decisions attributed to the user.

On average, humans make about 70% of planning decisions but only about 20% of execution decisions (see Figure 2). In practice, agentic programming establishes a clear division of labor: humans decide what to build, agents decide how to build it.

To understand the extent of action delegation in a session, we look not at content but at session structure. A Claude Code session consists of back-and-forth interactions between Claude and the user: the user sends a prompt, Claude executes actions; then the user sends the next prompt, and so on. In a typical session, there are about four such rounds. In our historical data from October to April, each user prompt triggered Claude to perform about 10 actions on average, sometimes over 100. In each round, Claude reads files, edits code, runs commands, and outputs an average of 2,400 words.

How much work Claude completes between user check-ins depends largely on who is making the decisions. When users retain control over execution—meaning they make over 80% of execution decisions—Claude performs fewer actions per round, around 8. When Claude holds planning control—meaning it makes over 80% of planning decisions—it undertakes the highest number of actions, around 16.

Expertise Level

For each session transcript, Claude evaluates the user's apparent expertise level for that task on a five-point scale, from novice to expert. The expertise classifier focuses on three signals: the precision of the user's instructions, what the user asks Claude to verify, and whether the user corrects Claude more often or Claude corrects the user more often. It's important to note that this expertise level is a completely different concept from job title or general capability, and crucially, it is task-specific. A senior engineer asking about Rust for the first time could still be a novice on Rust tasks. An accountant who has never used Python, if they can precisely tell Claude what reconciliation rules a Python script must follow and can catch edge cases it mishandles during month-end closing, is an expert on that task.

The table below shows how we define each expertise level in the classifier, with example prompts from the public coding agent conversation dataset SWE-chat. Conversations categorized as "Novice" provide generic instructions without demonstrating specific domain knowledge; those categorized as "Expert" convey a deep understanding of the codebase and technical environment.

We quantified the relationship between expertise level and the volume of output and activity generated per Claude prompt. In a typical novice session, each prompt triggers Claude to perform about 5 actions and output about 600 words; in an expert session, the action chain length is more than double, about 12 actions, and output reaches about 3,200 words, five times higher (see Figure 3). This novice-expert gap appears across every work type and every task value bracket.

These metrics complement our previous research on Claude Code's autonomy. The earlier study tracked agent run duration and how frequently users auto-approved its actions. In contrast, our decision attribution metric captures who makes substantive decisions throughout the entire session, while output and actions per prompt measure the degree of autonomous activity Claude undertakes per human instruction.

Who Uses Claude Code, and What They Use It For

Users

To understand who is doing this work, we infer each user's occupation from session transcripts and map it to one of the 23 major groups in the US Bureau of Labor Statistics Standard Occupational Classification (SOC) system. The classifier is instructed to judge based only on signals such as: the project context loaded by the agent at session start, file names and structures, materials or artifacts referenced by the user (e.g., legal documents, clinical data, financial reports, course materials), and the user's vocabulary. The classifier is explicitly instructed not to treat "writing code" itself as evidence of a programming occupation. Sessions are only placed in coding-related SOC categories (i.e., "Computer and Mathematical Occupations") if there is a clear signal that software or data work is the user's profession. If a lawyer builds a script to automatically check a set of contracts for missing clauses, even though the session primarily involves writing software, it is still classified under the legal profession. If no signal about the user's occupation exists, the session remains unclassified.

We were able to infer an occupation in about 70% of sessions. Among these classifiable sessions, "Computer and Mathematical Occupations" is the largest group, unsurprisingly, as this category encompasses most software-related work. This is followed by Business and Financial Operations, Arts Design and Media, Management, and Life, Physical, and Social Sciences. The fastest-growing non-software occupational groups in our sample are Management, Sales, and Legal occupations.

Work

From October 2025 to April 2026, the composition of work people used Claude Code to complete changed significantly. The most pronounced change was a drop in the proportion of sessions used to fix broken code, from 33% to 19% (see Figure 4). This was replaced by more work surrounding code. The share of operating software increased from 14% to 21%. Writing and data analysis roughly doubled, rising from about 10% to about 20%.

The value of the tasks themselves also increased. We approximate the economic value of each session by estimating the cost of similar work on the freelance market, calibrated using a real-world public job posting dataset. By this measure, the estimated value of an average session rose by 27% between October and April. This increase appeared across many work types. The estimated value of building, operating, and fixing tasks grew by approximately 43%, 34%, and 32% respectively. These price estimates are rough, so we primarily use them to compare trends over time across different tasks, not as directly readable dollar values. See the appendix for details on how the task value estimator was constructed.

Success Depends on What the User Brings

Estimating task value is one way to understand how Claude Code helps people get work done. Another angle is to see how many sessions succeed and which session characteristics correlate with success. Across all success metrics, we see a clear pattern: the higher the expertise level exhibited by the user in the session, the more likely the session is to succeed. Most of the gains are concentrated at the lower end of the expertise spectrum, meaning the gap from novice to intermediate is greater than from intermediate to expert.

Before analyzing the characteristics of successful sessions, we need to specify precisely how we measure success. We cannot observe real-world outcomes or directly ask users if they accomplished what they intended through Claude. Therefore, we rely on two complementary, session-transcript-based measures. The first is "adjudicated success," where a classifier reads the full session transcript and judges whether the user accomplished their originally stated goal, with options including success, partial success, failure, and no clear goal. Then, two companion classifiers assess the strength of evidence for this judgment to determine "verified success." The success signal classifier looks for verifiable evidence of success, particularly including git activities matching the work, such as commits and pull requests, test suite passes, and explicit user expressions of satisfaction. It scores sessions on a scale from "no signal" to "weak signals" (1 point) up to "multiple hard signals" (5 points). A parallel failure signal classifier scores evidence that things went wrong, including errors, test failures, repeated attempts at the same thing, and user objections to output. Verified success requires two conditions to be met simultaneously: the session is adjudicated as successful, and there is at least one hard, verifiable success signal. The following analysis focuses on the degree of success or failure in sessions, so we exclude sessions adjudicated as "no clear goal" by the success outcome classifier, which constitute about 7.7% of the full sample.

The Returns to Expertise

So, which sessions are most likely to succeed? The results show that the session expertise rating described above has a strong influence on session success.

One might worry that expertise isn't the real driver. Perhaps experts simply choose different tasks or differ in other ways. In this section, we partly address this concern by comparing sessions of the same work type, same estimated value, same month, same topic, and from the same broad occupational group, and examining how results vary with user expertise.

Across all success metrics, the higher the expertise exhibited by the user in a session, the more likely the session is to succeed. Sessions rated as Novice achieved success on our strictest metric, "verified success," 15% of the time, and achieved at least partial success 77% of the time. Sessions rated as Intermediate and above achieved verified success rates of 28% to 33%, and partial success rates of 91% to 92% (see Figure 5).

For each metric, most of the gains come from moving from novice to intermediate; the slope flattens from intermediate to expert. Details on the regression analysis underlying Figure 5 are in the appendix.

A similar gradient is visible in sessions that run into trouble. When the failure signal records verified evidence of failure, we consider the session as "having problems." This may include errors, test failures, multiple attempts to accomplish the same thing, or user expressions of frustration and dissatisfaction. Among sessions that had problems, after controlling for all the above variables, the proportion achieving verified success rises from 4% for novice sessions to 15% for expert sessions (see Figure 5). Using a more lenient success metric, we find that the proportion achieving at least partial success is 60% for novice users and 80% to 81% for intermediate to expert users.

We also tracked the inverse relationship—between expertise level and various failure metrics. Note that for this analysis, sessions adjudicated as failed are those that did not even achieve partial success. If a session that had problems is adjudicated as failed and also did not write any lines of code, we call it abandoned. In sessions where the user appeared to be a novice, 19% were ultimately abandoned; in other user groups, this figure was 5% to 7%. In other words, the least experienced users were more likely to give up when they encountered difficulties while trying to achieve a goal. Part of the value of professional capability seems to lie in being able to steer the agent back on track.

Occupation May Be Less Important Than Expertise

Users in software-related occupations have a verified success rate of about 30% across all sessions, while users in other occupations have about 26%. In sessions that produced code—i.e., added or modified at least one line of code—these figures are 34% and 29% respectively (see Figure 6). The gap between software-related and other occupations narrows further when using a more lenient success definition. In code-producing sessions, the proportions achieving at least partial success are 89% and 88% for the two groups. A five-percentage-point gap is not large, and it neither widened nor narrowed over the seven months, though success rates for both groups increased. In code-producing sessions, each of the ten largest occupational groups in our dataset is within seven percentage points of software engineers in success rate. Management occupations have the highest verified success rate, slightly above software engineering occupations. The higher verified success rate for managers may reflect the transferability of management skills to directing an agent. But it might also partly stem from our measurement approach: verification relies in part on explicit user confirmation within the session, and managers may be more accustomed to expressing when they get the result they want.

Looking Ahead

The results of this report sketch an emerging picture: agentic programming is amplifying certain kinds of knowledge and skills while substituting for others. In sessions that produce code, success rates across major occupations are not far from those of software-related occupations. It seems that coding agents are making a programming background less important for successfully completing programming tasks.

At the same time, successful sessions are more likely to exhibit domain expertise. Sessions rated as Expert are more than twice as likely to achieve verified success as those rated Novice. When sessions run into problems, novices abandon them several times more often than other users. The collaboration pattern itself makes this picture clearer: domain experts can direct Claude to accomplish more work with each instruction. Therefore, the ability to steer Claude toward success comes more from mastery of a domain than from the ability to write code. Anyone possessing such mastery in any domain can now potentially accomplish technical work that was previously out of reach. Those lacking this professional understanding will reap much less benefit, even with the same tools. And the gains come mainly from competence, not from mastery. Having an operational understanding of a domain already yields most of the benefit; deep specialization adds only a modest additional advantage on top of that.

These findings remain preliminary. As with most of our research, we cannot measure real-world outcomes, such as whether the code written in a session is later used or discarded, or whether it produced economically valuable outputs. Furthermore, non-interactive usage excluded from this report constitutes a significant portion of overall activity. Developing a framework to measure such usage is a priority for future work. Also, all our session classifications rely on models reading session transcripts. In the appendix, we show that the classifiers align with independent telemetry data in expected directions and, for most sessions, agree with judgments from strong reference models. However, validating classifiers at scale remains difficult; Claude Code sessions themselves add to the difficulty, as they can be too long and complex for human labeling to serve as a reliable ground truth.

The picture described in this report will continue to evolve as models, users, and the division of labor between them change. We hope these metrics will help us track the major shifts underway. For example, if returns to expertise begin to decline in the future, that would signal models starting to provide the critical judgment users currently bring, and the benefits of these tools would extend from domain experts to a broader population. If the share of coding sessions successfully completed by users outside software occupations continues to rise, it may indicate that software production is becoming part of ordinary work in every field, rather than the output of a single profession. These shifts will change who benefits from agentic programming and by how much, impacting which abilities are most valued in the labor market.

İlgili Sorular

QWhat is the core finding of the report regarding the relationship between humans and Claude Code in agentic programming?

AIn agentic programming, there is a clear division of labor: humans primarily decide 'what to do' (planning decisions), while Claude Code primarily decides 'how to do it' (execution decisions). Humans make about 70% of planning decisions but only 20% of execution decisions. AI is taking over implementation tasks like writing code, modifying files, running commands, and debugging, while goal-setting and outcome evaluation remain human responsibilities.

QAccording to the report, who might be most effective at using AI programming tools like Claude Code in the future?

AThe report suggests that people who understand the business, the context, can clearly articulate requirements, and judge outcomes might be more effective users of AI programming tools than those who merely know how to write code. Domain knowledge is amplified by AI, not automated away. Individuals with strong domain expertise in areas like law, finance, management, or research can achieve success rates in code-producing tasks close to those of software engineers.

QHow does the user's domain expertise affect their interaction with Claude Code during a session?

AA user's domain expertise directly influences the amount of work Claude Code performs per instruction. In sessions where users are classified as experts, each prompt triggers Claude to execute about 12 actions and output around 3,200 words. In contrast, for novice users, a prompt triggers only about 5 actions and 600 words. Greater expertise allows for more precise instructions, enabling Claude to work more autonomously and productively per human input.

QWhat trend was observed in the types of tasks users performed with Claude Code from October 2025 to April 2026?

AThe composition of work shifted significantly. Sessions dedicated to fixing broken code decreased from 33% to 19%. This was replaced by growth in other areas: software operation tasks increased from 14% to 21%, and writing/data analysis tasks roughly doubled from about 10% to 20%. Overall, the estimated economic value of the average session increased by approximately 27% during this period.

QWhat is the relationship between user professional level (from novice to expert) and session success rate?

AHigher user professional level correlates strongly with a higher likelihood of session success. Sessions classified with novice users had a 15% verified success rate, while those with intermediate to expert users had a 28-33% verified success rate. Most of the gain comes from moving from novice to intermediate levels; the slope flattens from intermediate to expert. Furthermore, novices were much more likely to abandon a challenging session (19%) compared to intermediate/expert users (5-7%).

İlgili Okumalar

Two Legends Lost in Three Days: Is Google's AI Talent Dam Cracking?

In three days, Google lost two AI legends. On June 18, Noam Shazeer, co-author of the seminal "Attention is All You Need" paper and Gemini co-lead, left for OpenAI. Just 48 hours later, John Jumper, 2024 Nobel laureate and AlphaFold lead, departed DeepMind for Anthropic. This follows Andrej Karpathy joining Anthropic in May. These moves highlight a structural trend: top AI talent is concentrating at mission-driven, pre-IPO firms like OpenAI and Anthropic, while Google becomes a primary source. The exodus stems from a core mission mismatch. Google's ad-centric model often subordinates AI research to product and revenue goals, creating friction for pioneers like Shazeer, who returned in 2024 only to leave again. In contrast, OpenAI and Anthropic offer singular focus on pushing AI boundaries, whether towards AGI or safety-aligned models, which deeply appeals to top researchers like Jumper. Financial incentives amplify the pull. With both OpenAI and Anthropic nearing IPO, employees stand to gain immensely from equity, an upside Google's mature stock cannot match. Furthermore, the 2023 merger of Google Brain and DeepMind, intended to consolidate strength, has instead created cultural tension and slowed the path from research to product, as evidenced by Gemini's pace. This talent redistribution is reshaping the AI landscape. While Google retains vast data and compute resources, its true crisis is the quiet, continuous loss of the people who define the field's future. The real moat in AI is not infrastructure, but the concentration of brilliant minds—a battle Google is currently losing.

marsbit1 saat önce

Two Legends Lost in Three Days: Is Google's AI Talent Dam Cracking?

marsbit1 saat önce

Behind the AI Report Card, Lies a Chinese 'Exam Setter'

Beyond the familiar performance charts like MMLU-Pro and MMMU, which major AI models strive to ace, stands a key "examiner": Chinese-Canadian researcher Wenhu Chen. An assistant professor at the University of Waterloo and founder of TIGERLab, Chen addresses the crucial need for more rigorous AI evaluation. As models like GPT-4 began scoring near-perfect results on older benchmarks like MMLU, it became difficult to distinguish their true capabilities. In response, Chen introduced MMLU-Pro in 2024, featuring harder, more reasoning-focused questions with more answer choices, successfully reintroducing meaningful performance gaps. His work extends to multi-modal evaluation with MMMU and its enhanced version, MMMU-Pro. These benchmarks test a model's ability to understand and reason with complex information from images, charts, and text across diverse academic subjects, exposing the significant challenges even top models face in genuine comprehension. Chen's background in complex QA, table reasoning, and his experience at Google DeepMind on projects like Gemini inform his approach. He understands that effective benchmarks must anticipate how models might "cheat" by memorizing data or avoiding visual analysis. His lab also actively researches video understanding and generation models (e.g., UniVideo, Vamba), ensuring his evaluation work is grounded in practical model-building challenges. Now at Meta's Super Intelligence Lab, Chen continues his focus on multi-modal data and evaluation, representing the deep yet often unseen contributions of Chinese talent in shaping the fundamental tools of the AI industry.

marsbit1 saat önce

Behind the AI Report Card, Lies a Chinese 'Exam Setter'

marsbit1 saat önce

Alliance Co-founder's Letter to Entrepreneurs: Written at the Moment Cursor Sold for $600 Billion

Alliance Co-founder's Letter to Entrepreneurs: On Cursor's $60 Billion Sale Many aspiring founders see massive exits like Cursor's $60B sale and wonder why they can't achieve the same, often concluding opportunities are exhausted. But great companies aren't built in obvious, crowded spaces. Cursor, like Stripe, Figma, and Shopify before it, started with a non-consensus belief about the future. Before ChatGPT, they believed AI would transform knowledge work. They focused on a genuinely exciting domain, became their own customer, and obsessed over power users. Their journey involved years of "glass-chewing" effort before the market was ready. The pattern is consistent: identify a long-term technological shift, find a missed entry point, and execute for years before the trend becomes obvious. First-generation products (PayPal, Adobe, Amazon) prove a market exists. Second-generation winners (Stripe, Figma, Shopify) rebuild that market around new insights, technology, or changing customer behaviors. Founders must identify their phase in the cycle. Early entrants like Coinbase or Cursor focus on making new technology usable for power users. Later entrants find the "yin" to the established "yang"—the blind spots incumbents miss as they grow distant from individual users. The key is deep market immersion. Use every product in your space. Talk to users. Build an audience. Stop looking for ideas and start *seeing* them everywhere. Then, choose one. The idea must offer a 10x improvement or solve a "hair-on-fire" pain point—something severe enough that users are already crafting workarounds. When building, avoid feature bloat. Ask: why would someone switch? Great startups rarely force new behaviors; they improve familiar workflows with drastically lower friction (e.g., Cursor forked VS Code instead of creating a new editor). Distribution is the underestimated moat. Before product-market fit, achieve distribution-market fit. How do customers discover new tools? Founders like those at Airbnb, Stripe, and Cursor did unscalable, manual work to recruit early users. The final, unteachable ingredient is resilience. Cursor built for years pre-market, faced rejection, and persisted. So did Airbnb, Nvidia, and Rain (which launched post-FTX collapse). The lesson isn't that these founders were smarter, but that they stayed in the game long enough for their insights to compound. Framework: Spot technological cycles. Cultivate unique insight. Obsess over your market. Talk to customers. Find a hair-on-fire problem. Build the simplest wedge. Win your distribution channel. Above all, don't quit when it gets hard. Most people won't do these things consistently. The few who do build the next generation of great companies. Go build.

marsbit1 saat önce

Alliance Co-founder's Letter to Entrepreneurs: Written at the Moment Cursor Sold for $600 Billion

marsbit1 saat önce

Weekly Editor's Picks (0613-0619)

Weekly Editor's Picks (0613-0619): Market Insights & Analysis This weekly digest curates in-depth analysis often lost in the information flow, focusing on key insights across macro trends, investment, and technology. **Macro & Geopolitics:** With the Strait of Hormuz reopening and military conflict shifting to negotiation, markets are pivoting from "war shock" to "supply restoration." Trades include shorting crude risk premiums, longing airlines/tourism, Asian energy importers, and bond duration, while shorting inflation expectations. LNG, fertilizer, and chemical chains are also being repriced. **Investment & VC:** Ray Dalio advises against betting on concentrated AI giants dominating indices, advocating for diversified portfolios of high-quality, low-correlation assets instead. Analysis covers the 4-year crypto cycle, predicting the core surviving product by 2029 will be asset trading markets. Current BTC metrics suggest a potential bottoming zone, presenting a patient accumulation window. SpaceX's high-profile IPO at a $2.1T valuation faces scrutiny over fundamentals, with key watchpoints being its likely inclusion in the Nasdaq index and Q2 earnings. Concerns are raised about potential "gamma squeeze" and systemic risks if its narrative-driven valuation gets amplified by passive index funds. Robinhood (HOOD) is noted for breaking its high correlation with crypto, bolstered by its stock trading and new underwriting business. **Web3 & AI:** A warning highlights ~$1.8T in off-balance-sheet AI infrastructure commitments (purchase commitments, leases) as a potential systemic risk if AI monetization lags. AI models are being used for World Cup predictions, adding a new layer for betting markets. A cost breakdown of a $20 AI subscription reveals the supply chain from model companies to cloud, GPUs, and power. **Prediction Markets:** The emergence of prediction market "concept stocks" is noted, with Robinhood developing its own platform, Rothera, signaling a shift from market competition to a "channel war" for user access. **CeFi & DeFi:** The SpaceX IPO tested perpetual contract mechanisms for pre-IPO assets, highlighting challenges in handling corporate actions like stock splits on-chain. The de-pegging of STRC (Strategy's preferred share) to ~$89 reflects market concerns over MicroStrategy's capital structure and BTC-backed leverage model. BlackRock's covered-call Bitcoin ETF (BITA) offers yield but caps upside, appealing to yield-seeking institutions. **Ethereum:** An opinion piece argues Ethereum's core strength is its vast developer community and composability, solidifying its role as the default operating system for the financial internet. **Weekly Hot Topics:** Include the US-Iran deal reopening the Strait of Hormuz, Fed's hawkish hold, Anthropic restricting model access, SpaceX acquiring Cursor, and a humorous stock surge for "Liuliumei" due to its "LLM" ticker.

marsbit1 saat önce

Weekly Editor's Picks (0613-0619)

marsbit1 saat önce

Alliance's Co-Founder's Letter to Entrepreneurs: Written on the Occasion of Cursor's $60 Billion Sale

In this letter to entrepreneurs, Alliance reflects on the success of Cursor's $60 billion sale to Elon Musk, using it as a case study to counter the misconception that opportunities in crowded fields like AI or crypto are exhausted. The piece argues that great companies like Cursor, Stripe, Figma, and Shopify are not built by geniuses with perfect ideas, but by founders who start with a non-consensus belief about the future and build for years before that future becomes obvious to everyone. They identify long-term shifts, find overlooked entry points, and execute relentlessly. The framework for success involves: 1. **Identifying your place in the technology cycle**: Early-stage opportunities focus on making new tech usable for power users (e.g., Coinbase, Cursor). Later-stage opportunities involve finding the "yin" to an existing "yang"—the blind spots of first-generation players (e.g., Stripe vs. PayPal, Figma vs. Adobe). 2. **Cultivating unique insights**: Immerse yourself deeply in the market. Use every product, talk to users, and build an audience. Insights will emerge naturally from deep engagement. 3. **Finding a "hair-on-fire" problem**: Look for a 10x improvement or a severe, urgent pain point. The strongest signal is people already building clumsy workarounds. 4. **Building a focused MVP**: Don't just add features because you can. Ask why users would abandon their current tool for yours. The best startups rarely force new behaviors; they improve familiar workflows with drastically lower friction. 5. **Winning a distribution channel**: Distribution is often the moat. Before product-market fit, achieve channel-market fit. Find where your customers are and build an engine to reach them, even through unscalable, manual efforts initially. 6. **Persistence**: The final, unteachable ingredient is resilience. Success stories like Cursor, Airbnb, and Nvidia involved years of grinding, rejection, and perseverance when the path forward seemed unclear. The conclusion is that there is no secret. Most people fail to consistently execute these steps over the long term. The few who do build the companies that define the next era. The world is yours to create.

链捕手1 saat önce

Alliance's Co-Founder's Letter to Entrepreneurs: Written on the Occasion of Cursor's $60 Billion Sale

链捕手1 saat önce

İşlemler

Spot
Futures
活动图片