10 Claude Code Usage Tips: The Sooner You Know, The Sooner You Benefit

marsbitPubblicato 2026-04-08Pubblicato ultima volta 2026-04-08

Introduzione

Here is an English summary of the article "10 Must-Know Claude Code Tips: The Sooner You Know, The Sooner You Benefit": This article shares essential tips for using Claude Code, an AI coding assistant, to significantly boost productivity. It is divided into three main sections. First, it covers three ways to launch Claude: 1) A simple GUI desktop app for non-programmers, 2) A command-line method with a key tip (`claude -c`) to resume from a specific point in the chat history, avoiding restarting context, and 3) A headless mode (`-p` flag) for automation tasks using a subscription token. Second, it details three crucial in-session techniques: 1) Using `Esc` to gracefully interrupt a response and `Esc+Esc` to revert to a previous checkpoint, 2) Using the `!` syntax (e.g., `!ls`) to run shell commands without leaving the chat, and 3) Managing context with `/clear` to remove history or `/compact` to optimize it when performance slows down. Finally, the article recommends companion software to solve human-AI collaboration bottlenecks: 1) **Superpowers**, a structured workflow methodology for higher-quality code output. 2) Voice input tools like **Typeless** and **Douban Input法** to overcome typing speed limit. 3) Tools like **Cmux** (a terminal for managing multiple AI agent instances) and **Vibe Island** (for seamless context switching between tasks) to solve the problem of lost focus when multitasking. The overall goal is to help users focus more deeply on their programming...

Below are the Claude code usage tips that I've often lamented not knowing earlier over the past six months.

They have saved me a massive amount of time, allowing me to enter a state of smooth flow while coding and writing content.


The article is divided into three parts:

1. Three Ways to Launch

2. Usage Tips While Running

3. Using Companion Software to Solve Human-Machine Collaboration Efficiency Issues

All of this is about: allowing you to focus more on programming and other activities at hand.

I wish someone had sent me this guide a few months ago, so I could have taken fewer detours and started smoothly:

1. Save this guide, spend 30 minutes this weekend to master Claude code techniques.

2. Send it to anyone who tells you "I think Claude code is difficult, but I've never tried it".

Alright, first let's start with the simplest launch (you read that right, even launching has its tricks)

Three Ways to Launch Claude

Simple Launch

Launching Claude is a very simple thing, simply in the command line.

But for friends who don't like command-line tools, Claude code actually has a visual interface.

How to do it?

Go to this website: https://claude.com/download, under Claude Desktop, follow the steps below and you'll get a visual Claude.

Here you can not only chat, but it also comes with many features similar to OpenClaw.

The visual interface is easier for ordinary people to use, but programmers prefer the command-line launch method.

Below I'll introduce a few commands to speed up launching.

Command Line Launch

Launch with Specific History

During our use of Claude code, we often encounter situations that require restarting. Every time we restart, we need to restore the previous conversation context:


I used to always use:

But the official actually provides some pretty good launch commands:

The one I use frequently here is `claude -c`, a short command that has saved me a lot of life.


-p Launch in Automated Mode

Claude Code can be launched without a UI, simply use the following command:

It's worth noting that if you want to use a local subscription Token to automate tasks, this is currently the only way to do it.

The famous Obsidian + Claude Code tool below made its own SDK to use the local subscription Token this way.

I admit what I said earlier might be a bit complicated, let's talk about a few simple commands to use during operation.

3 Must-Know Small Tips While Using Claude code

Elegantly Terminate and Rollback Tasks

When first using claude code, everyone still likes to use Ctrl+C to close the current conversation, only to find it closes Claude entirely. The correct way is to press the Esc key once, which will interrupt the conversation immediately, preventing things from getting worse.

If Claude suddenly goes crazy, we can press Esc+Esc twice, then a list will pop up:

You can use this function to return to any checkpoint, avoiding Claude code messing up the code.

Execute Commands Without Leaving Claude

Sometimes we want to run a test command ourselves, but to not interrupt the current Claude, we have to open another command window.

Actually, we can use the ! syntax:

Context Management

As the conversation continues, the more chat history we accumulate, the more tokens are consumed per interaction, and Claude code will run slower and slower.

You have two choices, open a new window or use the /clear command

A simple command to clean up useless context is like closing 20 chrome tabs at once.

But what if I don't want to clear this context? Use /compact to compress it.

It's like giving claude a Red Bull to wake up and refresh.

I hope the above small tips help you use Claude code more smoothly.

But this is far from enough. Since Claude code is a command-line tool, no matter how many commands you learn, it's a mental burden.

Fortunately, the community has produced quite a bit of companion software to solve the following pain points:

1. Lack of mature prompt methodology, low programming efficiency

2. Slow typing speed leads to low prompt input efficiency

3. During multitasking, humans are fragmented and unable to increase productivity

If any of the above is your pain point, please read on.

Using Companion Software to Solve Human-Machine Collaboration Problems

Now, we are slowly discovering that humans are starting to跟不上 (cannot keep up with) the speed of machines. To address this, the community has produced a series of software.

First, we need a mature programming methodology:

Superpowers

Ordinary people have no method when Vibecoding, they just do whatever comes to mind. This Skills is a programming workflow summarized by an experienced programmer.

He packaged top software engineering best practices into one-click Skills. From requirement梳理 (sorting), Spec confirmation, detailed planning, to TDD test-driven + automatic Code Review, the entire process enforces a structured workflow, allowing AI to output high-quality, maintainable code like a mature engineering team, significantly improving the one-time success rate, so you no longer have to repeatedly put out fires.

This project already has 138k Stars, you can go check it out for details, I won't elaborate here.

Once you have a mature programming Skills, you will find that it requires frequent information input, and then you discover that typing speed becomes your efficiency bottleneck.

You wonder, is there any software that can quietly convert speech to text in the office, with particularly accurate Chinese and English recognition?

Yes, yes, and there are many, but I only recommend two, typeless and Douban Input Method.

Voice Input Software

The advantage of Douban Input Method is that it's fast, has decent Chinese and English recognition, and most importantly, it's free. It's a bit like the Android system, I use it too.

But typeless, aside from needing payment, doesn't have many shortcomings, and you can try it.

I'll provide links for both below.

typeless (I recommend, affiliate link): https://www.typeless.com/?via=lxfater


Douban Input Method is still in the testing phase, you can search for the installation package.

Once you start voice input, you can provide more context to Claude code, and the one-time success rate will get higher and higher. At this point, the efficiency limitation becomes the running time of Claude code.

We can use multiple Claude code instances simultaneously. At this time, our bottleneck becomes the human problem of losing context when switching between multiple tasks.

Solve Your Attention Switching Problem

First, I recommend a software called Cmux:

It's a macOS native terminal built based on Ghostty, specifically designed for running multiple coding agents simultaneously: vertical tabs + smart sidebar, flexible split-screen, smart notification highlighting, built-in browser split-screen + Socket API.

This is an open-source project: https://github.com/manaflow-ai/cmux

My favorite is the split-screen function, but once you split the screen, you won't know which window completed the task.

Fortunately, this software will directly highlight a certain terminal area, helping you switch to the corresponding window in time.

But the next software I'm about to介绍 (introduce) will make this switching incredibly smooth:

This is a relatively popular product recently, called Vibe Island

The UI is beautiful, right? But the most powerful aspect of this product is its support for switching between many different tools.

And each switch will automatically唤醒 (wake up) and focus the window of the APP you are in, and you can input directly.

Theoretically, as long as you switch fast enough and open enough windows, it will continuously push the windows that need processing in front of you. You'll feel like you're handling an assembly line.

Finally

I hope this content is helpful to you. This is quite beginner-friendly, actually common knowledge for programmers.

But I still hope it can help you. If you feel this content was helpful to you!

Domande pertinenti

QWhat are the three main parts of the Claude code usage guide?

AThe three main parts are: 1. Three ways to launch Claude, 2. Tips for using it while it's running, and 3. Using supporting software to solve human-machine collaboration efficiency problems.

QWhat is the purpose of the `-c` command line argument when starting Claude?

AThe `-c` command line argument is used to start Claude and continue from a specific previous history or context, saving time by avoiding the need to re-establish the previous state manually.

QHow can you gracefully interrupt a Claude code response without quitting the entire application?

AYou can press the Escape (Esc) key once to immediately interrupt the current conversation and prevent it from going further off track.

QWhat command can be used within Claude to execute a system command without leaving the Claude interface?

AYou can use the exclamation mark syntax (`!`) followed by the command to execute a system command without leaving the Claude interface.

QWhat are the two recommended software tools mentioned for voice input to improve efficiency when working with Claude?

AThe two recommended voice input software tools are Typeless and Douban Input法 (Douban Input Method).

Letture associate

Should You Buy SpaceX Stock at $1.7 Trillion? Here's What the Market Is Worried About

SpaceX is preparing for a massive IPO aiming to raise around $75 billion at a valuation of approximately $1.75 trillion. While its achievements in reusable rockets and the profitable Starlink satellite internet service are clear, the market is concerned about the aggressive valuation. Key issues include: the current $1.75 trillion valuation, which is about 94 times 2025 revenue, seems to price in not just existing businesses but also unproven future ventures like AI infrastructure and orbital data centers. Financially, while Starlink is profitable, the AI division, bolstered by the acquisition of xAI, is incurring massive losses and consuming the majority of capital expenditures. This acquisition also introduced complex related-party financing arrangements and debt onto SpaceX's balance sheet. Furthermore, corporate governance poses a challenge. SpaceX's dual-class share structure ensures founder Elon Musk retains absolute control, limiting ordinary shareholders' influence over high-risk, long-term strategic decisions. The future success of ambitious projects like the Starship rocket—critical for lowering costs and enabling new services—remains a significant variable for the valuation. In summary, the market's apprehension (FUD) centers not on doubting SpaceX's past technological triumphs but on questioning how much premium public investors should pay for a future that combines proven profits with highly speculative and capital-intensive new ventures, all under a governance structure that offers limited shareholder oversight.

marsbit11 min fa

Should You Buy SpaceX Stock at $1.7 Trillion? Here's What the Market Is Worried About

marsbit11 min fa

Breaking the DeFi Cascading Liquidation Curse: Vitalik Proposes a New Solution

Vitalik Buterin has proposed a new DeFi design to eliminate the automatic liquidation mechanism that causes market instability during sharp downturns. The current system, used by protocols like Aave, triggers forced sales when collateral value falls below a threshold, often exacerbating price drops and creating systemic selling pressure. Buterin's alternative model is based on splitting an asset like ETH into two synthetic option-like tokens, P and N, pegged to a price index. Their combined value always equals one ETH. Instead of sudden liquidation, a position's value gradually drifts from its target peg if the market moves. Users must proactively rebalance their holdings to maintain their desired exposure, transferring the management burden from the protocol to the user or automated tools. A key advantage is the reduced reliance on real-time oracles. Pricing decisions are deferred until contract expiry, allowing for more robust, fault-tolerant oracle designs. This removes a clear liquidation threshold that speculators can target for manipulation or MEV extraction. However, significant challenges remain. Frequent rebalancing could incur high slippage and transaction costs, necessitating new liquidity provider models. The design is better suited for hedging instruments than for stablecoins requiring a rigid 1:1 peg. While not an immediate replacement for existing systems, the proposal challenges the foundational assumption that instantaneous forced liquidation is an unavoidable necessity in DeFi, opening the door for fundamentally different risk management architectures.

marsbit15 min fa

Breaking the DeFi Cascading Liquidation Curse: Vitalik Proposes a New Solution

marsbit15 min fa

The End of Single-Factor Cryptography

The article "The End of Single-Factor Crypto" posits a fundamental shift in the cryptocurrency ecosystem. It argues the era where crypto asset valuations were predominantly driven by, and correlated with, Bitcoin's price is ending. The space is bifurcating into two distinct economies: endogenous and exogenous. The endogenous economy represents traditional crypto, where token and project values are directly tied to crypto market prices. The emerging exogenous economy comprises projects and businesses that may utilize blockchain technology or tokens but derive their fundamental value from external, non-crypto factors like consumer demand, subscription revenue, or real-world utility. Examples include AI inference platforms like Venice, fintech lenders using blockchain for efficiency, and stablecoin/payment infrastructure companies acquired by giants like Mastercard and Stripe. This shift means investment analysis must change. For exogenous assets, evaluating traditional business fundamentals—such as revenue streams, unit economics, and competitive moats—becomes more critical than tracking Bitcoin charts. While endogenous assets like Bitcoin remain relevant, the growth of the exogenous category is driven by measurable demand independent of crypto price cycles, paving the way for a new, more diversified market phase. Consequently, crypto is evolving from a single-factor, reflexive asset class into a multifaceted ecosystem with varied drivers and investment theses.

marsbit16 min fa

The End of Single-Factor Cryptography

marsbit16 min fa

Morning Post | Bitmine Plans to Raise $300 Million Through Preferred Stock Issuance; Polymarket Accuses Kalshi of Commercial Espionage

ChainCatcher's Daily Crypto Brief: Key developments from the past 24 hours include significant funding moves, regulatory actions, and market predictions. Bitmine announced a $300 million preferred stock fundraising. Polymarket accused rival prediction platform Kalshi of corporate espionage, citing numerous suspicious coincidences in product launches, a claim Kalshi strongly denied. The U.S. Department of Justice, in a joint "Disruption Week" anti-fraud operation with companies like Coinbase and Meta, froze over $3.8 million in cryptocurrency linked to scams. In infrastructure news, Macau completed its integration with the multi-central bank digital currency bridge, mBridge, aiming to build efficient cross-border payment channels. Cosmos Labs acquired the block explorer Mintscan. Market-wise, Geoffrey Kendrick, Standard Chartered's Head of Digital Assets Research, stated Bitcoin is nearing a bottom around $63,000, maintaining a year-end target of $100,000. He noted stability in U.S. spot Bitcoin ETF holdings. Ahead of SpaceX's anticipated IPO, internal insiders at Rocket Lab (RKLB) sold over $18.41 million in stock. In tokenization, Goldman Sachs partnered with Apex and Archax to launch a tokenized real estate fund. The meme token tracker GMGN reported the top trending tokens: on Ethereum, HEX, SHIB, LINK, PEPE, mUSD; on Solana, TROLL, swarms, WORLDCUP, neet, Buttcoin; and on Base, PEPE, toby, ODDS, ELSA, SKI.

链捕手30 min fa

Morning Post | Bitmine Plans to Raise $300 Million Through Preferred Stock Issuance; Polymarket Accuses Kalshi of Commercial Espionage

链捕手30 min fa

55TB to 28TB? The Rumor and Panic Behind Rubin's Memory Being Halved

Title: 55TB to 28TB? The Rumor and Panic Behind the Potential Halving of Rubin's Memory. On June 4th, a report from SemiAnalysis suggested NVIDIA's next-gen Vera Rubin NVL72 AI rack may ship with roughly 28TB of SOCAMM DRAM per rack instead of the anticipated 55TB, primarily using 96GB modules. This sparked a market panic, causing Micron's stock to drop over 10% on fears of halved memory demand. However, the article argues this panic is misguided for several key reasons. First, SOCAMM modules are socketed and upgradeable, not soldered. Lower initial configuration doesn't mean permanent demand loss. Second, the primary driver is a severe 2026 LPDDR5X supply shortage, not diminished need. NVIDIA is likely prioritizing rack shipments with available components. Third, with fixed total LPDDR5X supply, using less per rack could allow NVIDIA to ship *more* racks, not necessarily reducing overall memory orders. Micron's sharp drop was also attributed to a broader semiconductor sell-off triggered by Broadcom's earnings, with the SemiAnalysis report providing a convenient narrative for profit-taking after Micron's massive rally. In summary: the report on lower default configurations is likely accurate, but interpreting it as a demand collapse is wrong. The real risk for Micron lies in its reportedly minimal HBM4 share for Rubin, not in potentially flexible SOCAMM demand. The sell-off appears more like a correction amplified by coinciding negative catalysts.

marsbit47 min fa

55TB to 28TB? The Rumor and Panic Behind Rubin's Memory Being Halved

marsbit47 min fa

Trading

Spot
Futures
活动图片