List of Good Resources

Tài Liệu Chính Thức / Official Documentation

Tài Nguyên Mô Tả Liên Kết
Claude Code Docs Tài liệu Claude Code chính thức code.claude.com/docs/en/overview
Anthropic Docs Tài liệu Anthropic đầy đủ docs.anthropic.com
MCP Protocol Model Context Protocol specification modelcontextprotocol.io
MCP Servers Các MCP server implementations chính thức github.com/modelcontextprotocol/servers
Anthropic Cookbook Code examples và tutorials github.com/anthropics/anthropic-cookbook
Claude Code Skills Community skills repository github.com/anthropics/skills
Agent Teams Multi-agent coordination và collaboration code.claude.com/docs/en/agent-teams
Scheduled Tasks Recurring tasks với /loop và cron code.claude.com/docs/en/scheduled-tasks
Chrome Integration Browser automation code.claude.com/docs/en/chrome
Keybindings Keyboard shortcut customization code.claude.com/docs/en/keybindings
Desktop App Native desktop application code.claude.com/docs/en/desktop
Remote Control Remote session control code.claude.com/docs/en/remote-control
Auto Mode Automatic permission management code.claude.com/docs/en/permissions
Channels Multi-channel communication code.claude.com/docs/en/channels
Voice Dictation Voice input cho Claude Code code.claude.com/docs/en/voice-dictation

Anthropic Engineering Blog

Bài Viết Mô Tả Liên Kết
Code Execution with MCP Cách giải quyết MCP context bloat sử dụng code execution — 98.7% token reduction anthropic.com/engineering/code-execution-with-mcp

Mastering Claude Code in 30 Minutes / Làm Chủ Claude Code trong 30 Phút

Video: https://www.youtube.com/watch?v=6eBSHbLKuN0

Tất Cả Tips

Tip: Để có kết quả tốt nhất, kết hợp một số practices này — bắt đầu bằng cách pinning các critical files và summarizing goals của bạn, sau đó sử dụng focused prompts và các công cụ refactoring của Claude để incrementally improve codebase và automation của bạn.

Recommended workflow with Claude Code / Workflow được khuyến nghị với Claude Code

Cho Repository Mới / For a New Repository

  1. Initialize the Repo & Claude Integration

    • Thiết lập repository mới của bạn với essential structure: README, LICENSE, .gitignore, root configs.
    • Tạo một file CLAUDE.md mô tả architecture, high-level goals, và coding guidelines.
    • Cài đặt Claude Code và liên kết nó với repository của bạn để được code suggestions, test scaffolding, và workflow automation.
  2. Sử Dụng Plan Mode và Specs

    • Sử dụng plan mode (shift-tab hoặc /plan) để draft một specification chi tiết trước khi implement features.
    • Hỏi Claude để được architecture suggestions và initial project layout.
    • Giữ một clear, goal-oriented prompt sequence — hỏi về component outlines, major modules, và responsibilities.
  3. Phát Triển & Review Iterative

    • Implement core features trong small chunks, prompting Claude cho code generation, refactoring, và documentation.
    • Yêu cầu unit tests và examples sau mỗi increment.
    • Duy trì một running task list trong CLAUDE.md.
  4. Tự Động Hóa CI/CD và Deployment

    • Sử dụng Claude để scaffold GitHub Actions, npm/yarn scripts, hoặc deployment workflows.
    • Dễ dàng adapt pipelines bằng cách update CLAUDE.md của bạn và yêu cầu các commands/scripts tương ứng.
graph TD
    A[Start New Repository] --> B[Initialize Repository Structure]
    B --> C[Create README, LICENSE, .gitignore]
    C --> D[Create CLAUDE.md]
    D --> E[Document Architecture & Guidelines]
    E --> F[Install & Link Claude Code]

    F --> G[Enter Plan Mode]
    G --> H[Draft Feature Specification]
    H --> I[Get Architecture Suggestions]
    I --> J[Define Components & Modules]

    J --> K[Implement Feature Chunk]
    K --> L[Generate Code with Claude]
    L --> M[Request Unit Tests]
    M --> N[Review & Refactor]
    N --> O{More Features?}
    O -->|Yes| K
    O -->|No| P[Update Task List in CLAUDE.md]

    P --> Q[Setup CI/CD Pipeline]
    Q --> R[Scaffold GitHub Actions]
    R --> S[Create Deployment Scripts]
    S --> T[Test Automation]
    T --> U[Repository Ready]

    style A fill:#e1f5ff
    style G fill:#fff4e1
    style K fill:#f0ffe1
    style Q fill:#ffe1f5
    style U fill:#90EE90

Cho Repository Hiện Có / For an Existing Repository

  1. Repository & Context Setup

    • Thêm hoặc update CLAUDE.md để document repo structure, coding patterns, và key files. Đối với legacy repos, sử dụng CLAUDE_LEGACY.md covering frameworks, version maps, instructions, bugs, và upgrade notes.
    • Pin hoặc highlight các main files Claude nên sử dụng cho context.
  2. Contextual Code Q&A

    • Hỏi Claude cho code reviews, bug explanations, refactors, hoặc migration plans tham chiếu đến specific files/functions.
    • Cung cấp cho Claude explicit boundaries (ví dụ: "modify only these files" hoặc "no new dependencies").
  3. Branch, Worktree, và Multi-Session Management

    • Sử dụng multiple git worktrees cho isolated features hoặc bug fixes và launch separate Claude sessions per worktree.
    • Giữ terminal tabs/windows được tổ chức theo branch hoặc feature cho parallel workflows.
  4. Team Tools và Automation

    • Đồng bộ các custom commands qua .claude/commands/ cho cross-team consistency.
    • Tự động hóa các repetitive tasks, PR creation, và code formatting via Claude's slash commands hoặc hooks.
    • Chia sẻ sessions và context với team members cho collaborative troubleshooting và review.
graph TD
    A[Start with Existing Repository] --> B{Legacy Codebase?}
    B -->|Yes| C[Create CLAUDE_LEGACY.md]
    B -->|No| D[Create/Update CLAUDE.md]
    C --> E[Document Frameworks & Version Maps]
    D --> F[Document Structure & Patterns]
    E --> G[Pin Key Files for Context]
    F --> G

    G --> H[Identify Task Type]
    H --> I{Task Category}
    I -->|Bug Fix| J[Ask Claude for Bug Analysis]
    I -->|Code Review| K[Request Code Review]
    I -->|Refactor| L[Plan Refactoring Strategy]
    I -->|Migration| M[Create Migration Plan]

    J --> N[Set Explicit Boundaries]
    K --> N
    L --> N
    M --> N

    N --> O{Multiple Features?}
    O -->|Yes| P[Create Git Worktrees]
    O -->|No| Q[Work on Main Branch]
    P --> R[Launch Separate Claude Sessions]
    R --> S[Organize Terminal Tabs]
    Q --> S

    S --> T[Setup Team Automation]
    T --> U[Sync .claude/commands/]
    U --> V[Configure Slash Commands]
    V --> W[Setup Hooks for Automation]
    W --> X[Share Session Context with Team]

    X --> Y{More Tasks?}
    Y -->|Yes| H
    Y -->|No| Z[Workflow Complete]

    style A fill:#e1f5ff
    style C fill:#ffecec
    style D fill:#fff4e1
    style P fill:#f0ffe1
    style T fill:#ffe1f5
    style Z fill:#90EE90

Tips:

Các bước này capture các core recommendations cho smooth workflows với Claude Code trong cả new và existing codebases.


Tính Năng Mới & Khả Năng (March 2026) / New Features & Capabilities

Key Feature Resources / Tài Nguyên Tính Năng Chính

Tính Năng Mô Tả Tìm Hiểu Thêm
Auto Memory Claude tự động học và nhớ preferences của bạn qua các phiên Memory Guide
Remote Control Điều khiển Claude Code sessions từ các external tools và scripts Advanced Features
Web Sessions Truy cập Claude Code qua browser-based interfaces cho remote development CLI Reference
Desktop App Native desktop application cho Claude Code với enhanced UI Claude Code Docs
Extended Thinking Deep reasoning toggle qua Alt+T/Option+T hoặc MAX_THINKING_TOKENS env var Advanced Features
Permission Modes Fine-grained control: default, acceptEdits, plan, auto, dontAsk, bypassPermissions Advanced Features
7-Tier Memory Managed Policy, Project, Project Rules, User, User Rules, Local, Auto Memory Memory Guide
Hook Events 25 events: PreToolUse, PostToolUse, PostToolUseFailure, Stop, StopFailure, SubagentStart, SubagentStop, Notification, Elicitation, và nhiều hơn Hooks Guide
Agent Teams Phối hợp nhiều agents làm việc cùng nhau trên các complex tasks Subagents Guide
Scheduled Tasks Thiết lập recurring tasks với /loop và cron tools Advanced Features
Chrome Integration Browser automation với headless Chromium Advanced Features
Keyboard Customization Tùy chỉnh keybindings bao gồm chord sequences Advanced Features

Cập Nhật Lần Cuối: Tháng 4 năm 2026