Skip to content

Instantly share code, notes, and snippets.

@pffigueiredo
Created October 27, 2025 09:46
Show Gist options
  • Save pffigueiredo/312f3327fcbf56a5aa4177f876298de1 to your computer and use it in GitHub Desktop.
Save pffigueiredo/312f3327fcbf56a5aa4177f876298de1 to your computer and use it in GitHub Desktop.
Get started with Claude COde

Configuration

  • MCP Servers

    • Serena (global) - leverages the LSP to give LLMs semantic search capabilities
    • Context7 (global) - up to date docs for different libs
    • Playwright (project level) - for UI testing
  • Agent Memory

  • Claude.md / Agent.md

  • use /init to get started

  • Status Line

    • E.g. /statusline add Model | Git Branch | Tokens | Directory
  • Subagents

    • Technical Subagents
      • backend specialist
      • frontend specialist
      • react specialist
      • node specialist
      • go specialist
      • ...
    • Any Codebase Subagents
      • Codebase Analyzer
        • understands how code works, provides detailed information about specific components
      • Codebase pattern finder
        • finds similar implementations, provides complete working examples with context, and recommends which patterns to follow based on existing code
      • Codebase locator
        • find relevant files and directories
      • Web Research
        • search the web for relevant information
      • UI Agent
        • analyzes, tests, and reviews web interfaces using live browser automation
  • Commands

    • Create Plan
      • creates a plan for the user's request
    • Research Codebase
      • researches the codebase for the user's request
    • Implement Plan
      • implements the plan for the user's request
    • Design Review
      • reviews the design using the UI Agent and the Playwright Agent
    • PR Review
      • reviews the PR for the user's request using parallel personas
    • PR Create
      • creates a PR for the user's request and opens it for review
  • Workflow

    • Research Codebase
      • research the codebase for the user's request
    • Create Plan
      • creates a plan for the user's request
      • iterate on the plan with the agent
      • make sure the plan is complete and actionable
    • Implement Plan
      • implements the plan for the user's request
      • Design Review if there are UI changes
    • Create PR using the plan as the main thing to review

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment