dotenv:merge
25Skill Claude CodeCodex
Use WHEN you have multiple .env files (.env.shared, .env.local, .env.secret) and need to compose them in priority order, with last-wins semantics and conflict detection.
Skill Claude CodeCodex
Use WHEN you have multiple .env files (.env.shared, .env.local, .env.secret) and need to compose them in priority order, with last-wins semantics and conflict detection.
Skill Claude CodeCodex
Use WHEN you want JS/TS lint errors auto-fixed where possible — and grouped warnings emitted for the rest, with the project's eslint config and plugins picked up automatically.
Skill Claude CodeCodex
Use WHEN you've been handed a .xlsx or .xls file and need to extract one or all sheets into CSV — handling merged cells, formula values, dates, and multi-sheet workbooks.
Skill Claude CodeCodex
Use WHEN a test is intermittently failing in CI — quarantine and re-run it N times locally to confirm flakiness, then file a tracking issue rather than disabling silently.
Skill Claude CodeCodex
Apply prettier across JS, TS, JSON, CSS, SCSS, and Markdown using the project's resolved config whenever the user wants consistent formatting.
Skill Claude CodeCodex
Use WHEN you need to deploy a container image to Google Cloud Run and inject environment variables sourced from a local .env file.
Skill Claude CodeCodex
Use WHEN you need to create, read, version, or grant access to secrets in Google Cloud Secret Manager from the command line or CI.
Skill Claude CodeCodex
Use WHEN a regression appeared somewhere in recent history and you need to binary-search commits to identify the first bad one.
Skill Claude CodeCodex
Use WHEN you need to trace a line of code back through its history — past renames, past refactors, past whitespace-only commits — to find the original author and intent.
Skill Claude CodeCodex
Use WHEN you need to copy one or more specific commits from another branch onto your current branch without merging the whole branch.
Skill Claude CodeCodex
Use WHEN you need to rewrite local commit history — squash WIP commits, reorder, edit messages, or replay work onto an updated base branch.
Skill Claude CodeCodex
Use WHEN a branch was force-pushed, deleted, or a hard reset destroyed commits — recover the lost commits by walking the local reflog and ORIGHEAD.
Skill Claude CodeCodex
Use WHEN a stash was dropped, cleared, or seems lost — recover stashed work by walking unreachable objects in the object database.
Skill Claude CodeCodex
Use WHEN a repo uses git submodules and you need to update, initialize, or reconcile them after a pull, a branch switch, or an upstream URL change.
Skill Claude CodeCodex
Use WHEN you need to cut a signed annotated release tag, push it to the remote, and trigger downstream release automation (changelog, GitHub release, container tag).
Skill Claude CodeCodex
Use WHEN you need to work on multiple branches simultaneously without stashing — git worktree lets you check out N branches into N separate directories backed by one .git.
Skill Claude CodeCodex
Use WHEN you need to inspect binary file bytes — magic numbers, BOM detection, suspicious null bytes, comparing two binaries at byte level.
Skill Claude CodeCodex
Use WHEN you need to extract a time-window of systemd logs for a specific service — for an incident postmortem, capacity audit, or shipping to a remote analyst.
Skill Claude CodeCodex
Use WHEN you need to slice, reshape, filter, or aggregate JSON on the command line with jq — and want the right idiom instead of guessing at jq's quirky syntax.
Skill Claude CodeCodex
Use WHEN you have minified or sloppily-formatted JSON and want to reformat it — sorted keys, compact mode, or with a jq-style selector applied — for human reading or diffing.
Skill Claude CodeCodex
Use WHEN a pod is stuck in CrashLoopBackOff, ImagePullBackOff, or OOMKilled and you need a systematic path through logs, events, exec, and ephemeral debug containers.
Skill Claude CodeCodex
Use WHEN you need to reach a service inside a kubernetes cluster from your laptop — port-forward to a Pod, Service, or Deployment, with auto-restart on disconnect.
Skill Claude CodeCodex
Use WHEN a kubernetes deploy went bad — roll back a Deployment, StatefulSet, or DaemonSet to a previous revision quickly while keeping audit trail.
Skill Claude CodeCodex
Run pylint with project-aware defaults and group findings by severity tier when the user wants to lint Python before commit or in CI.