skills/git-rebase-convention/SKILL.md
Resolving rebase conflicts with design intent preservation. Use when rebasing, resolving merge conflicts or choosing a conflict resolution strategy.
npx skillsauth add jitsusama/agentic-harness.pi git-rebase-conventionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Think of rebasing as archaeology meets architecture: you need to understand why each change was made, then design a result that incorporates both visions.
For every conflict, ask:
Same problem, different solutions: both sides fixed the same thing differently. Combine the best aspects of each.
Parallel features: both sides added different capabilities to the same area. Find a way to accommodate both.
Architectural divergence: one side refactored while the other added features. Adapt the features to fit the new structure.
Performance vs capability: one side optimized, the other extended. Preserve the features within the performance improvements.
After each conflict resolution:
Run the full suite after the rebase completes. Never push until everything passes.
Git commands that open an editor or prompt for input will block the terminal indefinitely. Guard against this on every rebase invocation:
git rebase -i or --interactive. If commits
need reordering, squashing or editing, do it with
separate non-interactive commands (git reset,
git commit --amend, etc.).GIT_TERMINAL_PROMPT=0 so git fails instead
of blocking on credential or confirmation prompts:
GIT_TERMINAL_PROMPT=0 git rebase main
--force-with-lease, never --force.development
Structure of a quest README and the documents that live under it: frontmatter shape, the four core and four optional body sections, emoji glyphs, ID format, alias notation, Cast bullets and Journey entries. Use when writing or editing a quest README, a plan, research, brief or report document under a quest. Pairs with quest-convention for choices like kind, promotion and reordering. Follow the prose-standard for voice.
tools
Operational conventions for the quest system: when to use a quest versus a subquest versus a sidequest, when to scaffold a plan or research document, how to reorder priorities, when to add optional sections, when to conclude versus retire, the resuscitate pattern. Use when driving the quest tool, deciding kind, promoting or parking work, or organising a project as quests. Pairs with quest-format for the on-disk shape.
development
Markdown structure rules: Title Case headings with their exceptions, the line-width target and its legitimate exceptions, reference-style links, fenced code blocks with language tags, tables and lists. Use when writing or editing any markdown file (README, AGENTS, docs, plans, skill files), or when adding a heading, link, table or code block. Owns markdown structure; pairs with prose-standard, which owns voice, grammar, spelling and punctuation.
tools
How to measure whether convention corrections keep recurring in the pi session logs, by category and by week. Use to record a baseline before the convention gates take effect and to re-run afterwards to confirm the recurring categories bend down. Pairs with the convention gates (pr-guardian, issue-guardian, commit-guardian, slack-integration) and the convention-context extension.