con un clic
operations-worktree
// Safe git worktree creation and hygiene workflow that defaults new branches to an up-to-date remote default branch instead of local HEAD.
// Safe git worktree creation and hygiene workflow that defaults new branches to an up-to-date remote default branch instead of local HEAD.
Manage one tmux agent lane from its matching ops pane, inspect live pane state and Codex logs on cold start, and produce concise manager summaries for OpenClaw and adjacent project work.
Recover Codex and Claude sessions from tmux cockpit panes, CX SAVE snapshots, codex-cockpit history, and recent Codex logs without overwriting the useful restore source first.
Maintain and release the crawlkit Go library, preserving downstream compatibility for gitcrawl, slacrawl, discrawl, and notcrawl.
Template skill for repository authors; excluded from public publishing.
Use when inspecting a ghcrawl SQLite store, pulling GitHub issue/PR data, refreshing summaries, embeddings, and clusters, or extracting one cluster and its evidence through the ghcrawl CLI.
Maintain, verify, and release graincrawl, the local-first Granola archive CLI, including SQLite archive behavior, read-only Granola source boundaries, Homebrew tap packaging, and crawlkit-powered TUI/snapshot surfaces.
| name | operations-worktree |
| description | Safe git worktree creation and hygiene workflow that defaults new branches to an up-to-date remote default branch instead of local HEAD. |
| license | MIT |
| metadata | {"source":"https://github.com/vincentkoc/dotskills"} |
Create and manage worktrees safely and consistently across projects while avoiding stale branch bases.
main or local HEAD.gwt new <branch>gwt new <branch> <start-point>default=$(git symbolic-ref --quiet --short refs/remotes/origin/HEAD 2>/dev/null || echo origin/main)base=${default#origin/}git fetch origin "$base" --prunegit worktree add -b <branch> <path> "origin/$base"