Large tasks rarely produce one logical change. They usually produce several changes that belong in separate commits, but without a dedicated workflow everything accumulates in the same working tree. Unrelated changes get mixed together, logical slices become harder to preserve, staging becomes risky, and reviews become larger than necessary.
A better workflow would preserve each logical slice as soon as it is complete. That slice should include the affected files, a proposed commit message, the relevant test commands, and the exact patch. Once preserved, the working tree should be restored so the agent can continue with the next slice independently.
But preserving slices is only half the problem. The agent should be able to organize the work without controlling Git history. The developer should still review every staged diff and create every commit manually.
That is what Agent-Up commits provides. Agent-Up commits is a local commit proposal queue for agent-assisted development. Agents enqueue proposals instead of creating commits, and each proposal stores its patch and message before restoring the working tree.
Later, the developer runs agent-up commits next
. Agent-Up applies and stages exactly one proposal. With the JetBrains plugin, a single button takes the first proposal in the queue and opens it directly in the IDE's commit window. The developer reviews it in the IDE, runs the relevant tests, and commits it manually. Then the next proposal can be reviewed.
Agent-Up does not replace Git. It adds a safety layer between agent-generated changes and human-controlled commits, so agents can preserve logical slices while they work, developers can review one staged proposal at a time, and Git history remains under human control.
https://plugins.jetbrains.com/plugin/33179-agent-up-commit-queue