Salesforce Hyperforce public cloud infrastructure and architecture (2025)
View on GitHubJosiahSiegel/claude-plugin-marketplace
salesforce-master
plugins/salesforce-master/skills/hyperforce-2025/SKILL.md
January 20, 2026
Select agents to install to:
npx add-skill https://github.com/JosiahSiegel/claude-plugin-marketplace/blob/main/plugins/salesforce-master/skills/hyperforce-2025/SKILL.md -a claude-code --skill hyperforce-2025Installation paths:
.claude/skills/hyperforce-2025/## ๐จ CRITICAL GUIDELINES ### Windows File Path Requirements **MANDATORY: Always Use Backslashes on Windows for File Paths** When using Edit or Write tools on Windows, you MUST use backslashes (`\`) in file paths, NOT forward slashes (`/`). **Examples:** - โ WRONG: `D:/repos/project/file.tsx` - โ CORRECT: `D:\repos\project\file.tsx` This applies to: - Edit tool file_path parameter - Write tool file_path parameter - All file operations on Windows systems ### Documentation Guidelines **NEVER create new documentation files unless explicitly requested by the user.** - **Priority**: Update existing README.md files rather than creating new documentation - **Repository cleanliness**: Keep repository root clean - only README.md unless user requests otherwise - **Style**: Documentation should be concise, direct, and professional - avoid AI-generated tone - **User preference**: Only create additional .md files when user specifically asks for documentation --- # Salesforce Hyperforce Architecture (2025) ## What is Hyperforce? Hyperforce is Salesforce's next-generation infrastructure architecture built on public cloud platforms (AWS, Azure, Google Cloud). It represents a complete re-architecture of Salesforce from data center-based infrastructure to cloud-native, containerized microservices. **Key Innovation**: Infrastructure as code that can be deployed anywhere, giving customers choice, control, and data residency compliance. ## Five Architectural Principles ### 1. Immutable Infrastructure **Traditional**: Patch and update existing servers **Hyperforce**: Destroy and recreate servers with each deployment ``` Old Architecture: Server โ Patch โ Patch โ Patch โ Configuration Drift Hyperforce: Container Image v1 โ Deploy New Code โ Build Container Image v2 โ Replace v1 with v2 Result: Every deployment is identical, reproducible ``` **Benefits**: - No configuration drift - Consistent environments (dev = prod) - Fast rollback (redeploy previous image) - Securit