### Install and Run Claude Add-in Setup Wizard Source: https://support.claude.com/en/articles/13945233- Install the `claude-in-office` plugin from the marketplace and initiate the interactive setup wizard. This wizard guides through provisioning resources, generating manifests, and handling admin consent for different deployment paths. ```bash claude plugin marketplace add anthropics/financial-services-plugins claude plugin install claude-in-office@financial-services-plugins /claude-in-office:setup ``` -------------------------------- ### Install and Run Claude Code Source: https://support.claude.com/en/articles/14555877-claude-code-communications-kit Use this command to install Claude Code and then run it in your repository. It's recommended to run this from an executive's account for higher engagement. ```bash curl -fsSL https://claude.ai/install.sh | bash cd claude ``` -------------------------------- ### Configure Corporate Proxy for Installer Source: https://support.claude.com/en/articles/14552646-troubleshoot-claude-code-installation-and-authentication When behind a corporate network that blocks downloads, set the HTTPS_PROXY environment variable to your proxy address and port before running the installer. ```bash export HTTPS_PROXY=http://proxy.example.com:port ``` -------------------------------- ### Onboard to a new repository Source: https://support.claude.com/en/articles/14553517-claude-code-common-developer-use-cases Use this when working in a new repository for the first time to get a structured overview. The `/init` command scans the project and generates a `CLAUDE.md` file. ```markdown > /init > give me a tour of this codebase — where's the entry point, how is it structured, what should I read first ``` -------------------------------- ### Install LTS Node Version with nvm Source: https://support.claude.com/en/articles/14552646-troubleshoot-claude-code-installation-and-authentication Ensure you have Node.js 18 or later installed. Use nvm to install the latest LTS version if your current version is unsupported. ```bash node -v ``` ```bash nvm install --lts ``` -------------------------------- ### Example Tenant Restriction Header Source: https://support.claude.com/en/articles/13198485-enforce-network-level-access-control-with-tenant-restrictions An example of the `anthropic-allowed-org-ids` header with two organization UUIDs. ```text anthropic-allowed-org-ids: 550e8400-e29b-41d4-a716-446655440000,6ba7b810-9dad-11d1-80b4-00c04fd430c8 ``` -------------------------------- ### Faster SDK Startup with --bare Source: https://support.claude.com/en/articles/14554000-claude-code-power-user-tips Use the `--bare` flag for significantly faster SDK startup by disabling the default search for local CLAUDE.md files, settings, and MCPs. This is recommended for non-interactive usage where these are specified explicitly. ```bash claude -p "summarize this codebase" \ --output-format=stream-json \ --verbose \ --bare ``` -------------------------------- ### Install Claude Code with WinGet Source: https://support.claude.com/en/articles/14554922-claude-code-user-faq Install Claude Code using the WinGet package manager on Windows. ```bash winget install Anthropic.ClaudeCode ``` -------------------------------- ### Example Skill.md Structure Source: https://support.claude.com/en/articles/12512198-how-to-create-custom-skills This example demonstrates the basic structure of a Skill.md file, including required metadata (name, description) and markdown content for instructions and resources. The metadata helps Claude determine when to invoke the Skill. ```markdown ## Metadata name: Brand Guidelines description: Apply Acme Corp brand guidelines to all presentations and documents ## Overview This Skill provides Acme Corp's official brand guidelines for creating consistent, professional materials. When creating presentations, documents, or marketing materials, apply these standards to ensure all outputs match Acme's visual identity. Claude should reference these guidelines whenever creating external-facing materials or documents that represent Acme Corp. ## Brand Colors Our official brand colors are: - Primary: #FF6B35 (Coral) - Secondary: #004E89 (Navy Blue) - Accent: #F7B801 (Gold) - Neutral: #2E2E2E (Charcoal) ## Typography Headers: Montserrat Bold Body text: Open Sans Regular Size guidelines: - H1: 32pt - H2: 24pt - Body: 11pt ## Logo Usage Always use the full-color logo on light backgrounds. Use the white logo on dark backgrounds. Maintain minimum spacing of 0.5 inches around the logo. ## When to Apply Apply these guidelines whenever creating: - PowerPoint presentations - Word documents for external sharing - Marketing materials - Reports for clients ## Resources See the resources folder for logo files and font downloads. ``` -------------------------------- ### Verify Claude Code Installation Source: https://support.claude.com/en/articles/14552382-your-first-day-in-claude-code Run this command in your terminal to confirm that Claude Code has been installed correctly. ```bash claude --version ``` -------------------------------- ### Install Claude Code on macOS/Linux Source: https://support.claude.com/en/articles/14554922-claude-code-user-faq Use this command to install Claude Code via a script on macOS or Linux systems. ```bash curl -fsSL https://claude.ai/install.sh | bash ``` -------------------------------- ### Understand unfamiliar code Source: https://support.claude.com/en/articles/14553517-claude-code-common-developer-use-cases Get a walkthrough of how a specific module works within the codebase. This helps in understanding complex or unfamiliar sections of code. ```bash walk me through how [module] works ```