local-build-reminder
Remind the user to rebuild OMC after editing TypeScript when running from a local fork. Triggered automatically by the AI whenever it notices it (or the user) just changed a src/**/*.ts file in an OMC dev install.
What this skill does
# Local Build Reminder **Always-on reminder for OMC fork development.** When OMC is running in local mode (HUD shows `[OMC#X.Y.ZL]` with an `L` suffix), Claude Code loads compiled JavaScript from `dist/` — NOT TypeScript source from `src/`. Edits to `.ts` files are invisible to the running plugin until `npm run build` regenerates `dist/`. ## When to invoke this skill The AI should mention this reminder whenever **any of these** happens: 1. The user (or the AI itself) just edited `src/**/*.ts` in this repo. 2. The user asks "why isn't my change working?" / "I edited X but it does the same" after a TS edit. 3. The user is about to restart Claude Code and the working tree has TS edits with no rebuild. 4. The user runs an OMC command and expects new behavior tied to a TS edit. ## What to say Surface one clear sentence followed by the exact command. Don't repeat the reminder on every turn — once per "round" of TS editing is enough. Example: > Heads up: you edited `src/...`. Run `npm run build` before restarting > Claude Code — `dist/` won't reflect the change otherwise. If multiple TS files were edited in a row, just remind once at the end. ## When NOT to remind - The user only edited `.mjs` / `.cjs` / `.md` / `.json` — those load directly from disk, no build needed. - The user is in a Claude Code session that isn't running OMC locally (no `L` in the HUD). - A `tsc --watch` / `npm run dev:full` is already running in the background — those rebuild automatically on save. - The user just asked an unrelated question; don't shoehorn the reminder into off-topic responses. ## File-type cheat sheet | Path | Restart picks up edit? | Needs build? | | ------------------------------ | ---------------------- | ------------ | | `src/**/*.ts` | Only after build | **Yes** | | `templates/hooks/**/*.mjs` | Yes | No | | `scripts/**/*.mjs` / `*.cjs` | Yes | No | | `skills/**/SKILL.md` | Yes | No | | `agents/**/*.md` | Yes | No | | `commands/**/*.md` | Yes | No | | `.claude-plugin/plugin.json` | Yes (on Claude restart)| No | | `docs/**/*.md` | Cosmetic only | No | ## One-command setup for hands-free dev If the user is iterating heavily and tired of remembering the build, suggest: ```powershell npm run dev:full ``` This runs `tsc --watch` plus all bridge builders in parallel — every save triggers a rebuild within a second, so `restart Claude Code` is all that's needed afterwards. ## Detection signal — how the AI knows it's "local mode" The HUD's `[OMC#X.Y.ZL]` suffix is the visible cue. Programmatically, the detection lives in `src/lib/version.ts::isRuntimePackageLocal()` and triggers on any of: `.git/` at package root, `src/` at package root, package reached via symlink/junction, or any ancestor is a symlink/junction. When running inside the OMC fork repo itself, the AI is by definition in local mode — the reminder always applies.
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.