Conversation
Add a non-negotiable trigger so sessions and spawned workers start from origin/main. Cloud agents and worktree workers inherit the checkout or base branch they spawn from, so a stale local base hands every worker a stale start and surfaces later as avoidable conflicts. Written with Devin.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
Bugbot Autofix is ON, but it could not run because the branch was deleted or merged before autofix could start.
Reviewed by Cursor Bugbot for commit 5a1e13d. Configure here.
|
|
||
| Remaining triggers: | ||
|
|
||
| - Starting development or spawning code-writing agents → `git fetch origin main` first, then branch or rebase onto it so work starts from latest main. A worker inherits the checkout or base branch it spawns from; a stale base hands every worker a stale start. |
There was a problem hiding this comment.
Trigger prose joins clauses with semicolon
Low Severity · Bugbot Rules
The new remaining-trigger sentence joins two independent clauses with a semicolon, which pstack skill prose forbids under unslop punctuation. Sibling triggers in this list already use a period for that split. This is the only semicolon in SKILL.md.
Triggered by learned rule: pstack skill prose follows unslop punctuation
Reviewed by Cursor Bugbot for commit 5a1e13d. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


What
Adds one non-negotiable trigger to pstack's poteto-mode skill:
Why
poteto-mode delegates code-writing to spawned workers (cloud agents, worktree-isolated agents). Those workers inherit whatever base the spawning checkout or configured base branch points at. When local
mainis stale, every spawned worker starts behind origin, and the drift surfaces later as avoidable merge conflicts and re-verification. Making the fetch a named trigger puts it ahead of every playbook instead of relying on each agent to remember.Placed as the first remaining trigger since it gates all development work, and worded harness-neutrally so ports to other harnesses carry it unchanged.
Test plan
Text-only change to a skill definition. Verified the bullet renders in the trigger list and survives the skill's port-time rewrites.
Written with Devin.
Note
Low Risk
Documentation-only change to agent skill triggers; no runtime, auth, or application code.
Overview
Adds a first non-negotiable in poteto-mode: before starting development or spawning code-writing agents, run
git fetch origin mainand branch or rebase onto current main so workers do not inherit a stale base.The bullet is harness-neutral (checkout/base branch wording) and documents why it matters (spawned workers copy the spawning context, so drift shows up later as merge pain and re-verification).
Reviewed by Cursor Bugbot for commit 5a1e13d. Bugbot is set up for automated code reviews on this repo. Configure here.