원클릭으로
dotfiles
dotfiles에는 timoclsn에서 수집한 skills 11개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.
이 저장소의 skills
Analyze active git merge/rebase/cherry-pick conflicts and walk the user through them with a recommended resolution for each. Read-only by default; pass `--fix` to also resolve the conflicts you're confident about. Use when the user invokes `/merge-conflict` while a conflict is in progress.
Keep the current branch's PR mergeable, unattended. Each round it shepherds CI to green, syncs with the base branch and resolves conflicts, and addresses review feedback (AI bots + human) — fixing, committing, pushing, and replying as it goes. Runs as a persistent watcher that does not self-terminate; it keeps babysitting until you stop it. Use when the user invokes `/babysit-pr` and wants the PR driven to and held in a mergeable state without supervision.
Create and set up a new git worktree as a sibling of the current repo, branched off the default branch (main/master) by default — or off a given branch, tag, or PR. Names it after the repo plus a semantic extension derived from whatever content you give it. Use when the user invokes `/worktree`, or asks to spin up / create a worktree to work on something in isolation, on a specific branch, or to check out a PR.
Monitor CI on the current branch's PR until it goes green, automatically fixing and pushing failures along the way. On each failure round it runs `/ci-failure --fix`, commits, and pushes, then keeps watching. Use when the user invokes `/babysit-ci` and wants CI shepherded to green unattended.
Stop a running babysit loop (babysit-ci, babysit-pr, or any /loop-driven watcher) in the current session. Ends the loop now — stops background monitors and does not schedule a new wake-up — and records the stop clearly in the conversation so an already-scheduled wake-up that fires later re-reads the history, sees it was stopped, and self-terminates instead of acting. Use when the user invokes `/babysit-stop` or asks to stop, halt, cancel, or end babysitting, the CI/PR babysit loop, or a self-paced loop that won't stop.
End-to-end task execution: implement, verify, review, then open a draft PR. Use when the user invokes `/go` with a task description and wants the full pipeline run without further prompts.
Triage review feedback — either pulled from the current branch's PR or passed directly as text — by verifying each point against the codebase and walking the user through them. Read-only by default; pass `--fix` to also apply the points you're confident about. Use when the user invokes `/pr-feedback` (optionally with feedback text) before deciding what to act on.
Investigate failing CI checks on the current branch's PR, analyze the logs, and walk the user through each failure with a root cause and suggested fix. Read-only by default; pass `--fix` to also apply the fixes you're confident about. Use when the user invokes `/ci-failure` to triage red CI before deciding what to act on.
Review changed code for reuse, quality, and efficiency, then fix any issues found. Use when the user invokes `/simplify` to clean up recent changes.
Control the user own Chrome browser via Playwriter extension with Playwright code snippets in a stateful local js sandbox via playwriter cli. Automate web interactions, take screenshots, inspect accessibility trees, debug & profile web applications. Use this over other Playwright MCPs to automate the browser — it connects to the user's existing Chrome instead of launching a new one. Run `playwriter skill` command to read the complete up to date skill
Provides React Native performance optimization guidelines for FPS, TTI, bundle size, memory leaks, re-renders, and animations. Applies to tasks involving Hermes optimization, JS thread blocking, bridge overhead, FlashList, native modules, or debugging jank and frame drops.