From oh-my-claudecode
Reminds to rebuild TypeScript source files in a local OMC fork when edits won't appear until dist/ is regenerated.
How this skill is triggered — by the user, by Claude, or both
Slash command
/oh-my-claudecode:local-build-reminderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Always-on reminder for OMC fork development.** When OMC is running in local
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/.
The AI should mention this reminder whenever any of these happens:
src/**/*.ts in this repo.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/.... Runnpm run buildbefore 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.
.mjs / .cjs / .md / .json — those load directly
from disk, no build needed.L in the HUD).tsc --watch / npm run dev:full is already running in the background
— those rebuild automatically on save.| 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 |
If the user is iterating heavily and tired of remembering the build, suggest:
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.
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.
npx claudepluginhub i0r3k/oh-my-claudecode30plugins reuse this skill
First indexed Jul 7, 2026
Showing the 6 earliest of 30 plugins
Reminds to rebuild TypeScript source files in a local OMC fork when edits won't appear until dist/ is regenerated.
Runs pre-write reuse screening and post-write delta checks for TS/JS code changes. Infers intent from plain language, checks for existing code before adding/refactoring/moving/renaming, and validates changes.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.