Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions loopx/cli_commands/project_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,14 @@ def register_project_lifecycle_commands(
"value on retries."
),
)
refresh_state_parser.add_argument(
"--completion-todo-id",
help=argparse.SUPPRESS,
)
refresh_state_parser.add_argument(
"--completion-turn-key",
help=argparse.SUPPRESS,
)
refresh_state_parser.add_argument(
"--autonomous-replan-recorded",
action="store_true",
Expand Down Expand Up @@ -651,6 +659,8 @@ def handle_project_lifecycle_command(
replan_obligation_id=getattr(
args, "replan_obligation_id", None
),
completion_todo_id=getattr(args, "completion_todo_id", None),
completion_turn_key=getattr(args, "completion_turn_key", None),
agent_id=args.agent_id,
agent_lane=args.agent_lane,
progress_scope=args.progress_scope,
Expand Down
Loading