file-justification
Guide and workflow for File Justification Protocol. Use when you need File Justification Protocol.
What this skill does
# File Justification Protocol **Purpose**: Before creating or modifying ANY file, you MUST document the justification to prevent unnecessary file creation and ensure changes are well-reasoned. ## When This Protocol Applies - Creating a NEW file (highest scrutiny) - Modifying an EXISTING file - All PR changes (each file touched needs justification) ## Justification Template For EACH file you touch, document: ``` ### File: <filename> **GOAL**: What are you trying to achieve? **MODIFICATION**: What specific change are you making? **NECESSITY**: Why is this change required? Why can't it be done differently? **INTEGRATION PROOF**: How does this integrate with existing code? ``` ## New File Creation - Extreme Scrutiny **Default: NO NEW FILES** - You must prove why integration into existing files is impossible. ### Pre-Write Checklist (MANDATORY before creating any new file) 1. **Assume existing files can handle it** - Search for similar functionality 2. **Identify integration targets** - Which existing files could contain this code? 3. **Attempt integration first** - Try adding to existing file before creating new 4. **Document why integration failed** - Concrete reason, not "cleaner this way" ### Integration Hierarchy (try in order) 1. Existing file with similar functionality 2. Existing utility/helper file 3. Existing `__init__.py` 4. Existing test file (for test code) 5. Existing class as a method 6. Config file 7. **LAST RESORT**: New file (with full justification) ## Examples ### Good Justification (Modifying Existing) ``` ### File: mvp_site/llm_response.py **GOAL**: Add backward compatibility for outcome_resolution field **MODIFICATION**: Add property that falls back to outcome_resolution when action_resolution is missing **NECESSITY**: API clients already use action_resolution; changing the field name would break them **INTEGRATION PROOF**: Property pattern matches existing properties in this class (lines 45-67) ``` ### Good Justification (New File - Justified) ``` ### File: mvp_site/action_resolution_utils.py (NEW) **GOAL**: Centralize action_resolution/outcome_resolution fallback logic **MODIFICATION**: Create helper module with get_action_resolution() function **NECESSITY**: Same logic duplicated in llm_response.py (22 lines) and world_logic.py (13 lines) **INTEGRATION PROOF**: - Could not add to llm_response.py - world_logic.py would create circular import - Could not add to world_logic.py - llm_response.py would create circular import - New utils file breaks the dependency cycle ``` ### Bad Justification (Rejected) ``` ### File: mvp_site/new_helper.py (NEW) **GOAL**: Add helper function **MODIFICATION**: Create new file with helper **NECESSITY**: Cleaner to have it separate <-- NOT VALID **INTEGRATION PROOF**: None attempted <-- MUST ATTEMPT ``` ## File Placement Rules If a new file is justified, place it correctly: | Code Type | Location | |-----------|----------| | Python module | `mvp_site/` or appropriate submodule | | Scripts | `scripts/` | | Tests | `mvp_site/tests/` | | Commands | `.claude/commands/` | | Skills | `.claude/skills/` | **NEVER** create new files in project root. ## Banned Patterns - `*_v2.py` - Edit existing file - `*_new.py` - Edit existing file - `*_backup.py` - Use git - `*_old.py` - Delete and replace ## Quick Reference Before ANY file operation: 1. What existing file could contain this? (Search first) 2. Why can't I add this to that file? (Valid reason required) 3. Have I documented GOAL/MODIFICATION/NECESSITY/INTEGRATION PROOF? **If you cannot answer these questions, do not create the file.**
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.