tradeoffs
Present multiple approaches with explicit tradeoffs before committing to one. Use when there are multiple valid solutions to a problem.
What this skill does
# Present Tradeoffs Skill ## Trigger Use when there are multiple valid approaches to a problem. Force explicit consideration of alternatives. ## The Problem Karpathy: "They don't present tradeoffs, they don't push back when they should." LLMs pick an approach and run with it. This skill forces consideration of alternatives and their tradeoffs. ## Process ### Step 1: Identify the Decision Point Before implementing, ask: "Is there more than one reasonable way to do this?" If yes, stop and enumerate the options. ### Step 2: List All Viable Options Don't filter yet. List every approach that could work: ```markdown ## Options for User Session Storage ### Option A: JWT in localStorage ### Option B: JWT in httpOnly cookie ### Option C: Server-side sessions with Redis ### Option D: Server-side sessions with database ``` ### Step 3: Evaluate Each Option For each option, consider: | Criterion | Option A | Option B | Option C | Option D | |-----------|----------|----------|----------|----------| | Security | XSS vulnerable | CSRF vulnerable | Most secure | Secure | | Scalability | Excellent | Excellent | Needs Redis | DB load | | Complexity | Simple | Medium | Medium | Simple | | Stateless | Yes | Yes | No | No | | Mobile support | Easy | Hard | Easy | Easy | ### Step 4: Make Tradeoffs Explicit ```markdown ## Recommendation: Option B (JWT in httpOnly cookie) ### Why - Best balance of security and simplicity - Immune to XSS attacks (main threat vector) - CSRF mitigated with SameSite=Strict ### What We Give Up - Slightly more complex mobile integration (need to handle cookies) - Token can't be easily accessed from JavaScript (intentional) - Slightly larger request payload (cookie sent with every request) ### What We Gain - Automatic CSRF protection with SameSite - No JavaScript access = immune to XSS token theft - Built-in expiration handling ### Alternative Considered Option C (Redis sessions) would be more secure but adds infrastructure complexity. Recommended if we later need session revocation. ``` ### Step 5: Get Explicit Approval Present the tradeoffs to stakeholders. Don't assume the "obvious" choice is correct. ## Tradeoff Categories to Consider ### Performance vs Simplicity - Caching adds speed but complexity - Denormalization speeds reads but complicates writes - Premature optimization is the root of all evil ### Security vs Usability - Shorter sessions are safer but annoy users - 2FA is more secure but adds friction - Strict validation catches attacks but may reject valid input ### Flexibility vs Complexity - Generic solutions handle more cases but are harder to understand - Configuration options add flexibility but increase surface area - Abstractions enable change but obscure behavior ### Consistency vs Availability (CAP) - Strong consistency means potential unavailability - Eventual consistency means potential stale reads - There is no free lunch ### Build vs Buy - Building gives control but costs time - Buying saves time but adds dependencies - Open source is "free" but still has maintenance cost ## Template ```markdown ## Decision: [What needs to be decided] ### Context [Why this decision matters] ### Options Considered #### Option A: [Name] **Pros:** [List] **Cons:** [List] **Best when:** [Conditions] #### Option B: [Name] **Pros:** [List] **Cons:** [List] **Best when:** [Conditions] ### Recommendation [Which option and why] ### Tradeoffs Accepted [What we're giving up] ### Revisit If [Conditions that would change this decision] ```
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.