You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If something goes wrong mid-run, here is how to recover without starting over.
The agent stopped partway through Phase 1
Phase 1 runs 4 agents in parallel. If one errors:
The synthesis step will have partial data
Re-run the specific trigger phrase — the agent checks what already exists and skips steps that completed
Files that were already written (CHANGELOG, LICENSE etc.) are NOT overwritten on re-run
"I already have a README and the agent overwrote it"
This is expected — the agent generates a new README. To preserve yours:
Before running, rename it: git mv README.md README.old.md
Run the agent
Cherry-pick the sections you want from the generated README
Alternatively, run with improve in the trigger phrase instead of launch — the improve flow reads your existing README and patches it rather than replacing.
GitHub Pages is not showing up
Check that docs/index.html was created in the repo
Go to repo Settings → Pages → set Source to main branch, /docs folder
Wait 2-3 minutes for the first build
The .skill file was not attached to the release
The Package skill workflow creates the .skill file automatically on push. Check:
Actions tab → Package skill workflow → did it run and succeed?
If not: re-trigger it manually from the Actions tab
Topics were not set (only 0-3 topics showing)
The agent uses gh repo edit --add-topic. If you hit the 20-topic cap:
gh api repos/OWNER/REPO/topics --method PUT --field "names[]=topic1" ...
This replaces all topics at once instead of adding incrementally.
Post your specific error below and I will help diagnose it.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
If something goes wrong mid-run, here is how to recover without starting over.
The agent stopped partway through Phase 1
Phase 1 runs 4 agents in parallel. If one errors:
"I already have a README and the agent overwrote it"
This is expected — the agent generates a new README. To preserve yours:
git mv README.md README.old.mdAlternatively, run with
improvein the trigger phrase instead oflaunch— the improve flow reads your existing README and patches it rather than replacing.GitHub Pages is not showing up
docs/index.htmlwas created in the repomainbranch,/docsfolderThe
.skillfile was not attached to the releaseThe Package skill workflow creates the
.skillfile automatically on push. Check:Topics were not set (only 0-3 topics showing)
The agent uses
gh repo edit --add-topic. If you hit the 20-topic cap:gh api repos/OWNER/REPO/topics --method PUT --field "names[]=topic1" ...This replaces all topics at once instead of adding incrementally.
Post your specific error below and I will help diagnose it.
Beta Was this translation helpful? Give feedback.
All reactions