Claude Code Configuration Guide 2026 | Generated by AI

Home 2026.03

Question: How to use such settings in Claude Code?

Answer:

The file you showed is the user-level configuration file for Claude Code (the Anthropic coding agent/CLI tool, often used in terminal or via the VS Code extension).

Place this file at:

Claude Code automatically reads this file (both the CLI version and the official Anthropic VS Code extension respect it in recent versions).

Your current file configures three main things:

{
  "feedbackSurveyState": {
    "lastShownTime": 1753996737780
  },
  "skipDangerousModePermissionPrompt": true,
  "env": {
    "ANTHROPIC_BASE_URL": "https://v2-as.pincc.ai",
    "ANTHROPIC_AUTH_TOKEN": "sk-8a25bb9202a81c57xx",
    "CLAUDE_CODE_ATTRIBUTION_HEADER": "0"
  }
}

What each setting does and how it’s used

How to make it work

  1. Save the file correctly
    Make sure the path is exactly ~/.claude/settings.json (create the .claude folder if it doesn’t exist).

  2. Restart Claude Code sessions
    • Terminal: close & reopen terminal, then run claude again
    • VS Code extension: reload VS Code window (Ctrl+R or Cmd+R on Mac) or restart the extension
  3. Test it
    Run in terminal:
    claude
    

    or use the VS Code sidebar / command palette → “Claude Code”.

    If configured correctly you should see no login prompt and it should connect to https://v2-as.pincc.ai instead of Anthropic directly.

Notes / common issues (2026 status)

That’s the standard and recommended way to use custom endpoints / keys / behavior tweaks in Claude Code.

References:


Back Donate