belarusrulez

59 mods across 1 repository, 2 stars between them.

dotenv:merge

25

belarusrulez/skill-core

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.

2 3mo ago A 42 tokens

eslint:autofix

26

belarusrulez/skill-core

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.

2 3mo ago A 39 tokens

excel:to-csv

27

belarusrulez/skill-core

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.

2 3mo ago A 44 tokens

flake:rerun

28

belarusrulez/skill-core

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.

2 3mo ago A 40 tokens

format:prettier

29

belarusrulez/skill-core

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.

2 3mo ago A 34 tokens

gcp:cloud-run

30

belarusrulez/skill-core

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.

2 3mo ago A 31 tokens

gcp:secret-manager

31

belarusrulez/skill-core

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.

2 3mo ago A 34 tokens

git:bisect

32

belarusrulez/skill-core

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.

2 3mo ago A 28 tokens

git:blame-walk

33

belarusrulez/skill-core

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.

2 3mo ago A 43 tokens

git:cherry-pick

34

belarusrulez/skill-core

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.

2 3mo ago A 31 tokens

git:rebase

35

belarusrulez/skill-core

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.

2 3mo ago A 34 tokens

git:reflog-recover

36

belarusrulez/skill-core

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.

2 3mo ago A 42 tokens

git:stash-revive

37

belarusrulez/skill-core

Skill Claude CodeCodex

Use WHEN a stash was dropped, cleared, or seems lost — recover stashed work by walking unreachable objects in the object database.

2 3mo ago A 32 tokens

git:submodule-sync

38

belarusrulez/skill-core

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.

2 3mo ago A 39 tokens

git:tag-release

39

belarusrulez/skill-core

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).

2 3mo ago A 39 tokens

git:worktree-switch

40

belarusrulez/skill-core

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.

2 3mo ago A 39 tokens

hexdump:window

41

belarusrulez/skill-core

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.

2 3mo ago A 33 tokens

journalctl:window

42

belarusrulez/skill-core

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.

2 3mo ago A 40 tokens

jq:cookbook

43

belarusrulez/skill-core

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.

2 3mo ago A 41 tokens

json:pretty

44

belarusrulez/skill-core

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.

2 3mo ago A 45 tokens

k8s:debug-pod

45

belarusrulez/skill-core

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.

2 3mo ago A 47 tokens

k8s:port-forward

46

belarusrulez/skill-core

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.

2 3mo ago A 43 tokens

k8s:rollout-undo

47

belarusrulez/skill-core

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.

2 3mo ago A 41 tokens

lint:pylint

48

belarusrulez/skill-core

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.

2 3mo ago A 30 tokens