en un clic
atmux
atmux contient 16 skills collectées depuis geoyws, avec une couverture métier par dépôt et des pages de détail sur le site.
Skills dans ce dépôt
Unified whip skill. Verbs — run (autonomous-work nudge loop, default), cadence (tune re-arm interval), watchdog (liveness one-shot). Use /atmux:whip <verb> or `/loop /atmux:whip` for the main loop.
Business-as-usual status check + velocity-fix escalation. Reports commit cadence, rate-limits, kanban, churn per team across the cockpit (or single team from inside a cage). Auto-escalates Dormant teams to lead. `/atmux:bau [hours] [--no-fix]`. Default window 24h.
Bruh-mode unblocker — sweeps pending decisions, blockers, flags, and worktrees and pushes everything forward in one pass. Unblock all, approve all, flip all, merge all (all worktrees we worked on).
Lightweight notification skill — atmux supervisor pings teammates via `/atmux:heads-up <message>` to nudge them about new tasks, cascade unblocks, or inbox updates. Skill just acknowledges; teammate folds the nudge into next idle turn.
Unified session-continuity skill. Verbs — cont, preclear, handoff, stop. Replaces cont, preclear, handoff, full-stop. Use /atmux:session <verb> [args].
Fleet-wide diagnose + complain sweep — runs `atmux doctor` and `atmux status --json` across every enabled team, files complaints on anomalies, and takes structural fixes (rotate lead, clear member, push branch fix). Persisted host-pressure playbook (per ADR-198) is one trigger. Per ADR-077 substrate; manually invoked (the auto-spawned cockpit role was retired per ADR-212).
Send a driver→lead ask via `atmux tell-lead` — durable to .atmux/driver-inbox.md plus best-effort wake-up to the lead's pane. Explains the two listener-absent warnings as expected output, not a failure.
Sweep mergeable epic-team branches in the CURRENT cage's repo — merges what's ahead of trunk, deletes what's fully merged, leaves active worktrees alone. Scoped to the calling team only (NOT cross-cage). `/atmux:ghostbuster [--dry-run] [--no-merge] [--no-delete]`.
Unified team lifecycle skill. Verbs — start, stop, add, clear, cleanup, bootstrap, rotate-lead, rotate-member. Use /atmux:team <verb> [args].
Live rate-limit probe across all configured Claude accounts. Reports 5h + weekly utilization and reset times. Auto-refreshes expired OAuth tokens; caches to `~/.atmux/state/budget-probe-<account>.json`.
One-shot chained shortcut — fires `/loop 15mins /atmux:bruh you are sentinel, make all teams work, unblock everyone`. Use when the operator wants a hands-off 15-minute /atmux:bruh sweep cadence without typing the whole invocation each time.
Deterministically (re)build the atmux cockpit + every per-team cage via `atmux cockpit rebuild`. Idempotent — safe after reboot or accidental cage drop. Per ADR-063 / ADR-135 / ADR-162.
Recursively checkout a branch on the root repo + every nested git submodule, including detached HEAD or wrong-branch repos. Use when the user types `/rcheckout <branch>` or asks to "switch all submodules to <branch>" / "rcheckout <branch>". For monorepos with deeply nested submodules (e.g. myteam-alpha-root tree). Wraps `scripts/recursive-checkout.sh` from the atmux repo.
Recursively `git pull --ff-only origin <branch>` on root + every nested git submodule currently on `<branch>`. Use when the user types `/rpull <branch>` or asks to "pull all submodules from <branch>" / "rpull <branch>". Skips repos on a different branch with a hint. Wraps `scripts/recursive-pull.sh` from the atmux repo.
Recursively `git push origin <branch>` on root + every nested git submodule currently on `<branch>`. Use when the user types `/rpush <branch>` or asks to "push all submodules to <branch>" / "rpush <branch>". Pushes leaves-first so parent submodule pointers always reference commits already on origin. Skips repos on a different branch with a hint. Wraps `scripts/recursive-push.sh` from the atmux repo.
Recursively `git fetch origin <branch>` + `git reset --hard origin/<branch>` on root + every nested git submodule currently on `<branch>`. Use when the user types `/rreset <branch>` or asks to "reset all submodules to origin/<branch>" / "rreset <branch>". DESTRUCTIVE — discards uncommitted work + unpushed commits. Snaps the entire monorepo (root + nested submodules) to the remote tip of `<branch>`. Skips repos on a different branch with a hint to run `/rcheckout <branch>` first. Wraps `scripts/recursive-reset.sh` from the atmux repo.