by onmyway133
My favorite Claude Code tips & tricks
# Add to your Claude Code skills
git clone https://github.com/onmyway133/claude-code-tips-tricksGuides for using mcp servers skills like claude-code-tips-tricks.
See how claude-code-tips-tricks compares with popular alternatives.
claude-code-tips-tricks is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by onmyway133. My favorite Claude Code tips & tricks. It has 62 GitHub stars.
claude-code-tips-tricks's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/onmyway133/claude-code-tips-tricks" and add it to your Claude Code skills directory (see the Installation section above).
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-code-tips-tricks against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
Unlocks once the catalog security scan passes (runs nightly).
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
See comparison
Collection of my favorite Claude Code tips as I explore it.

Claude Code saves every conversation locally, so a task that spans multiple sittings doesn't need re-explaining from scratch. Run /rename to give a session a descriptive name, the same way you'd name a branch. Use claude --continue to pick up your most recent session, or claude --resume to choose from a list of past ones. Treat each workstream as its own persistent context: one session per feature, not one giant thread for everything you touch this week. Descriptive names pay off weeks later, when you're trying to remember which session already has the context you need.
Example:
claude --resume
Then pick "oauth-migration" from the list to jump back into that work with full context intact.
Reference: Manage sessions
Run /effort to control how hard Claude thinks before responding. Levels range from low (fewer tokens, faster) through medium, high, xhigh, max, and auto, where Claude picks per request. The default is high on Team, Enterprise, and direct API access, and medium everywhere else. Reach for xhigh on complex coding or agentic work when you want deeper reasoning without paying the full cost of max. Save max for the genuinely hard cases: a gnarly debugging session or an architecture decision where you want Claude to think for as long as it needs. Max burns through usage limits faster, so turn it on for the session that needs it rather than leaving it as your default.
Example:
/effort xhigh
Refactor the auth module to support multi-tenant sessions without breaking existing token validation.
Reference: Power user tips
By default, claude -p and the SDKs search your filesystem for CLAUDE.md files, settings, and MCP configs before every run. That's the right behavior interactively, but for scripted or CI usage you already know exactly what should load. Add --bare and pass --system-prompt, --mcp-config, and --settings explicitly instead, and startup gets roughly 10x faster. This local search was a default set early on, and the Claude Code team plans to flip it in a future version, so --bare is the flag worth reaching for today whenever you're calling Claude from a script.
Example:
claude -p "summarize this codebase" \
--output-format=stream-json \
--verbose \
--bare
Reference: Power user tips
Output styles change how Claude talks, not just what it does. Set one in /config. Explanatory mode has Claude narrate the frameworks and patterns behind its own changes as it works, which is useful when you're onboarding onto code you didn't write. Learning mode goes a step