Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions libs/hackbot-runtime/hackbot_runtime/actions/phabricator.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,22 @@ async def submit_patch(
],
test_plan: Annotated[
str | None,
Field(default=None, description="Revision test plan."),
Field(
default=None,
description=(
"Keep the revision test plan concise. Do not include detailed logs "
"or narrate the verification process."
),
),
] = None,
summary: Annotated[
str | None,
Field(
default=None,
description=(
"Revision summary/description. Keep test and verification details "
"in test_plan instead."
"Keep the revision summary concise and useful for permanent history. "
"Do not restate the bug, narrate the investigation or implementation "
"process, or include test and verification details."
),
),
] = None,
Expand Down