Skip to content

NyxToolsDev/awesome-claude-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Awesome Claude Code

A curated list of resources, tools, templates, and tips for Claude Code.

Contributions welcome — see Contributing.


Contents


Official Resources

CLAUDE.md Templates

Community CLAUDE.md Examples

Know a great public CLAUDE.md? Open a PR to add it here.

MCP Servers

Productivity

Finance

Healthcare

Developer Tools

Build Your Own

MCP Registries

Find more MCP servers:

Hooks

Claude Code hooks run shell commands automatically before/after Claude performs actions.

Free Hook: Auto-Lint on Save

Add to your Claude Code settings to auto-lint after every file edit:

{
  "hooks": {
    "PostToolUse": [
      {
        "matcher": "Edit|Write",
        "command": "npx eslint --fix $CLAUDE_FILE_PATH 2>/dev/null || true"
      }
    ]
  }
}

More Hooks

Chrome Extensions

  • Claude Power Tools — Session manager, prompt library, and shortcuts for Claude.ai (coming soon)
  • AI Chat Vault — Cross-platform AI conversation backup and search (coming soon)

Tips and Tricks

Get Better Output

  1. Use a CLAUDE.md file. Even a basic one dramatically improves output quality.
  2. Use .claude/rules/ for contextual rules. Security rules when touching auth. Testing rules when writing tests. They load only when relevant.
  3. Be specific in negative constraints. "Never use enum" > "Follow TypeScript best practices."
  4. Start with Plan mode for complex tasks. Hit Shift+Tab to cycle to Plan mode before diving into implementation.

Save Money

  1. Use /cost to check current session spend
  2. Use /clear to reset context when Claude gets confused (avoids wasting tokens going in circles)
  3. Keep CLAUDE.md concise — every line is tokens you pay for every message
  4. Use Plan mode first for complex tasks to avoid expensive re-dos

Work Faster

  1. Shift+Tab — Cycle between Ask, Edit, and Plan modes
  2. Ctrl+G — Edit your last prompt without retyping
  3. Esc — Stop Claude mid-response
  4. Tab — Accept Claude's suggestion
  5. /clear — Reset context when things go sideways

Keyboard Shortcuts

Shortcut Action
Shift+Tab Cycle modes (Ask → Edit → Plan)
Ctrl+G Edit last prompt
Esc Stop current response
Tab Accept suggestion
Ctrl+C (x2) Exit Claude Code
/cost Check session spend
/clear Reset conversation context
/help Show available commands

Articles and Tutorials

Know a great article about Claude Code? Open a PR to add it here.

Community


Contributing

  1. Fork this repo
  2. Add your resource to the appropriate section
  3. Open a PR with a brief description of what you're adding

Guidelines:

  • Only add resources you've personally used or verified
  • Include a one-line description
  • Keep descriptions factual, not promotional
  • Free resources preferred; paid resources must be clearly marked

License

MIT — see LICENSE


Maintained by NyxTools · NyxTools

About

Curated list of Claude Code resources,templates, and tools

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors