AI Coding Notes - robbiehume/CS-Notes GitHub Wiki

Overview

Claude Code

Workflow

  1. Plan mode (shift-tab)
  • It will just think through things instead of generate / modify code
  1. Use a CLAUDE.md file
  • The brain / memory for your project; similar to cursor rules
  • /init will auto generate it for you
  1. Use git as a checkpoint system
  • Claude code doesn't have good rollback feature like Cursor
  • When happy with changes, make a commit
  1. Use screenshots / folders
  • Can drag in images or folders
  1. Can use web search for having Claude read documentation or look something up
  2. Use subagents
  • Claude has ability to spin up subagents, which are instances of Claude code with their own context that will go off in parallel
  • Useful for long / large tasks
  1. When it's done, ask it to double check its work and/or find any edge cases
  • Also make sure you review its work