salesforce-architecture
Use for org-level Salesforce architecture work — capacity planning, security/sharing review, integration patterns, multi-org strategy, tech-debt assessment.
What this skill does
# Salesforce architecture skill ## Capacity model | Limit class | Soft signal at | |---|---| | Storage (data + file) | 70% utilisation | | Active users | 80% of license | | Custom objects | 80% of edition cap | | API calls | sustained > 60% of 24h limit | | Async Apex slots | > 50% concurrent | | Workflow/Flow per object | 5+ active | | Triggers per object | > 1 (use a single dispatcher) | When any soft signal is hit, surface it in the architecture review. ## Sharing & security Security model layers (top-down): 1. Org-wide defaults (OWD) 2. Role hierarchy 3. Sharing rules (criteria/owner-based) 4. Manual sharing 5. Apex managed sharing 6. Restricted views via field-level security & profile/permset 7. Implicit sharing (parent ↔ child) Review checklist: - OWD set to most restrictive sustainable level (Private > Public Read Only > Public Read/Write) - No "View All Data" / "Modify All Data" on profiles for non-admins - Permission sets > profile permissions (more granular, easier audit) - Field-level security explicit on PII fields - Apex `with sharing` / `without sharing` audited per class ## Integration patterns | Pattern | When | How | |---|---|---| | Request-Reply (sync) | UI need-to-know now | Apex callout + Named Credential | | Fire-and-forget | downstream system can be slow | Platform Events, Change Data Capture | | Batch sync | volume, off-hours | Bulk API 2.0 from MuleSoft / fivetran / etc | | Pub/sub | many subscribers, real-time | Pub/Sub API (gRPC) | | Composite | multiple ops in one round-trip | Composite REST | ## Multi-org - **Production + sandboxes:** standard. Use Source Tracking. - **Multiple production orgs:** integrate via Salesforce Connect / API / iPaaS, not direct DB - **Org strategy decisions:** dictated by data residency, license cost, M&A history, business unit autonomy ## Tech-debt assessment heuristics Score the org on: - Apex coverage (target > 85%) - Active triggers per object (target ≤ 1, use dispatcher) - Active Flows per object (target ≤ 3, consolidate) - Custom fields per object (review at > 200, dangerous at > 500) - API call volume vs limit - Hardcoded ids in code/Flow (target = 0) - Unmanaged metadata diff between orgs (target = 0 unintended) ## Deliverable shape When asked for an architecture review, produce: 1. **One-page summary** — score + top 3 risks + top 3 wins 2. **Capacity table** — current vs limit, headroom 3. **Risk register** — risk, likelihood, impact, owner, mitigation 4. **Roadmap** — quick wins (≤ 1 sprint), structural fixes (1 quarter), strategic bets (1 year) Use diagrams (Mermaid) for: data model, integration topology, environment topology.
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.