code-style
OCaml coding style and refactoring patterns. Use when the user asks to tidy, clean up, refactor, or improve OCaml code, reviewing code quality, enforcing naming conventions, or reducing complexity.
What this skill does
# OCaml Code Style ## Core Philosophy 1. **Interface-First**: Design `.mli` first. Clean interface > clever implementation. 2. **Modularity**: Small, focused modules. Compose for larger systems. 3. **Simplicity (KISS)**: Clarity over conciseness. Avoid obscure constructs. 4. **Explicitness**: Explicit control flow and error handling. No exceptions for recoverable errors. 5. **Purity**: Prefer pure functions. Isolate side-effects at edges. 6. **NEVER use Obj.magic**: Breaks type safety. Always a better solution. ## Naming Conventions | Element | Convention | Example | |---------|------------|---------| | Files | `lowercase_underscores` | `user_profile.ml` | | Modules | `Snake_case` | `User_profile` | | Types | `snake_case`, primary type is `t` | `type user_profile`, `type t` | | Values | `snake_case` | `find_user`, `create_channel` | | Variants | `Snake_case` | `Waiting_for_input`, `Processing_data` | **Function naming**: - `find_*` returns `option` (may not exist) - `get_*` returns value directly (must exist) **Avoid**: Long names with many underscores (`get_user_profile_data_from_database_by_id`). ## Refactoring Patterns ### Option/Result Combinators ```ocaml (* Before *) match get_value () with Some x -> Some (x + 1) | None -> None (* After *) Option.map (fun x -> x + 1) (get_value ()) ``` Prefer: `Option.map`, `Option.bind`, `Option.value`, `Result.map`, `Result.bind` ### Monadic Syntax (let*/let+) ```ocaml (* Before - nested matches *) match fetch_user id with | Ok user -> (match fetch_perms user with Ok p -> Ok (user, p) | Error e -> Error e) | Error e -> Error e (* After *) let open Result.Syntax in let* user = fetch_user id in let+ perms = fetch_perms user in (user, perms) ``` ### Pattern Matching Over Conditionals ```ocaml (* Before *) if x > 0 then if x < 10 then "small" else "large" else "negative" (* After *) match x with | x when x < 0 -> "negative" | x when x < 10 -> "small" | _ -> "large" ``` ## Function Design **Keep functions small**: Under 50 lines. One purpose per function. **Avoid deep nesting**: Max 4 levels of `match`/`if`. Extract helpers. **High complexity signal**: Many branches = split into focused helpers. ```ocaml (* Bad - high complexity *) let check x y z = if x > 0 then if y > 0 then if z > 0 then ... else ... else ... else ... (* Good - factored *) let all_positive x y z = x > 0 && y > 0 && z > 0 let check x y z = if not (all_positive x y z) then "invalid" else ... ``` ## Error Handling **Use `result` for recoverable errors**. Exceptions only for programming errors. **Never catch-all**: ```ocaml (* Bad *) try f () with _ -> default (* Good *) try f () with Failure _ -> default ``` **Don't silence warnings**: Fix the issue, don't use `[@warning "-nn"]`. ## Library Preferences | Instead of | Use | Why | |------------|-----|-----| | `Str` | `Re` | Better API, no global state | | `Printf` | `Fmt` | Composable, type-safe | | `yojson` (manual) | `jsont` | Type-safe codecs | ## Module Hygiene **Abstract types**: Keep `type t` abstract. Expose smart constructors. ```ocaml (* Good - .mli *) type t val create : name:string -> t val name : t -> string val pp : t Fmt.t ``` **Avoid generic names**: Not `Util`, `Helpers`. Use `String_ext`, `Json_codec`. ## API Design **Avoid boolean blindness**: ```ocaml (* Bad *) let create_widget visible bordered = ... let w = create_widget true false (* What does this mean? *) (* Good *) type visibility = Visible | Hidden let create_widget ~visibility ~border = ... ``` ## Red Flags - Match that just rewraps: `Some v -> Some (f v) | None -> None` - Nested Result/Option matches → use let*/let+ - Deep if/then/else → pattern matching - Missing `pp` function on types - Unlabeled boolean parameters - `Obj.magic` anywhere
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.