wtm

Implements tasks directly on the master or main branch without creating worktrees.

1|Updated Dec 18, 2009
One-click install
npx skills add https://github.com/thurn/dotfiles --skill wtm-thurn
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: wtm
Source: https://github.com/thurn/dotfiles/tree/main/.llms/skills/wtm
Command: npx skills add https://github.com/thurn/dotfiles --skill wtm-thurn

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When a change is small or urgent, creating a separate git worktree and branch adds unnecessary overhead. This Skill lets you execute a task directly on the master or main branch while still following the full verification, CI-repair, and safety discipline of the standard worktree workflow. ## Core Features & Use Cases - Direct master/main execution: Implements the requested task on the repository's primary branch without creating a worktree or new branch. - Inherited task contract: Reuses the repository isolation, verification, candidate, promotion-mandate, CI-repair, remote-push, demo, runtime, and safety rules from the companion wt skill. - Use Case: You need a quick documentation fix or a small hotfix applied straight to main. Invoke this Skill so the change is implemented, verified, and pushed on the primary branch without branch-management overhead. ## Quick Start Ask the agent to implement your task on the master branch using the wtm skill, for example: fix the typo in the README directly on main.

Frequently Asked Questions about wtm

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement a task directly on the master branch?▼

Invoke the wtm skill with your task description. It applies the change on the master or main branch without creating a worktree or new branch, while still following the verification and safety rules inherited from the wt skill.

What is the difference between the wt and wtm skills?▼

The wt skill isolates work in a separate git worktree and branch, while wtm performs the same task contract directly on the master or main branch. wtm inherits all wt rules except the worktree creation step.

When should I avoid working directly on the main branch?▼

Avoid direct main-branch work for large, risky, or long-running changes that benefit from isolated review. In those cases use the wt skill, which creates a dedicated worktree and branch for safer iteration.

Does wtm still run verification and CI checks?▼

Yes. wtm inherits the full wt contract, including verification, candidate promotion, CI-repair, remote-push, and safety rules. Only the worktree and branch creation assumptions are replaced.