Our review
Rebases the watched branch onto the terminal station branch, stashing and restoring work in progress to avoid data loss.
Strengths
- Preserves uncommitted changes via stashing
- Avoids retriggering the line pipeline with [skip line]
- Ensures no work is lost during rebase
Limitations
- Requires the line.yaml configuration to be present
- Will abort if conflicts arise (no auto-resolve)
- Only works with the specific 'line' workflow conventions
Use when the line statusline indicates pending changes on the terminal station branch that need to be integrated into your working branch.
Do not use if you want to cherry-pick only specific commits instead of rebasing the entire terminal station branch.
Security analysis
SafeThe skill uses git stash, rebase, and unstash operations locally without network access, no destructive commands like force push or reset, and includes safeguards for conflicts.
No concerns found
Examples
The line statusline shows the terminal station has commits I haven't picked up. Please rebase my watched branch onto the terminal station.Check line.yaml, stash any pending changes, and rebase my current branch onto the latest terminal station, then restore my work.I have uncommitted work on my branch. Safely bring in the terminal station changes using rebase with stash./line-rebase
Safely pick up changes from the terminal station branch onto the watched branch.
When to use
Use this skill when the line statusline indicates there are commits ready on the terminal station branch that haven't been picked up on the main working branch.
Procedure
-
Identify branches: Read
line.yamlto determine the watched branch and the terminal (last) station. -
Check for changes: Verify the terminal station branch (
line/stn/<terminal>) has commits ahead of the watched branch. -
Stash current work: If there are any uncommitted changes on the watched branch, stash them:
git stash push -m "line-rebase: stashing WIP" -
Rebase from terminal station: Rebase the watched branch to include the terminal station's changes. All station commits contain
[skip line]markers, so they will NOT retrigger the assembly line (SKL-2):git rebase line/stn/<terminal> -
Restore work in progress: If changes were stashed in step 3, restore them:
git stash pop -
Verify: Confirm the watched branch now includes the station improvements and any WIP is restored.
Safety guarantees
- No work is ever lost: WIP is always stashed before any branch operations
- No retriggering: Station commits contain
[skip line]which preventsline runfrom retriggering (RUN-9, SKL-2) - Fast and automatic: The entire operation is a stash, rebase, unstash sequence
Important
- NEVER force-push or reset any branches
- ALWAYS stash before rebase, even if the working tree appears clean
- If the rebase has conflicts, abort and inform the user rather than auto-resolving
- Verify the stash was applied successfully after the rebase
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.