agents: add conversation-done skill - #4150
Merged
rickeylev merged 2 commits intoSep 4, 2026
Merged
Conversation
Provide an agent skill and async script to clean up external workspace resources (Bazel output bases, Git worktrees, and local/remote branches) when an agent conversation concludes. Add the `conversation-done` skill with an async Python engine that shuts down Bazel servers, removes output bases, prunes Git worktrees, and removes feature branches while protecting canonical repos and releases.
Adhere to the project Python typing convention requiring modern union syntax over typing.Optional. Add from __future__ import annotations to cleanup.py and replace all typing.Optional usages with X | None.
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.
Agent workflows create substantial disk and process overhead outside
the conversation directory, including Bazel server processes, output
bases, git worktrees, and feature branches. Without automated cleanup,
these resources accumulate across tasks.
Add the
conversation-doneskill and an async cleanup engine to safelyreclaim these resources when a conversation finishes. The tool shuts
down active Bazel servers, deletes matching output bases, and prunes
git worktrees and branches while enforcing safeguards for main repos,
canonical branches, and upstream remotes.